From 0b2dbe53e392246b272e4be6639125fff83116de Mon Sep 17 00:00:00 2001 From: "Nut.andor" Date: Mon, 17 Jun 2024 20:51:52 +0200 Subject: [PATCH] Next version numbers --- AndorsTrail/app/src/main/AndroidManifest.xml | 4 ++-- .../com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java | 8 ++++---- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/AndorsTrail/app/src/main/AndroidManifest.xml b/AndorsTrail/app/src/main/AndroidManifest.xml index edca4cd6e..c64f75f85 100644 --- a/AndorsTrail/app/src/main/AndroidManifest.xml +++ b/AndorsTrail/app/src/main/AndroidManifest.xml @@ -3,8 +3,8 @@ diff --git a/AndorsTrail/app/src/main/java/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java b/AndorsTrail/app/src/main/java/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java index 33be20ec3..c44dcca2c 100644 --- a/AndorsTrail/app/src/main/java/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java +++ b/AndorsTrail/app/src/main/java/com/gpl/rpg/AndorsTrail/AndorsTrailApplication.java @@ -26,13 +26,13 @@ public final class AndorsTrailApplication extends Application { public static final boolean DEVELOPMENT_FORCE_CONTINUEGAME = false; public static final boolean DEVELOPMENT_DEBUGBUTTONS = false; public static final boolean DEVELOPMENT_FASTSPEED = false; - public static final boolean DEVELOPMENT_VALIDATEDATA = false; - public static final boolean DEVELOPMENT_DEBUGMESSAGES = false; - public static final String CURRENT_VERSION_DISPLAY = "0.8.11"; + public static final boolean DEVELOPMENT_VALIDATEDATA = true; + public static final boolean DEVELOPMENT_DEBUGMESSAGES = true; + public static final String CURRENT_VERSION_DISPLAY = "0.8.12dev"; public static final boolean IS_RELEASE_VERSION = !CURRENT_VERSION_DISPLAY.matches(".*[a-d].*"); public static final boolean DEVELOPMENT_INCOMPATIBLE_SAVEGAMES = DEVELOPMENT_DEBUGRESOURCES || DEVELOPMENT_DEBUGBUTTONS || DEVELOPMENT_FASTSPEED || !IS_RELEASE_VERSION; public static final int DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION = 999; - public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION : 77; + public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION : 78; private final AndorsTrailPreferences preferences = new AndorsTrailPreferences(); private WorldContext world = new WorldContext();