@@ -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
- @@ -95 ,6 +95 ,7 @@ import { TunnelSource } from 'vs/workbench/services/re
72
+ @@ -96 ,6 +96 ,7 @@ import { ISecretStorageService } from 'v
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
- @@ -129,6 +130,9 @@ export class BrowserMain extends Disposable {
81
-
80
+ @@ -131,6 +132,9 @@ export class BrowserMain extends Disposa
82
81
// Startup
83
82
const instantiationService = workbench.startup();
84
- +
83
+
85
84
+ // Create instance of SagemakerServerClient
86
85
+ this._register(instantiationService.createInstance(SagemakerServerClient));
87
-
86
+ +
88
87
// Window
89
88
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
- @@ -34,52 +34,16 @@
103
+ @@ -32,53 +32,17 @@
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.2 ",
110
- - "sha256": "e034b8b41beb4e97e02c70f7175bd88abe66048374c2bd629f54bb33354bc2aa ",
109
+ - "version": "1.1.3 ",
110
+ - "sha256": "7380a890787452f14b2db7835dfa94de538caf358ebc263f9d46dd68ac52de93 ",
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.90 .0",
126
- - "sha256": "1317dd7d1ac50641c1534a3e957ecbc94349f4fbd897acb916da11eea3208a66 ",
125
+ - "version": "1.93 .0",
126
+ - "sha256": "9339cb8e6b77f554df54d79e71f533279cb76b0f9b04c207f633bfd507442b6a ",
127
127
- "repo": "https://github.com/microsoft/vscode-js-debug",
128
128
- "metadata": {
129
129
- "id": "25629058-ddac-4e17-abba-74678e126c5d",
@@ -152,6 +152,7 @@ Index: sagemaker-code-editor/vscode/product.json
152
152
- "publisherDisplayName": "Microsoft"
153
153
- }
154
154
- }
155
+ - ]
155
156
+ ],
156
157
+ "extensionsGallery": {
157
158
+ "serviceUrl": "https://open-vsx.org/vscode/gallery",
@@ -164,37 +165,13 @@ Index: sagemaker-code-editor/vscode/product.json
164
165
+ },
165
166
+ "linkProtectionTrustedDomains": [
166
167
+ "https://open-vsx.org"
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
- }
168
+ + ]
192
169
}
193
170
Index: sagemaker-code-editor/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.ts
194
171
===================================================================
195
172
--- sagemaker-code-editor.orig/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.ts
196
173
+++ sagemaker-code-editor/vscode/src/vs/workbench/contrib/welcomeGettingStarted/browser/gettingStarted.ts
197
- @@ -779 ,8 +779 ,8 @@ export class GettingStartedPage extends EditorPane {
174
+ @@ -800 ,8 +800 ,8 @@ export class GettingStartedPage extends
198
175
}));
199
176
200
177
const header = $('.header', {},
@@ -379,7 +356,7 @@ Index: sagemaker-code-editor/vscode/src/vs/workbench/contrib/welcomeGettingStart
379
356
===================================================================
380
357
--- sagemaker-code-editor.orig/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts
381
358
+++ sagemaker-code-editor/vscode/src/vs/workbench/contrib/welcomeGettingStarted/common/gettingStartedContent.ts
382
- @@ -257 ,8 +257 ,8 @@ export const walkthroughs: GettingStartedWalkthroughCo
359
+ @@ -310 ,8 +310 ,8 @@ export const walkthroughs: GettingStarte
383
360
384
361
{
385
362
id: 'SetupWeb',
0 commit comments