You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- English: Heavily simplified tool-call display — icons, chevrons, and column layout removed in favour of a single-line grey text row with faded file paths and click-to-expand detail. Removed elapsed-time labels from all intermediate "Thinking" chips. Completely redesigned the bottom progress indicator: keeps the blue sonar dot, removes background / border / shimmer, adds a 20-word English verb carousel (randomised every 3 s with a fade-in animation) and a live elapsed timer. Fixed the spinner being obscured by the input box during long streaming responses via `requestAnimationFrame`-deferred scrolling and a per-second scroll safety net.
Copy file name to clipboardExpand all lines: package.json
+19-2Lines changed: 19 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,7 +2,7 @@
2
2
"name": "deep-copilot",
3
3
"displayName": "Deep Copilot",
4
4
"description": "Deep Copilot — AI coding agent embedded in VS Code. Powered by DeepSeek V4, with file editing, terminal, search, and plan/todos. Standalone, no backend required.",
5
-
"version": "0.32.9",
5
+
"version": "0.33.0",
6
6
"publisher": "ZhouChaunge",
7
7
"icon": "imgs/logo.png",
8
8
"repository": {
@@ -122,6 +122,11 @@
122
122
"command": "deepseekAgent.openDebugLog",
123
123
"title": "Deep Copilot: Open Debug Log",
124
124
"icon": "$(output)"
125
+
},
126
+
{
127
+
"command": "deepseekAgent.attachSelection",
128
+
"title": "附加到 Deep Copilot",
129
+
"icon": "$(link)"
125
130
}
126
131
],
127
132
"configuration": {
@@ -272,6 +277,16 @@
272
277
},
273
278
{
274
279
"command": "deepseekAgent.moveToRight"
280
+
},
281
+
{
282
+
"command": "deepseekAgent.attachSelection"
283
+
}
284
+
],
285
+
"editor/context": [
286
+
{
287
+
"command": "deepseekAgent.attachSelection",
288
+
"group": "deepcopilot@1",
289
+
"when": "editorTextFocus"
275
290
}
276
291
]
277
292
}
@@ -281,7 +296,8 @@
281
296
"watch": "node esbuild.config.js --watch",
282
297
"package": "npm run build && vsce package --out release/",
0 commit comments