@codingame/monaco-vscode-working-copy-service-override 9.0.0 → 9.0.3

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-working-copy-service-override",
3
- "version": "9.0.0",
3
+ "version": "9.0.3",
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@9.0.0",
30
- "@codingame/monaco-vscode-files-service-override": "9.0.0"
29
+ "vscode": "npm:@codingame/monaco-vscode-api@9.0.3",
30
+ "@codingame/monaco-vscode-files-service-override": "9.0.3"
31
31
  }
32
32
  }
@@ -32,7 +32,7 @@ import { escapeRegExpCharacters } from 'vscode/vscode/vs/base/common/strings';
32
32
  var WorkingCopyHistoryService_1, NativeWorkingCopyHistoryService_1;
33
33
  class WorkingCopyHistoryModel {
34
34
  static { this.ENTRIES_FILE = 'entries.json'; }
35
- static { this.FILE_SAVED_SOURCE = SaveSourceRegistry.registerSource('default.source', ( localize(8535, "File Saved"))); }
35
+ static { this.FILE_SAVED_SOURCE = SaveSourceRegistry.registerSource('default.source', ( localize(8571, "File Saved"))); }
36
36
  static { this.SETTINGS = {
37
37
  MAX_ENTRIES: 'workbench.localHistory.maxFileEntries',
38
38
  MERGE_PERIOD: 'workbench.localHistory.mergeWindow'
@@ -378,8 +378,8 @@ class WorkingCopyHistoryModel {
378
378
  }
379
379
  let WorkingCopyHistoryService = class WorkingCopyHistoryService extends Disposable {
380
380
  static { WorkingCopyHistoryService_1 = this; }
381
- static { this.FILE_MOVED_SOURCE = SaveSourceRegistry.registerSource('moved.source', ( localize(8536, "File Moved"))); }
382
- static { this.FILE_RENAMED_SOURCE = SaveSourceRegistry.registerSource('renamed.source', ( localize(8537, "File Renamed"))); }
381
+ static { this.FILE_MOVED_SOURCE = SaveSourceRegistry.registerSource('moved.source', ( localize(8572, "File Moved"))); }
382
+ static { this.FILE_RENAMED_SOURCE = SaveSourceRegistry.registerSource('renamed.source', ( localize(8573, "File Renamed"))); }
383
383
  constructor(fileService, remoteAgentService, environmentService, uriIdentityService, labelService, logService, configurationService) {
384
384
  super();
385
385
  this.fileService = fileService;
@@ -596,7 +596,7 @@ let NativeWorkingCopyHistoryService = class NativeWorkingCopyHistoryService exte
596
596
  onWillShutdown(e) {
597
597
  this.storeAllScheduler.dispose();
598
598
  this.storeAllCts.dispose(true);
599
- e.join(this.storeAll(e.token), { id: 'join.workingCopyHistory', label: ( localize(8538, "Saving local history")) });
599
+ e.join(this.storeAll(e.token), { id: 'join.workingCopyHistory', label: ( localize(8574, "Saving local history")) });
600
600
  }
601
601
  onDidChangeModels() {
602
602
  if (!this.storeAllScheduler.isScheduled()) {
@@ -27,7 +27,7 @@ let WorkingCopyHistoryTracker = class WorkingCopyHistoryTracker extends Disposab
27
27
  SIZE_LIMIT: 'workbench.localHistory.maxFileSize',
28
28
  EXCLUDES: 'workbench.localHistory.exclude'
29
29
  }; }
30
- static { this.UNDO_REDO_SAVE_SOURCE = SaveSourceRegistry.registerSource('undoRedo.source', ( localize(10880, "Undo / Redo"))); }
30
+ static { this.UNDO_REDO_SAVE_SOURCE = SaveSourceRegistry.registerSource('undoRedo.source', ( localize(10892, "Undo / Redo"))); }
31
31
  constructor(workingCopyService, workingCopyHistoryService, uriIdentityService, pathService, configurationService, undoRedoService, contextService, fileService) {
32
32
  super();
33
33
  this.workingCopyService = workingCopyService;