Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -629,6 +629,7 @@ We want to hear from you! Voxtype is a young project and your feedback helps mak
- [ayoahha](https://github.com/ayoahha) - CLI backend for whisper-cli subprocess transcription
- [Loki Coyote](https://github.com/lokkju) - eitype output driver for KDE/GNOME support, media keys and numeric keycode hotkey support
- [Umesh](https://github.com/radiorambo) - Documentation website
- [Sami Jawhar](https://github.com/sjawhar) - Eager input processing wiring

## License

Expand Down
4 changes: 4 additions & 0 deletions src/daemon.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1814,6 +1814,7 @@ impl Daemon {
tracing::debug!("Eager recording produced empty result");
self.reset_to_idle(&mut state).await;
}
eager_transcriber = None;
}
}

Expand Down Expand Up @@ -1988,6 +1989,7 @@ impl Daemon {
tracing::debug!("Eager recording produced empty result");
self.reset_to_idle(&mut state).await;
}
eager_transcriber = None;
}
}

Expand Down Expand Up @@ -2235,6 +2237,7 @@ impl Daemon {
self.reset_to_idle(&mut state).await;
}
}
eager_transcriber = None;
} else {
for (_, task) in self.eager_chunk_tasks.drain(..) {
task.abort();
Expand Down Expand Up @@ -2423,6 +2426,7 @@ impl Daemon {
tracing::debug!("Eager recording produced empty result");
self.reset_to_idle(&mut state).await;
}
eager_transcriber = None;
}
}

Expand Down
2 changes: 1 addition & 1 deletion website/news/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ <h3>Other Changes</h3>
</ul>

<h3>Contributors</h3>
<p>Thanks to <a href="https://github.com/siebertm">Michael Siebert</a> for smart auto-submit, <a href="https://github.com/materemias">materemias</a> for meeting export improvements, <a href="https://github.com/repomaa">Joakim Repomaa</a> for the NixOS HM fix, <a href="https://github.com/benj9000">benj9000</a> for Parakeet documentation updates, and <a href="https://github.com/fazzledev">Syed Fazil Basheer</a> for diagnosing the ONNX status bug.</p>
<p>Thanks to <a href="https://github.com/siebertm">Michael Siebert</a> for smart auto-submit, <a href="https://github.com/sjawhar">Sami Jawhar</a> for wiring eager input processing into the daemon, <a href="https://github.com/materemias">materemias</a> for meeting export improvements, <a href="https://github.com/repomaa">Joakim Repomaa</a> for the NixOS HM fix, <a href="https://github.com/benj9000">benj9000</a> for Parakeet documentation updates, and <a href="https://github.com/fazzledev">Syed Fazil Basheer</a> for diagnosing the ONNX status bug.</p>
</div>
</article>

Expand Down