Compare commits

..

1 Commits

Author SHA1 Message Date
Chriz76
08a54c5635 Typo 2020-01-18 12:59:32 +01:00
3 changed files with 4 additions and 4 deletions

View File

@@ -3,7 +3,7 @@
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gpl.rpg.AndorsTrail"
android:versionCode="50"
android:versionCode="49"
android:versionName="0.7.8"
android:installLocation="auto"
>

View File

@@ -371,7 +371,7 @@
<string name="preferences_language_default">System language</string>
<string name="preferences_language">Language</string>
<string name="preferences_language_description">Select the language. English is used if the system language is not available or content has not ben translated. (Requires restart)</string>
<string name="preferences_language_description">Select the language. English is used if the system language is not available or content has not been translated. (Requires restart)</string>
<string name="inventory_assign">Assign quick slot</string>
<string name="inventory_selectitem">Select item to assign</string>
@@ -744,4 +744,4 @@ Every skill level increases the attack chance of weapons with %1$d %% of their o
<string name="storage_permissions_mandatory">Access to storage is mandatory for Andor\'s Trail to handle saved games and worldmap. Closing Andor\'s Trail.</string>
</resources>
</resources>

View File

@@ -30,7 +30,7 @@ public final class AndorsTrailApplication extends Application {
public static final boolean DEVELOPMENT_DEBUGMESSAGES = false;
public static final boolean DEVELOPMENT_INCOMPATIBLE_SAVEGAMES = DEVELOPMENT_DEBUGRESOURCES || DEVELOPMENT_DEBUGBUTTONS || DEVELOPMENT_FASTSPEED;
public static final int DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION = 999;
public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION : 50;
public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION : 49;
public static final String CURRENT_VERSION_DISPLAY = "0.7.8";
public static final boolean IS_RELEASE_VERSION = !CURRENT_VERSION_DISPLAY.matches(".*[a-d].*");