Compare commits

...

4 Commits

Author SHA1 Message Date
Nut.andor
0b6580e7c9 whatsNew 69 v0.8.4.1 2023-01-31 21:14:03 +01:00
Nut.andor
6efb2b3860 unneeded files bloats the apk 2023-01-31 21:14:03 +01:00
Nut.andor
82b904d176 target 31 needed for Google Play + export 2023-01-30 22:04:10 +01:00
Nut.andor
111aca868c hotfix 2023-01-29 22:40:51 +01:00
5 changed files with 16 additions and 14 deletions

View File

@@ -1,13 +1,13 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 30
compileSdkVersion 31
buildToolsVersion "30.0.3"
defaultConfig {
applicationId "com.gpl.rpg.AndorsTrail"
minSdkVersion 14
targetSdkVersion 30
targetSdkVersion 31
}
buildTypes {

View File

@@ -3,15 +3,11 @@
<manifest
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gpl.rpg.AndorsTrail"
android:versionCode="68"
android:versionName="0.8.4"
android:versionCode="69"
android:versionName="0.8.4.1"
android:installLocation="auto"
>
<uses-sdk
android:minSdkVersion="4"
android:targetSdkVersion="30"
/>
<supports-screens
android:smallScreens="true"
android:normalScreens="true"
@@ -37,6 +33,7 @@
>
<activity
android:name="com.gpl.rpg.AndorsTrail.activity.StartScreenActivity"
android:exported="true"
android:clearTaskOnLaunch="true"
>
<intent-filter>

View File

@@ -28,11 +28,11 @@ public final class AndorsTrailApplication extends Application {
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.4";
public static final String CURRENT_VERSION_DISPLAY = "0.8.4.1";
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 : 68;
public static final int CURRENT_VERSION = DEVELOPMENT_INCOMPATIBLE_SAVEGAMES ? DEVELOPMENT_INCOMPATIBLE_SAVEGAME_VERSION : 69;
private final AndorsTrailPreferences preferences = new AndorsTrailPreferences();
private WorldContext world = new WorldContext();

View File

@@ -1,7 +1,7 @@
I put both (release notes + forum announcement) into this source, so it will be easier to maintain them parallel:
APK 68 (0.8.4) Mostly harmless
APK 69 (0.8.4.1) //Mostly harmless
Release notes
=============
@@ -13,7 +13,7 @@ Forum announcement //2023-01-29
==================
Hello fellow adventurers,
Here is the actual release v0.8.4 with bugfixes, translations and little enhancements:
Here is the actual release v0.8.4.1 with bugfixes, translations and little enhancements:
[list]The export/import is enhanced: The worldmap, which consists of many small png files, is handled now as a zip file. This is more convenient and much quicker.[/list]
@@ -23,7 +23,7 @@ Here is the actual release v0.8.4 with bugfixes, translations and little enhance
[list]And as always we actualized the translations[/list]
Here is is the link on our server: [url]https://andorstrail.com/static/AndorsTrail_v0.8.4.apk[/url]
Here is is the link on our server: [url]https://andorstrail.com/static/AndorsTrail_v0.8.4.1.apk[/url]
Google Play, F-Droid and Itch will follow soon.
Have fun!
@@ -31,6 +31,9 @@ Have fun!
APK 68 (0.8.4) //Mostly harmless (unneeded files - immediatly replaced by 69)
APK 67 (0.8.3) //Haunted Forest 2022-11-04
Release notes (Google/Itch)

View File

@@ -504,6 +504,7 @@
<string name="loadsave_importing_savegames">Importing Savegames</string>
<string name="loadsave_import_save_successfull">Import successful</string>
<string name="loadsave_import_save_unsuccessfull">Import unsuccessful</string>
<string name="loadsave_import_save_error_unknown">- obsolete -</string>
<string name="loadsave_import_error_unknown">An unknown error occurred while importing.</string>
<string name="loadsave_import_overwrite_confirmation_title">Overwrite Existing Slot?</string>
@@ -519,6 +520,7 @@
<string name="loadsave_import_worldmap_successfull">Import of Worldmap successful</string>
<string name="loadsave_import_worldmap_unsuccessfull">Import of Worldmap unsuccessful</string>
<string name="loadsave_import_worldmap_wrong_file">Are you sure you selected a worldmap? Please select the zip file called \'worldmap.zip\' that was exported into your export location.</string>
<string name="loadsave_import_worldmap_wrong_directory">- obsolete -</string>
<string name="iteminfo_displaytypes_ordinary">Ordinary</string>
<string name="iteminfo_displaytypes_quest">Quest item</string>