@@ -28,7 +28,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/welcomeGettingStarted/bro
28
28
import { IEditorOpenContext, IEditorSerializer } from '../../../common/editor.js';
29
29
import { IWebviewElement, IWebviewService } from '../../webview/browser/webview.js';
30
30
import './gettingStartedColors.js';
31
- @@ -872 ,6 +872 ,72 @@ export class GettingStartedPage extends
31
+ @@ -874 ,6 +874 ,72 @@ export class GettingStartedPage extends
32
32
$('p.subtitle.description', {}, localize({ key: 'gettingStarted.editingEvolved', comment: ['Shown as subtitle on the Welcome page.'] }, "Editing evolved"))
33
33
);
34
34
@@ -101,7 +101,7 @@ Index: code-server/lib/vscode/src/vs/workbench/contrib/welcomeGettingStarted/bro
101
101
const leftColumn = $('.categories-column.categories-column-left', {},);
102
102
const rightColumn = $('.categories-column.categories-column-right', {},);
103
103
104
- @@ -907 ,6 +973 ,9 @@ export class GettingStartedPage extends
104
+ @@ -909 ,6 +975 ,9 @@ export class GettingStartedPage extends
105
105
recentList.setLimit(5);
106
106
reset(leftColumn, startList.getDomElement(), recentList.getDomElement());
107
107
}
@@ -189,7 +189,7 @@ Index: code-server/lib/vscode/src/vs/server/node/serverEnvironmentService.ts
189
189
190
190
/* ----- server setup ----- */
191
191
192
- @@ -104 ,6 +105 ,7 @@ export interface ServerParsedArgs {
192
+ @@ -105 ,6 +106 ,7 @@ export interface ServerParsedArgs {
193
193
'auth'?: string;
194
194
'disable-file-downloads'?: boolean;
195
195
'disable-file-uploads'?: boolean;
@@ -201,7 +201,7 @@ Index: code-server/lib/vscode/src/vs/server/node/webClientServer.ts
201
201
===================================================================
202
202
--- code-server.orig/lib/vscode/src/vs/server/node/webClientServer.ts
203
203
+++ code-server/lib/vscode/src/vs/server/node/webClientServer.ts
204
- @@ -368 ,6 +368 ,7 @@ export class WebClientServer {
204
+ @@ -374 ,6 +374 ,7 @@ export class WebClientServer {
205
205
userDataPath: this._environmentService.userDataPath,
206
206
isEnabledFileDownloads: !this._environmentService.args['disable-file-downloads'],
207
207
isEnabledFileUploads: !this._environmentService.args['disable-file-uploads'],
@@ -214,7 +214,7 @@ Index: code-server/lib/vscode/src/vs/workbench/browser/contextkeys.ts
214
214
--- code-server.orig/lib/vscode/src/vs/workbench/browser/contextkeys.ts
215
215
+++ code-server/lib/vscode/src/vs/workbench/browser/contextkeys.ts
216
216
@@ -7,7 +7,7 @@ import { Event } from '../../base/common
217
- import { Disposable } from '../../base/common/lifecycle.js';
217
+ import { Disposable, DisposableStore } from '../../base/common/lifecycle.js';
218
218
import { IContextKeyService, IContextKey, setConstant as setConstantContextKey } from '../../platform/contextkey/common/contextkey.js';
219
219
import { InputFocusedContext, IsMacContext, IsLinuxContext, IsWindowsContext, IsWebContext, IsMacNativeContext, IsDevelopmentContext, IsIOSContext, ProductQualityContext, IsMobileContext } from '../../platform/contextkey/common/contextkeys.js';
220
220
- import { SplitEditorsVertically, InEditorZenModeContext, AuxiliaryBarVisibleContext, SideBarVisibleContext, PanelAlignmentContext, PanelMaximizedContext, PanelVisibleContext, EmbedderIdentifierContext, EditorTabsVisibleContext, IsMainEditorCenteredLayoutContext, MainEditorAreaVisibleContext, DirtyWorkingCopiesContext, EmptyWorkspaceSupportContext, EnterMultiRootWorkspaceSupportContext, HasWebFileSystemAccess, IsMainWindowFullscreenContext, OpenFolderWorkspaceSupportContext, RemoteNameContext, VirtualWorkspaceContext, WorkbenchStateContext, WorkspaceFolderCountContext, PanelPositionContext, TemporaryWorkspaceContext, TitleBarVisibleContext, TitleBarStyleContext, IsAuxiliaryWindowFocusedContext, ActiveEditorGroupEmptyContext, ActiveEditorGroupIndexContext, ActiveEditorGroupLastContext, ActiveEditorGroupLockedContext, MultipleEditorGroupsContext, EditorsVisibleContext, IsEnabledFileDownloads, IsEnabledFileUploads } from '../common/contextkeys.js';
@@ -234,7 +234,7 @@ Index: code-server/lib/vscode/src/vs/workbench/common/contextkeys.ts
234
234
===================================================================
235
235
--- code-server.orig/lib/vscode/src/vs/workbench/common/contextkeys.ts
236
236
+++ code-server/lib/vscode/src/vs/workbench/common/contextkeys.ts
237
- @@ -41 ,6 +41 ,7 @@ export const EmbedderIdentifierContext =
237
+ @@ -42 ,6 +42 ,7 @@ export const EmbedderIdentifierContext =
238
238
239
239
export const IsEnabledFileDownloads = new RawContextKey<boolean>('isEnabledFileDownloads', true, true);
240
240
export const IsEnabledFileUploads = new RawContextKey<boolean>('isEnabledFileUploads', true, true);
0 commit comments