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