Skip to content

Commit e6dd7fe

Browse files
authored
Update Code to 1.89.0 (#6783)
1 parent fb2afbd commit e6dd7fe

7 files changed

+13
-13
lines changed

lib/vscode

Submodule vscode updated 1076 files

patches/base-path.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Index: code-server/lib/vscode/src/vs/base/common/network.ts
1010
===================================================================
1111
--- code-server.orig/lib/vscode/src/vs/base/common/network.ts
1212
+++ code-server/lib/vscode/src/vs/base/common/network.ts
13-
@@ -198,7 +198,9 @@ class RemoteAuthoritiesImpl {
13+
@@ -205,7 +205,9 @@ class RemoteAuthoritiesImpl {
1414
return URI.from({
1515
scheme: platform.isWeb ? this._preferredWebSchema : Schemas.vscodeRemoteResource,
1616
authority: `${host}:${port}`,

patches/disable-builtin-ext-update.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/extensions/browser/extens
77
===================================================================
88
--- code-server.orig/lib/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.ts
99
+++ code-server/lib/vscode/src/vs/workbench/contrib/extensions/browser/extensionsWorkbenchService.ts
10-
@@ -283,6 +283,10 @@ export class Extension implements IExten
10+
@@ -284,6 +284,10 @@ export class Extension implements IExten
1111
if (this.type === ExtensionType.System && this.productService.quality === 'stable') {
1212
return false;
1313
}

patches/external-file-actions.diff

+4-4
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ Index: code-server/lib/vscode/src/vs/workbench/browser/web.api.ts
2727
===================================================================
2828
--- code-server.orig/lib/vscode/src/vs/workbench/browser/web.api.ts
2929
+++ code-server/lib/vscode/src/vs/workbench/browser/web.api.ts
30-
@@ -289,6 +289,16 @@ export interface IWorkbenchConstructionO
30+
@@ -303,6 +303,16 @@ export interface IWorkbenchConstructionO
3131
*/
3232
readonly userDataPath?: string
3333

@@ -173,7 +173,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/files/browser/fileActions
173173
import { IsWebContext } from 'vs/platform/contextkey/common/contextkeys';
174174
import { ServicesAccessor } from 'vs/platform/instantiation/common/instantiation';
175175
import { ThemeIcon } from 'vs/base/common/themables';
176-
@@ -550,13 +550,16 @@ MenuRegistry.appendMenuItem(MenuId.Explo
176+
@@ -553,13 +553,16 @@ MenuRegistry.appendMenuItem(MenuId.Explo
177177
id: DOWNLOAD_COMMAND_ID,
178178
title: DOWNLOAD_LABEL
179179
},
@@ -197,7 +197,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/files/browser/fileActions
197197
)
198198
}));
199199

200-
@@ -568,6 +571,7 @@ MenuRegistry.appendMenuItem(MenuId.Explo
200+
@@ -571,6 +574,7 @@ MenuRegistry.appendMenuItem(MenuId.Explo
201201
title: UPLOAD_LABEL,
202202
},
203203
when: ContextKeyExpr.and(
@@ -287,7 +287,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/files/browser/views/explo
287287
import { mainWindow } from 'vs/base/browser/window';
288288
import { IExplorerFileContribution, explorerFileContribRegistry } from 'vs/workbench/contrib/files/browser/explorerFileContrib';
289289
+import { IBrowserWorkbenchEnvironmentService } from 'vs/workbench/services/environment/browser/environmentService';
290-
import { IHoverWidget } from 'vs/base/browser/ui/hover/updatableHoverWidget';
290+
import type { IHoverWidget } from 'vs/base/browser/ui/hover/hover';
291291

292292
export class ExplorerDelegate implements IListVirtualDelegate<ExplorerItem> {
293293
@@ -1080,7 +1081,8 @@ export class FileDragAndDrop implements

patches/getting-started.diff

+4-4
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/welcomeGettingStarted/bro
1919
import { renderFormattedText } from 'vs/base/browser/formattedTextRenderer';
2020
import { StandardKeyboardEvent } from 'vs/base/browser/keyboardEvent';
2121
import { Button } from 'vs/base/browser/ui/button/button';
22-
@@ -55,7 +55,7 @@ import { IRecentFolder, IRecentWorkspace
22+
@@ -54,7 +54,7 @@ import { IRecentFolder, IRecentWorkspace
2323
import { OpenRecentAction } from 'vs/workbench/browser/actions/windowActions';
2424
import { OpenFileFolderAction, OpenFolderAction, OpenFolderViaWorkspaceAction } from 'vs/workbench/browser/actions/workspaceActions';
2525
import { EditorPane } from 'vs/workbench/browser/parts/editor/editorPane';
@@ -28,7 +28,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/welcomeGettingStarted/bro
2828
import { IEditorOpenContext, IEditorSerializer } from 'vs/workbench/common/editor';
2929
import { IWebviewElement, IWebviewService } from 'vs/workbench/contrib/webview/browser/webview';
3030
import 'vs/workbench/contrib/welcomeGettingStarted/browser/gettingStartedColors';
31-
@@ -813,6 +813,72 @@ export class GettingStartedPage extends
31+
@@ -816,6 +816,72 @@ export class GettingStartedPage extends
3232
$('p.subtitle.description', {}, localize({ key: 'gettingStarted.editingEvolved', comment: ['Shown as subtitle on the Welcome page.'] }, "Editing evolved"))
3333
);
3434

@@ -101,7 +101,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/welcomeGettingStarted/bro
101101
const leftColumn = $('.categories-column.categories-column-left', {},);
102102
const rightColumn = $('.categories-column.categories-column-right', {},);
103103

104-
@@ -884,6 +950,9 @@ export class GettingStartedPage extends
104+
@@ -887,6 +953,9 @@ export class GettingStartedPage extends
105105
recentList.setLimit(5);
106106
reset(leftColumn, startList.getDomElement(), recentList.getDomElement());
107107
}
@@ -135,7 +135,7 @@ Index: code-server/lib/vscode/src/vs/workbench/browser/web.api.ts
135135
===================================================================
136136
--- code-server.orig/lib/vscode/src/vs/workbench/browser/web.api.ts
137137
+++ code-server/lib/vscode/src/vs/workbench/browser/web.api.ts
138-
@@ -299,6 +299,11 @@ export interface IWorkbenchConstructionO
138+
@@ -313,6 +313,11 @@ export interface IWorkbenchConstructionO
139139
*/
140140
readonly isEnabledFileUploads?: boolean
141141

patches/integration.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ Index: code-server/lib/vscode/src/vs/workbench/browser/web.main.ts
184184
import { ITelemetryService } from 'vs/platform/telemetry/common/telemetry';
185185
import { IProgressService } from 'vs/platform/progress/common/progress';
186186
import { DelayedLogChannel } from 'vs/workbench/services/output/common/delayedLogChannel';
187-
@@ -130,6 +131,9 @@ export class BrowserMain extends Disposa
187+
@@ -131,6 +132,9 @@ export class BrowserMain extends Disposa
188188
// Startup
189189
const instantiationService = workbench.startup();
190190

patches/local-storage.diff

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Index: code-server/lib/vscode/src/vs/workbench/browser/web.api.ts
3030
===================================================================
3131
--- code-server.orig/lib/vscode/src/vs/workbench/browser/web.api.ts
3232
+++ code-server/lib/vscode/src/vs/workbench/browser/web.api.ts
33-
@@ -284,6 +284,11 @@ export interface IWorkbenchConstructionO
33+
@@ -298,6 +298,11 @@ export interface IWorkbenchConstructionO
3434
*/
3535
readonly configurationDefaults?: Record<string, any>;
3636

0 commit comments

Comments
 (0)