Skip to content

Commit

Permalink
v1.5.2108
Browse files Browse the repository at this point in the history
  • Loading branch information
MrStahlfelge committed May 1, 2021
1 parent 4aa0d5d commit 26c915a
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions android/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -30,8 +30,8 @@ android {
applicationId "org.opensource.lightblocks"
minSdkVersion 16
targetSdkVersion 29
versionCode 2107
versionName "1.5.2107"
versionCode 2108
versionName "1.5.2108"
}

flavorDimensions "type"
Expand Down
2 changes: 1 addition & 1 deletion core/src/de/golfgl/lightblocks/LightBlocksGame.java
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ public class LightBlocksGame extends Game implements IGameServiceListener, IPush
public static final String SOURCECODE_URL = "https://github.com/MrStahlfelge/lightblocks/";
public static final String CONTROLLER_RECOMMENDATION_URL = "https://www.golfgl.de/lightblocks/#controller";
// An den gleichen Eintrag im AndroidManifest und robovm.properties denken!!!
public static final int GAME_VERSIONNUMBER = 2107;
public static final int GAME_VERSIONNUMBER = 2108;
public static final String GAME_VERSIONSTRING = "1.5." + GAME_VERSIONNUMBER;
// Abstand für Git
// auch dran denken das data-Verzeichnis beim release wegzunehmen!
Expand Down
4 changes: 2 additions & 2 deletions ios/robovm.properties
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
app.id=org.opensource.lightblocks
app.mainclass=de.golfgl.lightblocks.IOSLauncher
app.executable=IOSLauncher
app.version=1.5.2107
app.build=2107
app.version=1.5.2108
app.build=2108
app.name=Falling Lightblocks
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
import de.golfgl.lightblocks.server.model.ServerInfo;

public class LightblocksServer extends WebSocketServer implements ApplicationListener {
public static final int SERVER_VERSION = 2107; // reported to the clients, don't mess with it
public static final int SERVER_VERSION = 2108; // reported to the clients, don't mess with it
public static final int STATS_AGGREGATION_TIME_HRS = 24;

final ServerConfiguration serverConfig;
Expand Down

0 comments on commit 26c915a

Please sign in to comment.