v0.6.3 - Fix _PYI_APPLICATION_HOME_DIR avec --runtime-tmpdir

Changements :
- Ajout de --runtime-tmpdir . dans PyInstaller : extraction a cote de l'exe au lieu de %TEMP%
- Resout l'erreur "_PYI_APPLICATION_HOME_DIR is not defined" de PyInstaller 6.x en onefile

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-24 21:11:20 +01:00
parent 62d6c7f89f
commit 3c9a6e70eb
4 changed files with 3 additions and 3 deletions

Binary file not shown.

View File

@@ -25,7 +25,7 @@ python -c "from PIL import Image; img = Image.open('icon.png'); img.save('icon.i
echo [*] Compilation en cours...
echo.
pyinstaller --onefile --noconsole --name "GitUpdateChecker" --icon=icon.ico git_updater.py
pyinstaller --onefile --noconsole --runtime-tmpdir . --name "GitUpdateChecker" --icon=icon.ico git_updater.py
echo.
if exist "dist\GitUpdateChecker.exe" (

View File

@@ -5,7 +5,7 @@ Accès lecture seule uniquement (fetch/pull/checkout, jamais de push).
Tous les chemins sont relatifs à l'emplacement de l'exécutable.
"""
VERSION = "0.6.2"
VERSION = "0.6.3"
import subprocess
import sys

View File

@@ -1 +1 @@
0.6.2
0.6.3