пре-релизный exe

исправлена иконка (добавлена в exe)
исправлен баг: xml не сохранлся при нажатии del на клаве
This commit is contained in:
2025-07-10 19:01:42 +03:00
parent c44216a450
commit 0d59f88444
4 changed files with 218 additions and 214 deletions

View File

@@ -51,6 +51,10 @@ if USE_NUITKA:
# Формируем include-data-file только для DLL
include_data_files = [f"--include-data-file={str(path)}={name}" for name, path in LIBS.items() if path.exists()]
# Добавляем icon.ico как встроенный ресурс
if ICON_ICO_PATH.exists():
include_data_files.append(f"--include-data-file={ICON_ICO_PATH}=icon.ico")
cmd = [
"python", "-m", "nuitka",
"--standalone",