Version parse fix
This commit is contained in:
@@ -52,7 +52,7 @@ public class Version{
|
|||||||
|
|
||||||
int dot = str.indexOf('.');
|
int dot = str.indexOf('.');
|
||||||
if(dot != -1){
|
if(dot != -1){
|
||||||
int major = Strings.parseInt(str.substring(0, dot)), minor = Strings.parseInt(str.substring(dot + 1));
|
int major = Strings.parseInt(str.substring(0, dot), 0), minor = Strings.parseInt(str.substring(dot + 1), 0);
|
||||||
return build >= major && revision >= minor;
|
return build >= major && revision >= minor;
|
||||||
}else{
|
}else{
|
||||||
return build >= Strings.parseInt(str, 0);
|
return build >= Strings.parseInt(str, 0);
|
||||||
|
|||||||
10
fastlane/metadata/android/en-US/changelogs/29795.txt
Normal file
10
fastlane/metadata/android/en-US/changelogs/29795.txt
Normal file
@@ -0,0 +1,10 @@
|
|||||||
|
[This is a truncated changelog, see Github for full notes]
|
||||||
|
- Fixed Quad AI
|
||||||
|
- Fixed crash in conveyor upgrade pathing
|
||||||
|
- Fixed other various crashes
|
||||||
|
- Made payload pickups prioritize units in blocks instead of the blocks themselves
|
||||||
|
- Increased foreshadow coolant effectiveness, but slightly decreased rotation speed
|
||||||
|
- Improved space skybox scaling
|
||||||
|
- Added building damage stats to bullets
|
||||||
|
- Added WIP mod browser for GitHub mods
|
||||||
|
- Added bridge link preview
|
||||||
Reference in New Issue
Block a user