@codingame/monaco-vscode-remote-agent-service-override 23.2.2 → 23.3.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@codingame/monaco-vscode-remote-agent-service-override",
|
|
3
|
-
"version": "23.
|
|
3
|
+
"version": "23.3.0",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - remote-agent service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,16 +15,16 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common": "23.
|
|
19
|
-
"@codingame/monaco-vscode-1b4486de-4fe4-59c4-9e6d-34f265ff6625-common": "23.
|
|
20
|
-
"@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common": "23.
|
|
21
|
-
"@codingame/monaco-vscode-4a3ac544-9a61-534c-88df-756262793ef7-common": "23.
|
|
22
|
-
"@codingame/monaco-vscode-4bf376c2-03c7-58cb-8303-c67aeefa3d3d-common": "23.
|
|
23
|
-
"@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "23.
|
|
24
|
-
"@codingame/monaco-vscode-abed5a84-8a82-5f84-9412-88a736235bae-common": "23.
|
|
25
|
-
"@codingame/monaco-vscode-api": "23.
|
|
26
|
-
"@codingame/monaco-vscode-cc2a4237-8890-5664-9fcf-a56ecd22e3ef-common": "23.
|
|
27
|
-
"@codingame/monaco-vscode-environment-service-override": "23.
|
|
18
|
+
"@codingame/monaco-vscode-158b9837-fc78-5d9c-86f5-9134e4358643-common": "23.3.0",
|
|
19
|
+
"@codingame/monaco-vscode-1b4486de-4fe4-59c4-9e6d-34f265ff6625-common": "23.3.0",
|
|
20
|
+
"@codingame/monaco-vscode-2a94c04a-b85b-5669-b06b-89c1bfa11cb9-common": "23.3.0",
|
|
21
|
+
"@codingame/monaco-vscode-4a3ac544-9a61-534c-88df-756262793ef7-common": "23.3.0",
|
|
22
|
+
"@codingame/monaco-vscode-4bf376c2-03c7-58cb-8303-c67aeefa3d3d-common": "23.3.0",
|
|
23
|
+
"@codingame/monaco-vscode-501b06ab-3f58-516b-8a1a-c29d375d3da4-common": "23.3.0",
|
|
24
|
+
"@codingame/monaco-vscode-abed5a84-8a82-5f84-9412-88a736235bae-common": "23.3.0",
|
|
25
|
+
"@codingame/monaco-vscode-api": "23.3.0",
|
|
26
|
+
"@codingame/monaco-vscode-cc2a4237-8890-5664-9fcf-a56ecd22e3ef-common": "23.3.0",
|
|
27
|
+
"@codingame/monaco-vscode-environment-service-override": "23.3.0"
|
|
28
28
|
},
|
|
29
29
|
"main": "index.js",
|
|
30
30
|
"module": "index.js",
|
|
@@ -77,7 +77,7 @@ class BrowserWebSocket extends Disposable {
|
|
|
77
77
|
this.traceSocketEvent(SocketDiagnosticsEventType.Close, { code: e.code, reason: e.reason, wasClean: e.wasClean });
|
|
78
78
|
this._isClosed = true;
|
|
79
79
|
if (pendingErrorEvent) {
|
|
80
|
-
if (!navigator.onLine) {
|
|
80
|
+
if (!mainWindow.navigator.onLine) {
|
|
81
81
|
sendErrorNow(( new RemoteAuthorityResolverError(
|
|
82
82
|
'Browser is offline',
|
|
83
83
|
RemoteAuthorityResolverErrorCode.TemporarilyNotAvailable,
|
|
@@ -239,7 +239,7 @@ let RemoteStatusIndicator = class RemoteStatusIndicator extends Disposable {
|
|
|
239
239
|
}));
|
|
240
240
|
}
|
|
241
241
|
if (isWeb) {
|
|
242
|
-
this._register(Event.any(this._register(( new DomEmitter(mainWindow, 'online'))).event, this._register(( new DomEmitter(mainWindow, 'offline'))).event)(() => this.setNetworkState(navigator.onLine ? 'online' : 'offline')));
|
|
242
|
+
this._register(Event.any(this._register(( new DomEmitter(mainWindow, 'online'))).event, this._register(( new DomEmitter(mainWindow, 'offline'))).event)(() => this.setNetworkState(mainWindow.navigator.onLine ? 'online' : 'offline')));
|
|
243
243
|
}
|
|
244
244
|
this._register(this.extensionService.onDidChangeExtensions(async (result) => {
|
|
245
245
|
for (const ext of result.added) {
|