Skip to content

Commit

Permalink
Improvements to the installer
Browse files Browse the repository at this point in the history
  • Loading branch information
marticliment committed Oct 7, 2022
1 parent 85eb6a1 commit 16899e6
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion wingetui/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -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())
Expand Down
3 changes: 1 addition & 2 deletions wingetui/tools.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@
from PySide6.QtWidgets import *
from win32mica import ApplyMica, MICAMODE
from urllib.request import urlopen
from versions import *

import globals

Expand Down Expand Up @@ -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

Expand Down
2 changes: 2 additions & 0 deletions wingetui/versions.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
version = 1.429
versionName = "1.4.3-beta"

0 comments on commit 16899e6

Please sign in to comment.