diff --git a/wingetui/__init__.py b/wingetui/__init__.py index 04816a74e..0dd25cc40 100644 --- a/wingetui/__init__.py +++ b/wingetui/__init__.py @@ -452,7 +452,7 @@ def updateIfPossible(self): while not globals.canUpdate: time.sleep(0.1) if not getSettings("DisableAutoUpdateWingetUI"): - subprocess.run('start /B "" "{0}" /verysilent'.format(filename), shell=True) + subprocess.run('start /B "" "{0}" /silent'.format(filename), shell=True) else: print("🟠 Hash not ok") print("🟠 File hash: ", hashlib.sha256(datatowrite).hexdigest()) diff --git a/wingetui/tools.py b/wingetui/tools.py index 28ab595a9..711df7056 100644 --- a/wingetui/tools.py +++ b/wingetui/tools.py @@ -9,6 +9,7 @@ from PySide6.QtWidgets import * from win32mica import ApplyMica, MICAMODE from urllib.request import urlopen +from versions import * import globals @@ -38,8 +39,6 @@ def report(exception) -> None: # Exception reporter print(f"🔴 Note this traceback was caught by reporter and has been added to the log ({exception})") settingsCache = {} -version = 1.41 -versionName = "1.4.2" installersWidget = None updatesAvailable = False diff --git a/wingetui/versions.py b/wingetui/versions.py new file mode 100644 index 000000000..5030016d0 --- /dev/null +++ b/wingetui/versions.py @@ -0,0 +1,2 @@ +version = 1.429 +versionName = "1.4.3-beta" \ No newline at end of file