From d40721dd3d810b71ad195d86dc8396057d765919 Mon Sep 17 00:00:00 2001 From: mARTin-B78 Date: Tue, 9 Jun 2026 22:25:17 +0200 Subject: [PATCH] fix: reduce transcription timeout to 30s (v2.03.04) 300s was too long; nobody waits 5 min for a result. 30s gives slow remote servers a fair window while still failing fast. Co-Authored-By: Claude Sonnet 4.6 --- linux/blitztext/__init__.py | 2 +- linux/blitztext/stt.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/linux/blitztext/__init__.py b/linux/blitztext/__init__.py index 69a232f..2b1f647 100644 --- a/linux/blitztext/__init__.py +++ b/linux/blitztext/__init__.py @@ -6,4 +6,4 @@ 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.03" +__version__ = "2.03.04" diff --git a/linux/blitztext/stt.py b/linux/blitztext/stt.py index beb545d..1702855 100644 --- a/linux/blitztext/stt.py +++ b/linux/blitztext/stt.py @@ -196,7 +196,7 @@ def transcribe( language: str = "", hotwords: str = "", local_transcriber=None, - timeout: int = 300, + timeout: int = 30, ) -> str: if engine.is_local: if local_transcriber is None: