Skip to content

Commit 57005b3

Browse files
authored
Merge pull request #587 from CodinGame/vscode-1.97.2
Update to vscode 1.97.2
2 parents 0e31e69 + 3654425 commit 57005b3

File tree

4 files changed

+61
-74
lines changed

4 files changed

+61
-74
lines changed

package-lock.json

Lines changed: 44 additions & 44 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,9 +30,9 @@
3030
},
3131
"config": {
3232
"vscode": {
33-
"version": "1.97.1",
34-
"ref": "1.97.1",
35-
"commit": "e249dada235c2083c83813bd65b7f4707fb97b76"
33+
"version": "1.97.2",
34+
"ref": "1.97.2",
35+
"commit": "e54c774e0add60467559eb0d1e229c6452cf8447"
3636
},
3737
"monaco": {
3838
"ref": "v0.52.2",
@@ -101,16 +101,16 @@
101101
"@vscode/vscode-languagedetection": "npm:@codingame/vscode-languagedetection@1.0.23",
102102
"@vscode/windows-process-tree": "^0.6.0",
103103
"@vscode/windows-registry": "^1.1.0",
104-
"@xterm/addon-clipboard": "^0.2.0-beta.79",
105-
"@xterm/addon-image": "^0.9.0-beta.96",
106-
"@xterm/addon-ligatures": "^0.10.0-beta.96",
107-
"@xterm/addon-progress": "^0.2.0-beta.2",
108-
"@xterm/addon-search": "^0.16.0-beta.96",
109-
"@xterm/addon-serialize": "^0.14.0-beta.96",
110-
"@xterm/addon-unicode11": "^0.9.0-beta.96",
111-
"@xterm/addon-webgl": "^0.19.0-beta.96",
112-
"@xterm/headless": "^5.6.0-beta.96",
113-
"@xterm/xterm": "^5.6.0-beta.96",
104+
"@xterm/addon-clipboard": "^0.2.0-beta.80",
105+
"@xterm/addon-image": "^0.9.0-beta.97",
106+
"@xterm/addon-ligatures": "^0.10.0-beta.97",
107+
"@xterm/addon-progress": "^0.2.0-beta.3",
108+
"@xterm/addon-search": "^0.16.0-beta.97",
109+
"@xterm/addon-serialize": "^0.14.0-beta.97",
110+
"@xterm/addon-unicode11": "^0.9.0-beta.97",
111+
"@xterm/addon-webgl": "^0.19.0-beta.97",
112+
"@xterm/headless": "^5.6.0-beta.97",
113+
"@xterm/xterm": "^5.6.0-beta.97",
114114
"cookie": "^0.7.2",
115115
"css-url-parser": "^1.1.4",
116116
"jschardet": "3.1.4",
@@ -132,7 +132,7 @@
132132
"typescript": "$typescript",
133133
"rollup": "$rollup",
134134
"recast": "$recast",
135-
"@xterm/xterm": "^5.6.0-beta.96",
135+
"@xterm/xterm": "^5.6.0-beta.97",
136136
"cross-spawn": "7.0.6"
137137
},
138138
"volta": {

vscode-patches/0035-fix-allow-adding-a-local-folder-even-when-there-is-a.patch

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Subject: [PATCH] fix: allow adding a local folder even when there is a remote
99
1 file changed, 1 insertion(+), 6 deletions(-)
1010

1111
diff --git a/src/vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService.ts b/src/vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService.ts
12-
index 25fd78863cb..adc23e4e539 100644
12+
index be885f55a7d..6f5495a8a09 100644
1313
--- a/src/vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService.ts
1414
+++ b/src/vs/workbench/services/workspaces/browser/abstractWorkspaceEditingService.ts
1515
@@ -14,7 +14,7 @@ import { ConfigurationScope, IConfigurationRegistry, Extensions as Configuration
@@ -21,7 +21,7 @@ index 25fd78863cb..adc23e4e539 100644
2121
import { INotificationService, Severity } from '../../../../platform/notification/common/notification.js';
2222
import { IFileService } from '../../../../platform/files/common/files.js';
2323
import { IWorkbenchEnvironmentService } from '../../environment/common/environmentService.js';
24-
@@ -172,11 +172,6 @@ export abstract class AbstractWorkspaceEditingService extends Disposable impleme
24+
@@ -171,11 +171,6 @@ export abstract class AbstractWorkspaceEditingService extends Disposable impleme
2525

2626
private async doAddFolders(foldersToAdd: IWorkspaceFolderCreationData[], index?: number, donotNotifyError: boolean = false): Promise<void> {
2727
const state = this.contextService.getWorkbenchState();

vscode-patches/0055-fix-extract-constants-into-separate-module.patch

Lines changed: 1 addition & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -6,14 +6,13 @@ Subject: [PATCH] fix: extract constants into separate module
66
so that only the constant is pulled from the root instead of the whole module graph
77
---
88
src/vs/workbench/api/browser/mainThreadChatAgents2.ts | 5 +++--
9-
.../contrib/chat/browser/actions/chatActions.ts | 1 -
109
.../contrib/chat/browser/actions/chatConstants.ts | 10 ++++++++++
1110
.../chat/browser/actions/chatQuickInputActions.ts | 3 ++-
1211
.../chat/browser/contrib/chatDynamicVariables.ts | 3 ++-
1312
.../browser/contrib/chatDynamicVariablesConstant.ts | 6 ++++++
1413
.../contrib/quickaccess/browser/commandsQuickAccess.ts | 3 +--
1514
.../contrib/search/browser/anythingQuickAccess.ts | 2 +-
16-
8 files changed, 25 insertions(+), 8 deletions(-)
15+
7 files changed, 25 insertions(+), 7 deletions(-)
1716
create mode 100644 src/vs/workbench/contrib/chat/browser/actions/chatConstants.ts
1817
create mode 100644 src/vs/workbench/contrib/chat/browser/contrib/chatDynamicVariablesConstant.ts
1918

@@ -47,18 +46,6 @@ index eb2d7e2a9fd..5f46176cb1f 100644
4746
} satisfies CompletionItem;
4847
});
4948

50-
diff --git a/src/vs/workbench/contrib/chat/browser/actions/chatActions.ts b/src/vs/workbench/contrib/chat/browser/actions/chatActions.ts
51-
index d7532a3514b..0566f286ee7 100644
52-
--- a/src/vs/workbench/contrib/chat/browser/actions/chatActions.ts
53-
+++ b/src/vs/workbench/contrib/chat/browser/actions/chatActions.ts
54-
@@ -49,7 +49,6 @@ import { ChatEditorInput } from '../chatEditorInput.js';
55-
import { ChatViewPane } from '../chatViewPane.js';
56-
import { convertBufferToScreenshotVariable } from '../contrib/screenshot.js';
57-
import { clearChatEditor } from './chatClear.js';
58-
-
59-
export const CHAT_CATEGORY = localize2('chat.category', 'Chat');
60-
export const CHAT_OPEN_ACTION_ID = 'workbench.action.chat.open';
61-
6249
diff --git a/src/vs/workbench/contrib/chat/browser/actions/chatConstants.ts b/src/vs/workbench/contrib/chat/browser/actions/chatConstants.ts
6350
new file mode 100644
6451
index 00000000000..6ce67486a58

0 commit comments

Comments
 (0)