Skip to content

Commit 75f5dc6

Browse files
author
Turnermator13
committed
bump version to v2.1.2 to try fix updater issue with 3 digit versions :/
1 parent d6242a7 commit 75f5dc6

File tree

12 files changed

+12
-7
lines changed

12 files changed

+12
-7
lines changed

ArduinoDash/ArduinoDash.ino

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#define STB 9
1212

1313

14-
PROGMEM prog_uchar VERSION[] = {2, 1, 0, 1};
14+
PROGMEM prog_uchar VERSION[] = {2, 1, 0, 2};
1515
PROGMEM prog_uint16_t ledsLong[2][17] = {{0, 1, 3, 7, 15, 31, 63, 127, 255, 256, 768, 1792, 3840, 7936, 7968, 8032, 8160}, {0, 1, 3, 7, 15, 31, 63, 127, 255, 1, 3, 7, 15, 31, 8223, 24607, 57375}};
1616
PROGMEM prog_uint16_t ledsShort[2][9] = {{0, 256, 768, 1792, 3840, 7936, 7968, 8032, 8160}, {0, 1, 3, 7, 15, 31, 8223, 24607, 57375}};
1717

acSLI/acSLIApp/app.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,8 @@
1111
import acSLIApp.utils as Utils
1212

1313
#################
14-
Version = "2.1.1"
15-
ArduinoVersion = "2.1.1"
14+
Version = "2.1.2"
15+
ArduinoVersion = "2.1.2"
1616
#################
1717

1818

acSLI/acSLIApp/updater.py

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ class Updater:
2121
currVersion = 0
2222
cV = 0
2323
remoteVersion = 0
24+
rV = 0
2425
reqArduinoUpdate = 0
2526
changeLog = 0
2627
statsURL = 0
@@ -54,8 +55,12 @@ def __init__(self, currVersion):
5455
self.updaterError = True
5556
logStats("Login")
5657

58+
self.rV = "".join(self.remoteVersion.split("."))
59+
if len(self.rV) < 4:
60+
self.rV = self.rV[0] + self.rV[1] + "0" + self.rV[2]
61+
5762
if (self.remoteVersion != 0) and (self.remoteVersion != Config.instance.cfgRemoteVersion)\
58-
and (int("".join(self.remoteVersion.split("."))) > int(self.cV)):
63+
and (int(self.rV) > int(self.cV)):
5964
self.isOpen = True
6065
if self.reqArduinoUpdate == "1":
6166
Log.info("New acSLI Version Available: v" + self.remoteVersion + ". Requires Arduino Sketch Update")

iRacingSLI/iRacingSLI.exe

0 Bytes
Binary file not shown.

iRacingSLI/src/iRacingSLI.v12.suo

0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.
0 Bytes
Binary file not shown.

iRacingSLI/src/iRacingSLI/iRacingSLI.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -33,8 +33,8 @@ public partial class iRacingSLI : Form
3333
private Boolean sendTime;
3434
private Boolean sendTimeReset;
3535

36-
private String Version = "2.1.1";
37-
private String ArduinoVersion = "2.1.1";
36+
private String Version = "2.1.2";
37+
private String ArduinoVersion = "2.1.2";
3838

3939
public iRacingSLI()
4040
{
Binary file not shown.
0 Bytes
Binary file not shown.

0 commit comments

Comments
 (0)