@codingame/monaco-vscode-working-copy-service-override 31.0.1 → 32.0.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": "
|
|
3
|
+
"version": "32.0.1",
|
|
4
4
|
"private": false,
|
|
5
5
|
"description": "VSCode public API plugged on the monaco editor - working-copy service-override",
|
|
6
6
|
"keywords": [],
|
|
@@ -15,8 +15,8 @@
|
|
|
15
15
|
},
|
|
16
16
|
"type": "module",
|
|
17
17
|
"dependencies": {
|
|
18
|
-
"@codingame/monaco-vscode-api": "
|
|
19
|
-
"@codingame/monaco-vscode-files-service-override": "
|
|
18
|
+
"@codingame/monaco-vscode-api": "32.0.1",
|
|
19
|
+
"@codingame/monaco-vscode-files-service-override": "32.0.1"
|
|
20
20
|
},
|
|
21
21
|
"main": "index.js",
|
|
22
22
|
"module": "index.js",
|
|
@@ -36,7 +36,7 @@ class WorkingCopyHistoryModel {
|
|
|
36
36
|
this.ENTRIES_FILE = "entries.json";
|
|
37
37
|
}
|
|
38
38
|
static {
|
|
39
|
-
this.FILE_SAVED_SOURCE = SaveSourceRegistry.registerSource("default.source", ( localize(
|
|
39
|
+
this.FILE_SAVED_SOURCE = SaveSourceRegistry.registerSource("default.source", ( localize(17304, "File Saved")));
|
|
40
40
|
}
|
|
41
41
|
static {
|
|
42
42
|
this.SETTINGS = {
|
|
@@ -429,10 +429,10 @@ let WorkingCopyHistoryService = class WorkingCopyHistoryService extends Disposab
|
|
|
429
429
|
WorkingCopyHistoryService_1 = this;
|
|
430
430
|
}
|
|
431
431
|
static {
|
|
432
|
-
this.FILE_MOVED_SOURCE = SaveSourceRegistry.registerSource("moved.source", ( localize(
|
|
432
|
+
this.FILE_MOVED_SOURCE = SaveSourceRegistry.registerSource("moved.source", ( localize(17305, "File Moved")));
|
|
433
433
|
}
|
|
434
434
|
static {
|
|
435
|
-
this.FILE_RENAMED_SOURCE = SaveSourceRegistry.registerSource("renamed.source", ( localize(
|
|
435
|
+
this.FILE_RENAMED_SOURCE = SaveSourceRegistry.registerSource("renamed.source", ( localize(17306, "File Renamed")));
|
|
436
436
|
}
|
|
437
437
|
constructor(
|
|
438
438
|
fileService,
|
|
@@ -684,7 +684,7 @@ let NativeWorkingCopyHistoryService = class NativeWorkingCopyHistoryService exte
|
|
|
684
684
|
this.storeAllCts.dispose(true);
|
|
685
685
|
e.join(this.storeAll(e.token), {
|
|
686
686
|
id: "join.workingCopyHistory",
|
|
687
|
-
label: ( localize(
|
|
687
|
+
label: ( localize(17307, "Saving local history"))
|
|
688
688
|
});
|
|
689
689
|
}
|
|
690
690
|
onDidChangeModels() {
|
|
@@ -33,7 +33,7 @@ let WorkingCopyHistoryTracker = class WorkingCopyHistoryTracker extends Disposab
|
|
|
33
33
|
};
|
|
34
34
|
}
|
|
35
35
|
static {
|
|
36
|
-
this.UNDO_REDO_SAVE_SOURCE = SaveSourceRegistry.registerSource("undoRedo.source", ( localize(
|
|
36
|
+
this.UNDO_REDO_SAVE_SOURCE = SaveSourceRegistry.registerSource("undoRedo.source", ( localize(17308, "Undo / Redo")));
|
|
37
37
|
}
|
|
38
38
|
constructor(
|
|
39
39
|
workingCopyService,
|