@codingame/monaco-vscode-working-copy-service-override 23.0.3 → 23.1.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-working-copy-service-override",
3
- "version": "23.0.3",
3
+ "version": "23.1.0",
4
4
  "private": false,
5
5
  "description": "VSCode public API plugged on the monaco editor - working-copy service-override",
6
6
  "keywords": [],
@@ -15,10 +15,10 @@
15
15
  },
16
16
  "type": "module",
17
17
  "dependencies": {
18
- "@codingame/monaco-vscode-6f931a91-88ea-5232-897f-a17ec3929ba5-common": "23.0.3",
19
- "@codingame/monaco-vscode-api": "23.0.3",
20
- "@codingame/monaco-vscode-d392702e-4ad7-5904-a915-f6063284cf14-common": "23.0.3",
21
- "@codingame/monaco-vscode-files-service-override": "23.0.3"
18
+ "@codingame/monaco-vscode-6f931a91-88ea-5232-897f-a17ec3929ba5-common": "23.1.0",
19
+ "@codingame/monaco-vscode-api": "23.1.0",
20
+ "@codingame/monaco-vscode-d392702e-4ad7-5904-a915-f6063284cf14-common": "23.1.0",
21
+ "@codingame/monaco-vscode-files-service-override": "23.1.0"
22
22
  },
23
23
  "main": "index.js",
24
24
  "module": "index.js",
@@ -33,7 +33,7 @@ import { escapeRegExpCharacters } from '@codingame/monaco-vscode-api/vscode/vs/b
33
33
  var WorkingCopyHistoryService_1, NativeWorkingCopyHistoryService_1;
34
34
  class WorkingCopyHistoryModel {
35
35
  static { this.ENTRIES_FILE = 'entries.json'; }
36
- static { this.FILE_SAVED_SOURCE = SaveSourceRegistry.registerSource('default.source', ( localize(14433, "File Saved"))); }
36
+ static { this.FILE_SAVED_SOURCE = SaveSourceRegistry.registerSource('default.source', ( localize(14436, "File Saved"))); }
37
37
  static { this.SETTINGS = {
38
38
  MAX_ENTRIES: 'workbench.localHistory.maxFileEntries',
39
39
  MERGE_PERIOD: 'workbench.localHistory.mergeWindow'
@@ -379,8 +379,8 @@ class WorkingCopyHistoryModel {
379
379
  }
380
380
  let WorkingCopyHistoryService = class WorkingCopyHistoryService extends Disposable {
381
381
  static { WorkingCopyHistoryService_1 = this; }
382
- static { this.FILE_MOVED_SOURCE = SaveSourceRegistry.registerSource('moved.source', ( localize(14434, "File Moved"))); }
383
- static { this.FILE_RENAMED_SOURCE = SaveSourceRegistry.registerSource('renamed.source', ( localize(14435, "File Renamed"))); }
382
+ static { this.FILE_MOVED_SOURCE = SaveSourceRegistry.registerSource('moved.source', ( localize(14437, "File Moved"))); }
383
+ static { this.FILE_RENAMED_SOURCE = SaveSourceRegistry.registerSource('renamed.source', ( localize(14438, "File Renamed"))); }
384
384
  constructor(fileService, remoteAgentService, environmentService, uriIdentityService, labelService, logService, configurationService) {
385
385
  super();
386
386
  this.fileService = fileService;
@@ -597,7 +597,7 @@ let NativeWorkingCopyHistoryService = class NativeWorkingCopyHistoryService exte
597
597
  onWillShutdown(e) {
598
598
  this.storeAllScheduler.dispose();
599
599
  this.storeAllCts.dispose(true);
600
- e.join(this.storeAll(e.token), { id: 'join.workingCopyHistory', label: ( localize(14436, "Saving local history")) });
600
+ e.join(this.storeAll(e.token), { id: 'join.workingCopyHistory', label: ( localize(14439, "Saving local history")) });
601
601
  }
602
602
  onDidChangeModels() {
603
603
  if (!this.storeAllScheduler.isScheduled()) {
@@ -28,7 +28,7 @@ let WorkingCopyHistoryTracker = class WorkingCopyHistoryTracker extends Disposab
28
28
  SIZE_LIMIT: 'workbench.localHistory.maxFileSize',
29
29
  EXCLUDES: 'workbench.localHistory.exclude'
30
30
  }; }
31
- static { this.UNDO_REDO_SAVE_SOURCE = SaveSourceRegistry.registerSource('undoRedo.source', ( localize(14437, "Undo / Redo"))); }
31
+ static { this.UNDO_REDO_SAVE_SOURCE = SaveSourceRegistry.registerSource('undoRedo.source', ( localize(14440, "Undo / Redo"))); }
32
32
  constructor(workingCopyService, workingCopyHistoryService, uriIdentityService, pathService, configurationService, undoRedoService, contextService, fileService) {
33
33
  super();
34
34
  this.workingCopyService = workingCopyService;