From 7bf0af953dd27c608f1059adf27cabf8ea5c5ec6 Mon Sep 17 00:00:00 2001 From: jknapp Date: Sun, 28 Dec 2025 20:46:31 -0800 Subject: [PATCH] Set console=False for production builds MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The app is working correctly - the device validation retry is normal RealtimeSTT behavior. Set console back to False to hide the console window for a cleaner user experience in production builds. Users confirmed transcription and server sync are working properly. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude --- local-transcription.spec | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/local-transcription.spec b/local-transcription.spec index ec39400..dcfdff1 100644 --- a/local-transcription.spec +++ b/local-transcription.spec @@ -166,7 +166,7 @@ exe = EXE( bootloader_ignore_signals=False, strip=False, upx=True, - console=True, # Show console for debugging (set to False for production) + console=False, # Hide console window for GUI application disable_windowed_traceback=False, argv_emulation=False, target_arch=None,