opencode-interrupt-plugin 0.4.16 → 0.4.17

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/dist/tui.js +3 -3
  2. package/package.json +1 -1
package/dist/tui.js CHANGED
@@ -115,7 +115,7 @@ const tui = async (api, _options, _meta) => {
115
115
  commands: [
116
116
  {
117
117
  name: "interrupt.ptt",
118
- title: "Walkie-Talkie (press f2 to record, press again to send)",
118
+ title: "Walkie-Talkie (press f3 to record, press again to send)",
119
119
  category: "Plugin",
120
120
  run: async () => {
121
121
  const route = api.route.current;
@@ -136,12 +136,12 @@ const tui = async (api, _options, _meta) => {
136
136
  catch { /* ignore */ }
137
137
  }
138
138
  pttStartRecording();
139
- api.ui.toast({ variant: "info", title: "PTT", message: "Recording... (press f2 again to send)" });
139
+ api.ui.toast({ variant: "info", title: "PTT", message: "Recording... (press f3 again to send)" });
140
140
  }
141
141
  },
142
142
  },
143
143
  ],
144
- bindings: [{ key: "f2", cmd: "interrupt.ptt" }],
144
+ bindings: [{ key: "f3", cmd: "interrupt.ptt" }],
145
145
  });
146
146
  api.lifecycle.onDispose(() => {
147
147
  if (recordingProcess) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "opencode-interrupt-plugin",
3
- "version": "0.4.16",
3
+ "version": "0.4.17",
4
4
  "description": "Streaming TTS + voice interruption for OpenCode. Speaks responses as they arrive and detects when you talk over it.",
5
5
  "type": "module",
6
6
  "main": "./dist/index.js",