Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
![version](https://img.shields.io/badge/Version-1.9.0-white.svg)
![version](https://img.shields.io/badge/Version-1.9.1-white.svg)
![license](https://img.shields.io/badge/License-GPL%20v3-blue.svg)
![python](https://img.shields.io/badge/Python-3.14t-green.svg)

Expand Down
2 changes: 1 addition & 1 deletion dev/windows_installer.iss
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@

#define MyAppName "AppUsageGUI"
#define MyAppPublisher "Adam Blair-Smith"
#define MyAppVersion "1.9.0"
#define MyAppVersion "1.9.1"
#define MyAppURL "https://github.com/Adam-Color/AppUsageGUI"
#define MyAppExeName "AppUsageGUI.exe"
#define MyInstallerName "AppUsageGUI_v" + MyAppVersion + "_WINDOWS_setup"
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,4 @@ pytweening==1.2.0
rubicon-objc==0.5.0
pyinstaller==6.19.0
requests==2.33.0
pillow==12.1.1
pillow==12.2.0
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@
'psutil==5.9.8',
'pynput==1.8.1',
'requests==2.33.0',
'pillow==12.1.1',
'pillow==12.2.0',
'pywinauto==0.6.8',
'MouseInfo==0.1.3',
'PyGetWindow==0.0.9',
Expand Down
2 changes: 1 addition & 1 deletion src/_version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "1.9.0"
__version__ = "1.9.1"
2 changes: 2 additions & 0 deletions src/core/utils/app_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,8 @@ def update():
webbrowser.open_new_tab("https://github.com/adam-color/AppUsageGUI/releases/latest")
messagebox.showinfo("Update", "Your platform is not officially supported.")
elif download_url is not None:
import time
webbrowser.open_new_tab(download_url)
webbrowser.open_new_tab("https://github.com/adam-color/AppUsageGUI/releases/latest")
time.sleep(0.1) # needs to sleep to allow the browser to open before showing the message box
messagebox.showinfo("Update", "Please install the latest version after it downloads,\nautomatic updates are not yet available.\n\nPlease close AppUsageGUI after you download the new installer.")
Loading