Bump version number to v0.6.12 (versioncode 33).

This commit is contained in:
Oskar Wiksten
2012-10-28 10:13:13 +01:00
parent 42ecd2e47d
commit 745d0fec6a
2 changed files with 4 additions and 4 deletions

View File

@@ -3,8 +3,8 @@
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gpl.rpg.AndorsTrail"
android:versionCode="32"
android:versionName="0.6.12b2"
android:versionCode="33"
android:versionName="0.6.12"
android:installLocation="auto"
>
<uses-sdk

View File

@@ -20,8 +20,8 @@ public final class AndorsTrailApplication extends Application {
public static final boolean DEVELOPMENT_VALIDATEDATA = false;
public static final boolean DEVELOPMENT_DEBUGMESSAGES = false;
public static final boolean DEVELOPMENT_INCOMPATIBLE_SAVEGAMES = DEVELOPMENT_DEBUGRESOURCES;
public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? 999 : 32;
public static final String CURRENT_VERSION_DISPLAY = "0.6.12b2";
public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? 999 : 33;
public static final String CURRENT_VERSION_DISPLAY = "0.6.12";
public final WorldContext world = new WorldContext();
public final WorldSetup setup = new WorldSetup(world, this);