Set version to current development

This commit is contained in:
fgnm
2020-11-22 09:31:08 +01:00
parent d33dfb1d6a
commit 72d8988558
16 changed files with 11 additions and 11 deletions
+1 -1
View File
@@ -1 +1 @@
version=0.0.3
version=0.0.4-dev
Binary file not shown.
Binary file not shown.
+1 -1
View File
@@ -15,7 +15,7 @@ plugins {
}
group 'games.rednblack'
version '0.0.3'
version '0.0.4'
repositories {
mavenCentral()
+1 -1
View File
@@ -3,6 +3,6 @@ gdxVersionBeta = 1.9.13-SNAPSHOT
box2dlightsVersion = 1.6-SNAPSHOT
ashleyVersion = 1.7.3
spineVersion = 3.8.55.1
visuiVersion = 1.4.7-SNAPSHOT
visuiVersion = 1.4.9-SNAPSHOT
typingLabelVersion = 1.2.0
shapedrawerVersion = 2.4.0
+1 -1
View File
@@ -3,7 +3,7 @@ plugins {
}
group 'games.rednblack'
version '0.0.3'
version '0.0.4'
repositories {
mavenCentral()
+1 -1
View File
@@ -3,7 +3,7 @@ plugins {
}
group 'games.rednblack'
version '0.0.3'
version '0.0.4'
repositories {
mavenCentral()
+1 -1
View File
@@ -3,7 +3,7 @@ plugins {
}
group 'games.rednblack'
version '0.0.3'
version '0.0.4'
repositories {
mavenCentral()
+1 -1
View File
@@ -3,7 +3,7 @@ plugins {
}
group 'games.rednblack'
version '0.0.3'
version '0.0.4'
ext {
pack = ["assets/textures", "assets/pack/", "tiled"]
@@ -57,7 +57,7 @@ public class SplashMediator extends Mediator<Object> {
json.setIgnoreUnknownFields(true);
GithubReleaseData jsonData = json.fromJson(GithubReleaseData.class, data);
int latestVer = Integer.parseInt(jsonData.tag_name.replace("v", "").replace(".", ""));
int currVer = Integer.parseInt(AppConfig.getInstance().version.replace(".", ""));
int currVer = Integer.parseInt(AppConfig.getInstance().version.replaceAll("[^0-9]", ""));
if (latestVer > currVer) {
boolean result = TinyFileDialogs.tinyfd_messageBox("New update found!",
"A new version of HyperLap2D has found, would you like to download it?",