client_update

This commit is contained in:
2026-06-28 18:59:05 +03:00
parent e6afc266fc
commit 2d1c32fc52
7 changed files with 251 additions and 153 deletions

View File

@@ -2,8 +2,6 @@
import os
block_cipher = None
project_root = (
os.path.abspath(os.path.dirname(__file__))
if "__file__" in globals()
@@ -16,7 +14,6 @@ a = Analysis(
binaries=[],
datas=[
(os.path.join(project_root, "picture", "ICON", "icon_client.png"), "picture/ICON"),
(os.path.join(project_root, "picture", "Client", "window_main.png"), "picture/Client"),
],
hiddenimports=[],
hookspath=[],
@@ -25,11 +22,10 @@ a = Analysis(
excludes=[],
win_no_prefer_redirects=False,
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False,
)
pyz = PYZ(a.pure, a.zipped_data, cipher=block_cipher)
pyz = PYZ(a.pure)
exe = EXE(
pyz,