add splash screen to win build

This commit is contained in:
DYefremov
2026-02-15 22:37:16 +03:00
parent 61690db0ee
commit 5cd8c68589
3 changed files with 29 additions and 11 deletions

View File

@@ -7,8 +7,7 @@ PATH_EXE = [os.path.join(DIR_PATH, EXE_NAME)]
block_cipher = None
excludes = ['app.tools.mpv',
'gi.repository.Gst',
excludes = ['gi.repository.Gst',
'gi.repository.GstBase',
'gi.repository.GstVideo',
'youtube_dl',
@@ -48,9 +47,19 @@ a = Analysis([EXE_NAME],
win_private_assemblies=False,
cipher=block_cipher,
noarchive=False)
pyz = PYZ(a.pure, a.zipped_data,
cipher=block_cipher)
splash = Splash('logo.png',
binaries=a.binaries,
datas=a.datas)
exe = EXE(pyz,
splash,
a.scripts,
[],
exclude_binaries=True,
@@ -59,13 +68,16 @@ exe = EXE(pyz,
bootloader_ignore_signals=False,
contents_directory='.',
strip=False,
upx=True,
upx=False,
console=False,
icon='icon.ico')
coll = COLLECT(exe,
a.binaries,
a.zipfiles,
a.datas,
splash.binaries,
strip=False,
upx=True,
upx_exclude=[],

BIN
build/win/logo.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

View File

@@ -1,14 +1,20 @@
#!/usr/bin/env python3
import os
import ssl
import sys
if __name__ == "__main__":
from multiprocessing import freeze_support
if hasattr(sys, "_MEIPASS"):
import os
import pyi_splash
import ssl
from multiprocessing import freeze_support
os.environ["PYTHONUTF8"] = "1"
# TODO There needs to be a more "correct" way.
ssl._create_default_https_context = ssl._create_unverified_context
freeze_support()
pyi_splash.close()
from app.ui.main import start_app
os.environ["PYTHONUTF8"] = "1"
# TODO There needs to be a more "correct" way.
ssl._create_default_https_context = ssl._create_unverified_context
freeze_support()
start_app()