File tree 2 files changed +11
-15
lines changed
2 files changed +11
-15
lines changed Original file line number Diff line number Diff line change @@ -86,6 +86,17 @@ Index: code-server/lib/vscode/src/vs/server/node/webClientServer.ts
86
86
_wrapWebWorkerExtHostInIframe,
87
87
developmentOptions: {
88
88
enableSmokeTestDriver: this._environmentService.args['enable-smoke-test-driver'] ? true : undefined,
89
+ @@ -319,6 +320,10 @@ export class WebClientServer {
90
+ updateEndpoint: !this._environmentService.args['disable-update-check'] ? base + '/update/check' : undefined,
91
+ logoutEndpoint: this._environmentService.args['auth'] && this._environmentService.args['auth'] !== "none" ? base + '/logout' : undefined,
92
+ proxyEndpointTemplate: process.env.VSCODE_PROXY_URI ?? base + '/proxy/{{port}}',
93
+ + serviceWorker: {
94
+ + scope: vscodeBase + '/',
95
+ + path: base + '/_static/out/browser/serviceWorker.js',
96
+ + },
97
+ embedderIdentifier: 'server-distro',
98
+ extensionsGallery: this._productService.extensionsGallery,
99
+ },
89
100
Index: code-server/lib/vscode/src/vs/workbench/browser/contextkeys.ts
90
101
===================================================================
91
102
--- code-server.orig/lib/vscode/src/vs/workbench/browser/contextkeys.ts
Original file line number Diff line number Diff line change @@ -17,21 +17,6 @@ Index: code-server/lib/vscode/src/vs/base/common/product.ts
17
17
18
18
readonly version: string;
19
19
readonly date?: string;
20
- Index: code-server/lib/vscode/src/vs/server/node/webClientServer.ts
21
- ===================================================================
22
- --- code-server.orig/lib/vscode/src/vs/server/node/webClientServer.ts
23
- +++ code-server/lib/vscode/src/vs/server/node/webClientServer.ts
24
- @@ -319,6 +319,10 @@ export class WebClientServer {
25
- updateEndpoint: !this._environmentService.args['disable-update-check'] ? base + '/update/check' : undefined,
26
- logoutEndpoint: this._environmentService.args['auth'] && this._environmentService.args['auth'] !== "none" ? base + '/logout' : undefined,
27
- proxyEndpointTemplate: base + '/proxy/{{port}}',
28
- + serviceWorker: {
29
- + scope: vscodeBase + '/',
30
- + path: base + '/_static/out/browser/serviceWorker.js',
31
- + },
32
- embedderIdentifier: 'server-distro',
33
- extensionsGallery: this._productService.extensionsGallery,
34
- },
35
20
Index: code-server/lib/vscode/src/vs/workbench/browser/client.ts
36
21
===================================================================
37
22
--- code-server.orig/lib/vscode/src/vs/workbench/browser/client.ts
You can’t perform that action at this time.
0 commit comments