@vscode/vscode-settings-history 0.0.2-3 → 0.0.2-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/dist/history.json +16 -0
- package/dist/vscode-settings.d.ts +9 -5
- package/package.json +1 -1
package/dist/history.json
CHANGED
|
@@ -259665,5 +259665,21 @@
|
|
|
259665
259665
|
}
|
|
259666
259666
|
}
|
|
259667
259667
|
]
|
|
259668
|
+
},
|
|
259669
|
+
{
|
|
259670
|
+
"version": "1.121.0-insider+2026051517",
|
|
259671
|
+
"base": {
|
|
259672
|
+
"version": "1.121.0-insider+2026051505"
|
|
259673
|
+
},
|
|
259674
|
+
"patch": [
|
|
259675
|
+
{
|
|
259676
|
+
"op": "remove",
|
|
259677
|
+
"path": "/github.copilot.chat.gpt54LargePrompt.enabled"
|
|
259678
|
+
},
|
|
259679
|
+
{
|
|
259680
|
+
"op": "remove",
|
|
259681
|
+
"path": "/github.copilot.chat.gpt54ConcisePrompt.enabled"
|
|
259682
|
+
}
|
|
259683
|
+
]
|
|
259668
259684
|
}
|
|
259669
259685
|
]
|
|
@@ -7412,8 +7412,8 @@ export type VscodeSettings_1_120_0 = Patch<VscodeSettings_1_119_0, {
|
|
|
7412
7412
|
readonly 'explorer.confirmDragAndDrop'?: boolean;
|
|
7413
7413
|
readonly 'explorer.confirmPasteNative'?: boolean;
|
|
7414
7414
|
readonly 'explorer.confirmUndo'?: 'verbose' | 'default' | 'light';
|
|
7415
|
-
readonly 'explorer.copyPathSeparator'?: '/' | '
|
|
7416
|
-
readonly 'explorer.copyRelativePathSeparator'?: '/' | '
|
|
7415
|
+
readonly 'explorer.copyPathSeparator'?: '/' | '\\' | 'auto';
|
|
7416
|
+
readonly 'explorer.copyRelativePathSeparator'?: '/' | '\\' | 'auto';
|
|
7417
7417
|
readonly 'explorer.decorations.badges'?: boolean;
|
|
7418
7418
|
readonly 'explorer.decorations.colors'?: boolean;
|
|
7419
7419
|
readonly 'explorer.enableDragAndDrop'?: boolean;
|
|
@@ -9461,8 +9461,8 @@ export interface VscodeSettings_1_121_0_insider_2026051305 {
|
|
|
9461
9461
|
readonly 'explorer.confirmDragAndDrop'?: boolean;
|
|
9462
9462
|
readonly 'explorer.confirmPasteNative'?: boolean;
|
|
9463
9463
|
readonly 'explorer.confirmUndo'?: 'verbose' | 'default' | 'light';
|
|
9464
|
-
readonly 'explorer.copyPathSeparator'?: '/' | '
|
|
9465
|
-
readonly 'explorer.copyRelativePathSeparator'?: '/' | '
|
|
9464
|
+
readonly 'explorer.copyPathSeparator'?: '/' | '\\' | 'auto';
|
|
9465
|
+
readonly 'explorer.copyRelativePathSeparator'?: '/' | '\\' | 'auto';
|
|
9466
9466
|
readonly 'explorer.decorations.badges'?: boolean;
|
|
9467
9467
|
readonly 'explorer.decorations.colors'?: boolean;
|
|
9468
9468
|
readonly 'explorer.enableDragAndDrop'?: boolean;
|
|
@@ -10818,6 +10818,9 @@ export type VscodeSettings_1_121_0_insider_2026051505 = Patch<VscodeSettings_1_1
|
|
|
10818
10818
|
readonly 'search.experimental.useIgnoreFilesInFindFiles'?: boolean;
|
|
10819
10819
|
}, never>;
|
|
10820
10820
|
|
|
10821
|
+
// ── 1.121.0-insider+2026051517: -2 ──
|
|
10822
|
+
export type VscodeSettings_1_121_0_insider_2026051517 = Patch<VscodeSettings_1_121_0_insider_2026051505, {}, 'github.copilot.chat.gpt54ConcisePrompt.enabled' | 'github.copilot.chat.gpt54LargePrompt.enabled'>;
|
|
10823
|
+
|
|
10821
10824
|
// ── Version map ──
|
|
10822
10825
|
// Stable entries map directly to their settings type.
|
|
10823
10826
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -10857,12 +10860,13 @@ interface VscodeVersionMap {
|
|
|
10857
10860
|
'1.121.0-insider': {
|
|
10858
10861
|
'2026051305': VscodeSettings_1_121_0_insider_2026051305;
|
|
10859
10862
|
'2026051505': VscodeSettings_1_121_0_insider_2026051505;
|
|
10863
|
+
'2026051517': VscodeSettings_1_121_0_insider_2026051517;
|
|
10860
10864
|
};
|
|
10861
10865
|
}
|
|
10862
10866
|
|
|
10863
10867
|
export type LatestVscodeSettings = VscodeSettings_1_120_0;
|
|
10864
10868
|
|
|
10865
|
-
export type LatestInsiderVscodeSettings =
|
|
10869
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_121_0_insider_2026051517;
|
|
10866
10870
|
|
|
10867
10871
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
10868
10872
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@vscode/vscode-settings-history",
|
|
3
|
-
"version": "0.0.2-
|
|
3
|
+
"version": "0.0.2-4",
|
|
4
4
|
"type": "module",
|
|
5
5
|
"packageManager": "pnpm@10.18.0+sha512.e804f889f1cecc40d572db084eec3e4881739f8dec69c0ff10d2d1beff9a4e309383ba27b5b750059d7f4c149535b6cd0d2cb1ed3aeb739239a4284a68f40cfa",
|
|
6
6
|
"description": "Tracks VS Code settings schema changes across versions",
|