We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ff084e0 commit 8892ef4Copy full SHA for 8892ef4
1 file changed
updater.py
@@ -133,6 +133,9 @@ def get_online_version_and_url():
133
break
134
135
return online_version, download_url
136
+ except requests.exceptions.RequestException as e:
137
+ logging.error(f"Couldn't connect to the internet: {e}")
138
+ terminate()
139
except Exception as e:
140
logging.error(f"Failed to get online version and url: {e}")
141
messagebox.showerror("Error", f"Failed to get online version and url: {e}")
@@ -194,6 +197,6 @@ def main():
194
197
195
198
196
199
if __name__ == "__main__":
- VERSION = 1.3
200
+ VERSION = 1.4
201
own_update_manager()
202
main()
0 commit comments