Set version to current development
This commit is contained in:
@@ -1 +1 @@
|
||||
version=0.0.3
|
||||
version=0.0.4-dev
|
||||
Binary file not shown.
Binary file not shown.
Binary file not shown.
BIN
Binary file not shown.
Binary file not shown.
+1
-1
@@ -15,7 +15,7 @@ plugins {
|
||||
}
|
||||
|
||||
group 'games.rednblack'
|
||||
version '0.0.3'
|
||||
version '0.0.4'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
+1
-1
@@ -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
|
||||
Submodule h2d-libgdx-spine-extension updated: 48e4600417...a08045fad0
+1
-1
Submodule hyperlap2d-common-api updated: f4a9933049...0ff9a1d30d
Submodule hyperlap2d-runtime-libgdx updated: 532bc829f5...8419f45d65
@@ -3,7 +3,7 @@ plugins {
|
||||
}
|
||||
|
||||
group 'games.rednblack'
|
||||
version '0.0.3'
|
||||
version '0.0.4'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
@@ -3,7 +3,7 @@ plugins {
|
||||
}
|
||||
|
||||
group 'games.rednblack'
|
||||
version '0.0.3'
|
||||
version '0.0.4'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
@@ -3,7 +3,7 @@ plugins {
|
||||
}
|
||||
|
||||
group 'games.rednblack'
|
||||
version '0.0.3'
|
||||
version '0.0.4'
|
||||
|
||||
repositories {
|
||||
mavenCentral()
|
||||
|
||||
@@ -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?",
|
||||
|
||||
Reference in New Issue
Block a user