@@ -69,24 +69,24 @@ Index: sagemaker-code-editor/vscode/src/vs/workbench/browser/web.main.ts
69
69
===================================================================
70
70
--- sagemaker-code-editor.orig/vscode/src/vs/workbench/browser/web.main.ts
71
71
+++ sagemaker-code-editor/vscode/src/vs/workbench/browser/web.main.ts
72
- @@ -96 ,6 +96 ,7 @@ import { ISecretStorageService } from 'v
72
+ @@ -95 ,6 +95 ,7 @@ import { TunnelSource } from 'vs/workbench/services/re
73
73
import { TunnelSource } from 'vs/workbench/services/remote/common/tunnelModel';
74
74
import { mainWindow } from 'vs/base/browser/window';
75
75
import { INotificationService, Severity } from 'vs/platform/notification/common/notification';
76
76
+ import { SagemakerServerClient } from 'vs/workbench/browser/client';
77
77
78
78
export class BrowserMain extends Disposable {
79
79
80
- @@ -131,6 +132,9 @@ export class BrowserMain extends Disposa
80
+ @@ -129,6 +130,9 @@ export class BrowserMain extends Disposable {
81
+
81
82
// Startup
82
83
const instantiationService = workbench.startup();
83
-
84
+ +
84
85
+ // Create instance of SagemakerServerClient
85
86
+ this._register(instantiationService.createInstance(SagemakerServerClient));
86
- +
87
+
87
88
// Window
88
89
this._register(instantiationService.createInstance(BrowserWindow));
89
-
90
90
Index: sagemaker-code-editor/vscode/product.json
91
91
===================================================================
92
92
--- sagemaker-code-editor.orig/vscode/product.json
@@ -100,14 +100,14 @@ Index: sagemaker-code-editor/vscode/product.json
100
100
"applicationName": "code-oss",
101
101
"dataFolderName": ".vscode-oss",
102
102
"win32MutexName": "vscodeoss",
103
- @@ -32,53 +32,17 @@
103
+ @@ -34,52 +34,16 @@
104
104
"urlProtocol": "code-oss",
105
105
"webviewContentExternalBaseUrlTemplate": "https://{{uuid}}.vscode-cdn.net/insider/ef65ac1ba57f57f2a3961bfe94aa20481caca4c6/out/vs/workbench/contrib/webview/browser/pre/",
106
106
"builtInExtensions": [
107
107
- {
108
108
- "name": "ms-vscode.js-debug-companion",
109
- - "version": "1.1.3 ",
110
- - "sha256": "7380a890787452f14b2db7835dfa94de538caf358ebc263f9d46dd68ac52de93 ",
109
+ - "version": "1.1.2 ",
110
+ - "sha256": "e034b8b41beb4e97e02c70f7175bd88abe66048374c2bd629f54bb33354bc2aa ",
111
111
- "repo": "https://github.com/microsoft/vscode-js-debug-companion",
112
112
- "metadata": {
113
113
- "id": "99cb0b7f-7354-4278-b8da-6cc79972169d",
@@ -122,8 +122,8 @@ Index: sagemaker-code-editor/vscode/product.json
122
122
- },
123
123
- {
124
124
- "name": "ms-vscode.js-debug",
125
- - "version": "1.93 .0",
126
- - "sha256": "9339cb8e6b77f554df54d79e71f533279cb76b0f9b04c207f633bfd507442b6a ",
125
+ - "version": "1.90 .0",
126
+ - "sha256": "1317dd7d1ac50641c1534a3e957ecbc94349f4fbd897acb916da11eea3208a66 ",
127
127
- "repo": "https://github.com/microsoft/vscode-js-debug",
128
128
- "metadata": {
129
129
- "id": "25629058-ddac-4e17-abba-74678e126c5d",
@@ -152,7 +152,6 @@ Index: sagemaker-code-editor/vscode/product.json
152
152
- "publisherDisplayName": "Microsoft"
153
153
- }
154
154
- }
155
- - ]
156
155
+ ],
157
156
+ "extensionsGallery": {
158
157
+ "serviceUrl": "https://open-vsx.org/vscode/gallery",
@@ -165,13 +164,37 @@ Index: sagemaker-code-editor/vscode/product.json
165
164
+ },
166
165
+ "linkProtectionTrustedDomains": [
167
166
+ "https://open-vsx.org"
168
- + ]
167
+ ]
168
+ Index: sagemaker-code-editor/vscode/src/vs/platform/product/common/product.ts
169
+ ===================================================================
170
+ --- sagemaker-code-editor.orig/vscode/src/vs/platform/product/common/product.ts
171
+ +++ sagemaker-code-editor/vscode/src/vs/platform/product/common/product.ts
172
+ @@ -59,15 +59,17 @@ else {
173
+ if (Object.keys(product).length === 0) {
174
+ Object.assign(product, {
175
+ version: '1.90.0-dev',
176
+ - nameShort: 'Code - OSS Dev',
177
+ - nameLong: 'Code - OSS Dev',
178
+ + nameShort: 'CodeEditor',
179
+ + nameLong: 'Code Editor',
180
+ applicationName: 'code-oss',
181
+ dataFolderName: '.vscode-oss',
182
+ + commit: "hellocommit",
183
+ + date: "hellodate",
184
+ urlProtocol: 'code-oss',
185
+ reportIssueUrl: 'https://github.com/microsoft/vscode/issues/new',
186
+ licenseName: 'MIT',
187
+ licenseUrl: 'https://github.com/microsoft/vscode/blob/main/LICENSE.txt',
188
+ - serverLicenseUrl: 'https://github.com/microsoft/vscode/blob/main/LICENSE.txt'
189
+ + serverLicenseUrl: 'https://github.com/microsoft/vscode/blob/main/LICENSE.txt',
190
+ });
191
+ }
169
192
}
170
193
Index: sagemaker-code-editor/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.ts
171
194
===================================================================
172
195
--- sagemaker-code-editor.orig/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.ts
173
196
+++ sagemaker-code-editor/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.ts
174
- @@ -800 ,8 +800 ,8 @@ export class GettingStartedPage extends
197
+ @@ -779 ,8 +779 ,8 @@ export class GettingStartedPage extends EditorPane {
175
198
}));
176
199
177
200
const header = $('.header', {},
@@ -356,7 +379,7 @@ Index: sagemaker-code-editor/vscode/src/vs/workbench/contrib/welcomeGettingStart
356
379
===================================================================
357
380
--- sagemaker-code-editor.orig/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts
358
381
+++ sagemaker-code-editor/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts
359
- @@ -310 ,8 +310 ,8 @@ export const walkthroughs: GettingStarte
382
+ @@ -257 ,8 +257 ,8 @@ export const walkthroughs: GettingStartedWalkthroughCo
360
383
361
384
{
362
385
id: 'SetupWeb',
0 commit comments