Skip to content

Commit 922981b

Browse files
committed
.gitignore dstore
1 parent 00db41f commit 922981b

3 files changed

Lines changed: 4 additions & 2 deletions

File tree

.DS_Store

0 Bytes
Binary file not shown.

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ version_info.txt
4040

4141
# Lock files
4242
package-lock.json
43-
Pipfile.lock
43+
Pipfile.lock
44+
.DS_Store

build_windows.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,8 @@ def build_windows_exe():
4949
pyinstaller_cmd = [
5050
'pyinstaller',
5151
'--onefile', # Single executable file
52-
'--console', # Keep console for cross-platform compatibility
52+
#'--console', # Keep console for cross-platform compatibility
53+
'--windowed', # No console window
5354
'--name=FFmpeg_GUI_Windows_AMD64',
5455
'--add-data=utils_safe_extract.py' + (';.' if sys.platform == 'win32' else ':.'),
5556
'--hidden-import=PyQt6.QtCore',

0 commit comments

Comments
 (0)