add version

This commit is contained in:
VALLONGOL 2025-05-13 07:58:50 +02:00
parent 071f34e0c3
commit b8342017b0
2 changed files with 14 additions and 4 deletions

View File

@ -2,6 +2,7 @@
block_cipher = None block_cipher = None
import os
a = Analysis(scripts=['projectinitializer\\__main__.py'], a = Analysis(scripts=['projectinitializer\\__main__.py'],
pathex=['projectinitializer'], pathex=['projectinitializer'],
binaries=[], binaries=[],
@ -28,9 +29,18 @@ exe = EXE(pyz,
strip=False, strip=False,
upx=True, # Use UPX based on config upx=True, # Use UPX based on config
runtime_tmpdir=None, runtime_tmpdir=None,
console=True, # Set console based on GUI checkbox console=False, # Set console based on GUI checkbox
disable_windowed_traceback=False, disable_windowed_traceback=False,
target_arch=None, target_arch=None,
codesign_identity=None, codesign_identity=None,
entitlements_file=None, entitlements_file=None,
icon='projectinitializer.ico') icon='projectinitializer.ico')
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
strip=False,
upx=True, # Match UPX setting
upx_exclude=[],
name='projectinitializer')

View File

@ -8,10 +8,10 @@ import re
# --- Version Data (Generated) --- # --- Version Data (Generated) ---
# This section is automatically generated by the build process. # This section is automatically generated by the build process.
__version__ = "v.0.0.0.1-1-g1fdf738-dirty" __version__ = "v.0.0.0.1-2-geedda8b-dirty"
GIT_COMMIT_HASH = "1fdf738d0257a954189792f557dc2bcd427f1264" GIT_COMMIT_HASH = "eedda8bb10476bdd0313d556e5267541a59a82f2"
GIT_BRANCH = "master" GIT_BRANCH = "master"
BUILD_TIMESTAMP = "2025-05-08T08:42:23Z" BUILD_TIMESTAMP = "2025-05-12T06:40:23Z"
IS_GIT_REPO = True IS_GIT_REPO = True
# --- Default Values (for comparison or fallback) --- # --- Default Values (for comparison or fallback) ---