@codingame/monaco-vscode-remote-agent-service-override 8.0.2 → 8.0.4

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": "8.0.2",
3
+ "version": "8.0.4",
4
4
  "keywords": [],
5
5
  "author": {
6
6
  "name": "CodinGame",
@@ -26,7 +26,7 @@
26
26
  }
27
27
  },
28
28
  "dependencies": {
29
- "vscode": "npm:@codingame/monaco-vscode-api@8.0.2",
30
- "@codingame/monaco-vscode-environment-service-override": "8.0.2"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@8.0.4",
30
+ "@codingame/monaco-vscode-environment-service-override": "8.0.4"
31
31
  }
32
32
  }
@@ -28,7 +28,7 @@ let SwitchRemoteViewItem = class SwitchRemoteViewItem extends Disposable {
28
28
  this.switchRemoteMenu = MenuId.for('workbench.remote.menu.switchRemoteMenu');
29
29
  this._register(MenuRegistry.appendMenuItem(MenuId.ViewContainerTitle, {
30
30
  submenu: this.switchRemoteMenu,
31
- title: ( localize(10837, "Switch Remote")),
31
+ title: ( localize(10854, "Switch Remote")),
32
32
  group: 'navigation',
33
33
  when: ( (ContextKeyExpr.equals('viewContainer', VIEWLET_ID))),
34
34
  order: 1,
@@ -43,17 +43,17 @@ let InitialRemoteConnectionHealthContribution = class InitialRemoteConnectionHea
43
43
  const { result, checkboxChecked } = await this.dialogService.prompt({
44
44
  type: Severity$1.Warning,
45
45
  message: ( localize(
46
- 8725,
46
+ 8741,
47
47
  "You are about to connect to an OS version that is unsupported by {0}.",
48
48
  this.productService.nameLong
49
49
  )),
50
50
  buttons: [
51
51
  {
52
- label: ( localize(8726, "&&Allow")),
52
+ label: ( localize(8742, "&&Allow")),
53
53
  run: () => ConnectionChoice.Allow
54
54
  },
55
55
  {
56
- label: ( localize(8727, "&&Learn More")),
56
+ label: ( localize(8743, "&&Learn More")),
57
57
  run: async () => { await this.openerService.open('https://aka.ms/vscode-remote/faq/old-linux'); return ConnectionChoice.LearnMore; }
58
58
  }
59
59
  ],
@@ -61,7 +61,7 @@ let InitialRemoteConnectionHealthContribution = class InitialRemoteConnectionHea
61
61
  run: () => ConnectionChoice.Cancel
62
62
  },
63
63
  checkbox: {
64
- label: ( localize(8728, "Do not show again")),
64
+ label: ( localize(8744, "Do not show again")),
65
65
  }
66
66
  });
67
67
  if (result === ConnectionChoice.LearnMore) {
@@ -87,14 +87,14 @@ let InitialRemoteConnectionHealthContribution = class InitialRemoteConnectionHea
87
87
  if (shouldShowBanner) {
88
88
  const actions = [
89
89
  {
90
- label: ( localize(8729, "Learn More")),
90
+ label: ( localize(8745, "Learn More")),
91
91
  href: 'https://aka.ms/vscode-remote/faq/old-linux'
92
92
  }
93
93
  ];
94
94
  this.bannerService.show({
95
95
  id: 'unsupportedGlibcWarning.banner',
96
96
  message: ( localize(
97
- 8730,
97
+ 8746,
98
98
  "You are connected to an OS version that is unsupported by {0}.",
99
99
  this.productService.nameLong
100
100
  )),