- overlay: show × button in busy state (transcribing/rewriting), not only while recording — updates hit-region, draw call, and label layout - daemon: cancel_dictation() now handles _busy via threading.Event (_abort_event); _process() clears the event at start, checks after STT returns and after LLM rewrite completes, skipping delivery if set - llm: chat() and _read_stream() accept abort_event; streaming loop breaks immediately when the event is set so cancellation is near-instant Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
385 B
Python
10 lines
385 B
Python
"""Blitztext for Linux — native dictation daemon.
|
|
|
|
Press a global hotkey, speak, and the transcribed (optionally LLM-rewritten)
|
|
text is typed into whatever text field currently has focus. This is the Linux
|
|
counterpart to the macOS Blitztext menu bar app: it runs natively on the host
|
|
(not in a container) so it can type into any application via xdotool.
|
|
"""
|
|
|
|
__version__ = "2.03.41"
|