Compare commits

...

2 Commits

Author SHA1 Message Date
97db6a8033 Améliorations 2026-03-24 20:32:05 +01:00
ef3ce2b12b v0.5.6 - Suppression de la fenetre console
Changements :
- Remplacement du flag --console par --noconsole dans PyInstaller (app GUI, pas besoin de console)

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-03-24 20:31:50 +01:00
4 changed files with 3 additions and 2 deletions

View File

@@ -7,7 +7,8 @@
"Bash(pyinstaller --onefile --windowed --name \"GitUpdateChecker\" git_updater.py)",
"Bash(pyinstaller --onefile --console --name \"GitUpdateChecker\" --icon=NONE git_updater.py)",
"Bash(python -m PyInstaller --onefile --console --name \"GitUpdateChecker\" --icon=NONE git_updater.py)",
"Bash(cmd /c build.bat)"
"Bash(cmd /c build.bat)",
"Bash(pyinstaller --onefile --noconsole --name \"GitUpdateChecker\" --icon=NONE git_updater.py)"
]
}
}

Binary file not shown.

View File

@@ -22,7 +22,7 @@ if errorlevel 1 (
echo [*] Compilation en cours...
echo.
pyinstaller --onefile --console --name "GitUpdateChecker" --icon=NONE git_updater.py
pyinstaller --onefile --noconsole --name "GitUpdateChecker" --icon=NONE git_updater.py
echo.
if exist "dist\GitUpdateChecker.exe" (

BIN
icon.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 944 KiB