feat(update): add transactional external updater

This commit is contained in:
chengma
2026-07-13 12:07:59 +08:00
parent 3ad9ffd239
commit bab2609a85
9 changed files with 578 additions and 2 deletions
+28
View File
@@ -0,0 +1,28 @@
# -*- mode: python ; coding: utf-8 -*-
a = Analysis(
["app/updater_entry.py"],
pathex=[],
binaries=[],
datas=[],
hiddenimports=[],
hookspath=[],
hooksconfig={},
runtime_hooks=[],
excludes=["PySide6"],
noarchive=False,
)
pyz = PYZ(a.pure)
exe = EXE(
pyz,
a.scripts,
a.binaries,
a.datas,
[],
name="cmshopee-updater",
debug=False,
bootloader_ignore_signals=False,
strip=False,
upx=True,
console=False,
)