dsh-agent-voice 0.1.0 → 0.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.
Files changed (2) hide show
  1. package/lib/index.js +1 -1
  2. package/package.json +1 -1
package/lib/index.js CHANGED
@@ -98,7 +98,7 @@ async function postWorker(path, body) {
98
98
  function apply(ctx) {
99
99
  let source = () => ({ ...DEFAULTS });
100
100
  installSettingsSection(ctx, NS, SCHEMA, DEFAULTS, {
101
- setSource: (current) => { source = () => ({ ...DEFAULTS, ...(current ?? {}) }); },
101
+ setSource: (getCurrent) => { source = () => ({ ...DEFAULTS, ...(getCurrent() ?? {}) }); },
102
102
  onChange: () => {},
103
103
  });
104
104
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "dsh-agent-voice",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "DeepSeek Harness plugin: gives the agent a voice — it reads completed tasks and attention requests aloud (never reasoning or interim reports) via local Piper / XTTS v2, with a settings panel and a curated set of voices.",
5
5
  "type": "module",
6
6
  "main": "lib/index.js",