File tree 3 files changed +11
-2
lines changed
3 files changed +11
-2
lines changed Original file line number Diff line number Diff line change
1
+ # v0.10.1
2
+ ## Fix
3
+ - Program no longer crashes if offline when checking for updates
4
+
1
5
# v0.10.0
2
6
## change
3
7
- Reading NPC dialog boxes must now be done manually with the ` o ` key. The program will till you if there is a dialog box to read
Original file line number Diff line number Diff line change 1
- 0.10.0
1
+ 0.10.1
Original file line number Diff line number Diff line change @@ -1509,7 +1509,12 @@ def run(self):
1509
1509
1510
1510
def version_check (config , audio_system ):
1511
1511
current_version = semantic_version .Version (read_version ())
1512
- resp = requests .get ("https://raw.githubusercontent.com/gurgalex/SiralimAccess/main/VERSION" )
1512
+ try :
1513
+ resp = requests .get ("https://raw.githubusercontent.com/gurgalex/SiralimAccess/main/VERSION" )
1514
+ except requests .exceptions .ConnectionError as e :
1515
+ root .info ("skipping version check due to connection error" )
1516
+ return
1517
+
1513
1518
if resp .status_code != 200 :
1514
1519
return
1515
1520
latest_version = semantic_version .Version (resp .text )
You can’t perform that action at this time.
0 commit comments