Fix application icon not showing in PyInstaller builds
The icon wasn't working in frozen executables because: 1. LocalTranscription.png wasn't being bundled in the PyInstaller build 2. The code was using Path(__file__).parent which doesn't work in frozen exes Changes: - Added LocalTranscription.png to datas in local-transcription.spec - Updated main.py to use sys._MEIPASS for frozen executables - Updated gui/main_window_qt.py to use sys._MEIPASS for frozen executables - Both files now detect if running frozen and adjust icon path accordingly The icon will now appear correctly in: - Window titlebar - Taskbar (Windows) / Dock (macOS) - Alt-Tab switcher 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
This commit is contained in:
@@ -36,6 +36,7 @@ except ImportError:
|
||||
binaries = []
|
||||
datas = [
|
||||
('config/default_config.yaml', 'config'),
|
||||
('LocalTranscription.png', '.'), # Include icon for runtime window icon
|
||||
(vad_assets_path, 'faster_whisper/assets'), # Include VAD model
|
||||
] + pvporcupine_data_files # Include pvporcupine resources
|
||||
hiddenimports = [
|
||||
|
||||
Reference in New Issue
Block a user