Skip to content

Commit a7ae993

Browse files
author
Turnermator13
committed
try extended updater functions again
1 parent 88b6a6d commit a7ae993

File tree

5 files changed

+10
-9
lines changed

5 files changed

+10
-9
lines changed

Changelog.txt

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
Arduino Racing Dash ChangeLog
22
--------------------
33

4+
v2.0.11:
5+
Try extended updater functions now idna errors are fixed
6+
47
v2.0.10:
58
Compatibility Fixes
69
Added lapOffset config option under advanced. Is a static value added to the lap count. (by default set to 0 which displays laps COMPLETED, set to 1 to show current lap number)

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
##Arduino Racing Dashboard
2-
**Latest Version:** v2.0.9 - Tested for Asseto Corsa v1.0 RC
2+
**Latest Version:** v2.0.11 - Tested for Asseto Corsa v1.0 RC
33

44
Dashboard code for TM1638 module linked to an Arduino, support for Asseto Corsa and iRacing currently
55

acSLI/acSLIApp/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@
1010
import acSLIApp.utils as Utils
1111

1212
#################
13-
Version = "2.0.10"
13+
Version = "2.0.11"
1414
ArduinoVersion = "2.0.7"
1515
#################
1616

acSLI/acSLIApp/updater.py

Lines changed: 4 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Updater:
2222
remoteVersion = 0
2323
reqArduinoUpdate = 0
2424
changeLog = 0
25-
statsURL = 0
25+
statsURL = "/Gkbl4Z"
2626

2727
lblVersionTxt = 0
2828
lblLog = 0
@@ -69,18 +69,16 @@ def __init__(self, currVersion):
6969
.setSize(360, 10).setAlign("center").setFontSize(20).setColor(Utils.rgb(Utils.colours["red"]))
7070
self.lblLog = Label(self.appWindow.app, self.changeLog, 20, 60)\
7171
.setSize(360, 10).setAlign("center").setColor(Utils.rgb(Utils.colours["green"]))
72-
#self.logStats(currVersion)
72+
self.logStats(currVersion)
7373
else:
74-
#self.logStats(currVersion)
74+
self.logStats(currVersion)
7575
if self.updaterError:
7676
Log.info("Updater Encounter an Error. Version Check Incomplete")
7777
elif Config.instance.cfgEnableUpdater == 1:
7878
Log.info("Running Latest Version (v%s)" % self.remoteVersion)
7979

80-
#Logs basic version stats to goo.gl analytics, no personal information saved and no information downloaded (currently disabled)
80+
#Logs basic version stats to goo.gl analytics, no personal information saved and no information downloaded
8181
def logStats(self, version):
82-
import encodings.ascii
83-
import encodings.idna
8482
if Config.instance.cfgSendStats == 1:
8583
try:
8684
h1 = "Mozilla/5.0 (Windows NT 6.1; WOW64) AppleWebKit/1.0 (KHTML, like Gecko) Login/1.0"

version.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
2.0.10|0|Compatibility Fixes, lapOffset Added
1+
2.0.11|0|Compatibility Fixes, lapOffset Added

0 commit comments

Comments
 (0)