@vscode/vscode-settings-history 0.0.2-40 → 0.0.2-41
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 +72 -0
- package/dist/vscode-settings.d.ts +10 -1
- package/package.json +1 -1
package/dist/history.json
CHANGED
|
@@ -385795,5 +385795,77 @@
|
|
|
385795
385795
|
}
|
|
385796
385796
|
}
|
|
385797
385797
|
]
|
|
385798
|
+
},
|
|
385799
|
+
{
|
|
385800
|
+
"version": "1.129.0-insider+2026071020",
|
|
385801
|
+
"base": {
|
|
385802
|
+
"version": "1.129.0-insider+2026070910"
|
|
385803
|
+
},
|
|
385804
|
+
"patch": [
|
|
385805
|
+
{
|
|
385806
|
+
"op": "remove",
|
|
385807
|
+
"path": "/agents.voice.turn.stopPhrases/description"
|
|
385808
|
+
},
|
|
385809
|
+
{
|
|
385810
|
+
"op": "add",
|
|
385811
|
+
"path": "/agents.voice.turn.stopPhrases/markdownDescription",
|
|
385812
|
+
"value": "Phrases that end the turn when spoken at the end of an utterance. Leave empty to disable ending the turn on a stop phrase, in which case the turn ends only on trailing silence (`#agents.voice.turn.silenceMs#`) or manually. The backend strips the matched phrase from the transcript before it reaches the agent."
|
|
385813
|
+
},
|
|
385814
|
+
{
|
|
385815
|
+
"op": "remove",
|
|
385816
|
+
"path": "/agents.voice.turn.silenceMs/maximum"
|
|
385817
|
+
},
|
|
385818
|
+
{
|
|
385819
|
+
"op": "remove",
|
|
385820
|
+
"path": "/agents.voice.turn.silenceMs/minimum"
|
|
385821
|
+
},
|
|
385822
|
+
{
|
|
385823
|
+
"op": "remove",
|
|
385824
|
+
"path": "/agents.voice.turn.silenceMs/description"
|
|
385825
|
+
},
|
|
385826
|
+
{
|
|
385827
|
+
"op": "add",
|
|
385828
|
+
"path": "/agents.voice.turn.silenceMs/markdownDescription",
|
|
385829
|
+
"value": "Trailing silence in milliseconds before the backend ends the turn automatically. Set to `-1` to disable ending the turn on silence, in which case the turn ends only via a stop phrase (`#agents.voice.turn.stopPhrases#`) or manually. When enabled, the backend clamps this to its supported range (currently 200-5000 ms) and is the source of truth."
|
|
385830
|
+
},
|
|
385831
|
+
{
|
|
385832
|
+
"op": "add",
|
|
385833
|
+
"path": "/agents.voice.turn.silenceMs/anyOf",
|
|
385834
|
+
"value": [
|
|
385835
|
+
{
|
|
385836
|
+
"const": -1,
|
|
385837
|
+
"description": "Do not end the turn on trailing silence."
|
|
385838
|
+
},
|
|
385839
|
+
{
|
|
385840
|
+
"type": "number",
|
|
385841
|
+
"minimum": 200,
|
|
385842
|
+
"maximum": 5000
|
|
385843
|
+
}
|
|
385844
|
+
]
|
|
385845
|
+
},
|
|
385846
|
+
{
|
|
385847
|
+
"op": "remove",
|
|
385848
|
+
"path": "/agents.voice.turn.autoEndMode"
|
|
385849
|
+
},
|
|
385850
|
+
{
|
|
385851
|
+
"op": "remove",
|
|
385852
|
+
"path": "/agents.voice.handsFree/description"
|
|
385853
|
+
},
|
|
385854
|
+
{
|
|
385855
|
+
"op": "add",
|
|
385856
|
+
"path": "/agents.voice.handsFree/markdownDescription",
|
|
385857
|
+
"value": "When enabled, voice mode automatically re-enters listening after the assistant finishes speaking, so you can hold a hands-free back-and-forth conversation. When disabled, you start each turn manually. This controls only the auto-listen loop; how a turn ends is controlled by `#agents.voice.turn.silenceMs#` and `#agents.voice.turn.stopPhrases#`."
|
|
385858
|
+
},
|
|
385859
|
+
{
|
|
385860
|
+
"op": "add",
|
|
385861
|
+
"path": "/terminal.integrated.defaultProfile.linux/markdownEnumDescriptions/13",
|
|
385862
|
+
"value": "$($(debug)) JavaScript Debug Terminal\n- extensionIdentifier: ms-vscode.js-debug"
|
|
385863
|
+
},
|
|
385864
|
+
{
|
|
385865
|
+
"op": "add",
|
|
385866
|
+
"path": "/terminal.integrated.defaultProfile.linux/enum/13",
|
|
385867
|
+
"value": "JavaScript Debug Terminal"
|
|
385868
|
+
}
|
|
385869
|
+
]
|
|
385798
385870
|
}
|
|
385799
385871
|
]
|
|
@@ -12210,6 +12210,14 @@ export type VscodeSettings_1_129_0_insider_2026070910 = Patch<VscodeSettings_1_1
|
|
|
12210
12210
|
readonly 'workbench.experimental.modernUI'?: boolean;
|
|
12211
12211
|
}, 'github.copilot.chat.claude47OpusPrompt.enabled'>;
|
|
12212
12212
|
|
|
12213
|
+
// ── 1.129.0-insider+2026071020: ~4, -1 ──
|
|
12214
|
+
export type VscodeSettings_1_129_0_insider_2026071020 = Patch<VscodeSettings_1_129_0_insider_2026070910, {
|
|
12215
|
+
readonly 'agents.voice.handsFree'?: boolean;
|
|
12216
|
+
readonly 'agents.voice.turn.silenceMs'?: number;
|
|
12217
|
+
readonly 'agents.voice.turn.stopPhrases'?: (string)[];
|
|
12218
|
+
readonly 'terminal.integrated.defaultProfile.linux'?: null | 'sh' | 'bash' | 'bash (2)' | 'rbash' | 'rbash (2)' | 'sh (2)' | 'dash' | 'dash (2)' | 'tmux' | 'screen' | 'pwsh' | 'pwsh (2)' | 'JavaScript Debug Terminal';
|
|
12219
|
+
}, 'agents.voice.turn.autoEndMode'>;
|
|
12220
|
+
|
|
12213
12221
|
// ── Version map ──
|
|
12214
12222
|
// Stable entries map directly to their settings type.
|
|
12215
12223
|
// Insider entries map to a nested record keyed by 10-digit build release date
|
|
@@ -12313,12 +12321,13 @@ interface VscodeVersionMap {
|
|
|
12313
12321
|
}>;
|
|
12314
12322
|
'1.129.0-insider': InsiderBuilds<{
|
|
12315
12323
|
'2026070910': VscodeSettings_1_129_0_insider_2026070910;
|
|
12324
|
+
'2026071020': VscodeSettings_1_129_0_insider_2026071020;
|
|
12316
12325
|
}>;
|
|
12317
12326
|
}
|
|
12318
12327
|
|
|
12319
12328
|
export type LatestVscodeSettings = VscodeSettings_1_128_0;
|
|
12320
12329
|
|
|
12321
|
-
export type LatestInsiderVscodeSettings =
|
|
12330
|
+
export type LatestInsiderVscodeSettings = VscodeSettings_1_129_0_insider_2026071020;
|
|
12322
12331
|
|
|
12323
12332
|
export type VscodeVersion = keyof VscodeVersionMap;
|
|
12324
12333
|
|