pi-voice-input 0.2.5 → 0.2.6
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/README.md +1 -1
- package/extensions/voice-input.ts +1 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -148,7 +148,7 @@ Slash commands:
|
|
|
148
148
|
- The default ASR segment size is intentionally larger than realtime packet sizes because this workflow sends already-recorded audio.
|
|
149
149
|
- The transcript is inserted into the editor only; it is not submitted automatically.
|
|
150
150
|
- When `polishModel` is set, polishing uses the unsent editor draft and recent session messages as context, but outputs only the refined voice text. The final text is still pasted at the current cursor position without replacing the draft.
|
|
151
|
-
- While recording, the status line shows `● Mic on: [device name]` in the current theme accent color.
|
|
151
|
+
- While recording, the status line shows `● Mic on: [device name] — press Ctrl+Shift+R again to stop/transcribe` in the current theme accent color; no separate popup is shown when recording starts.
|
|
152
152
|
|
|
153
153
|
## Development
|
|
154
154
|
|
|
@@ -326,7 +326,7 @@ function recordingDeviceName(config: VoiceConfig, recorderExecutable: string): s
|
|
|
326
326
|
}
|
|
327
327
|
|
|
328
328
|
function recordingStatusText(deviceName: string): string {
|
|
329
|
-
return `● Mic on: ${deviceName || "default microphone"}`;
|
|
329
|
+
return `● Mic on: ${deviceName || "default microphone"} — press Ctrl+Shift+R again to stop/transcribe`;
|
|
330
330
|
}
|
|
331
331
|
|
|
332
332
|
function readState(config: VoiceConfig): RecordingState | null {
|
|
@@ -949,7 +949,6 @@ async function startRecording(ctx: ExtensionContext) {
|
|
|
949
949
|
});
|
|
950
950
|
|
|
951
951
|
ctx.ui.setStatus("voice-input", ctx.ui.theme.fg("accent", recordingStatusText(deviceName)));
|
|
952
|
-
ctx.ui.notify(`${recordingStatusText(deviceName)}. Press Ctrl+Shift+R again to stop/transcribe.`, "info");
|
|
953
952
|
}
|
|
954
953
|
|
|
955
954
|
async function stopRecording(ctx: ExtensionContext, transcribe = true) {
|