preparation of next release

This commit is contained in:
Nut.andor
2022-02-13 16:53:30 +01:00
parent 18f7acb1d3
commit ee2d6258d3
3 changed files with 36 additions and 5 deletions

View File

@@ -4,7 +4,7 @@
xmlns:android="http://schemas.android.com/apk/res/android"
package="com.gpl.rpg.AndorsTrail"
android:versionCode="63"
android:versionName="0.7.16dev"
android:versionName="0.7.16"
android:installLocation="auto"
>
<uses-sdk

View File

@@ -1,5 +1,36 @@
I put both (release notes + forum announcement) into this source, so it will be easier to maintain them parallel:
APK 63 (0.7.16) //Delivery
Release notes
=============
* New quest 'Delivery'
* Fix of Killed-by-Kamelio bug, postman bug and typos
* Translations actualized (Chinese 99%)
Forum announcement //2022-02-20
==================
Hello fellow adventurers,
here is a new Andor's Trail release! 8-)
We have a new quest 'Delivery' made by Draze (actually his first - we will see more of him in coming releases. Thank you Draze for your hard work! :)).
Translations are actualized.
Chinese would be 100% now if we hadn't add the new quest - thanks to the translators!
And there are some fixes:
- postman fix
- Killed by Kamelio could block quest progress
- Some typos
Here is the link to the productive version: https://andorstrail.com/static/AndorsTrail_v0.7.16.apk
(Google Play will follow in a few days, unfortunately we still can't provide a version for F-droid)
APK 62 (0.7.15) //just fixes+translations
Release notes

View File

@@ -24,11 +24,11 @@ public final class AndorsTrailApplication extends Application {
public static final boolean DEVELOPMENT_DEBUGRESOURCES = false;
public static final boolean DEVELOPMENT_FORCE_STARTNEWGAME = false;
public static final boolean DEVELOPMENT_FORCE_CONTINUEGAME = false;
public static final boolean DEVELOPMENT_DEBUGBUTTONS = true;
public static final boolean DEVELOPMENT_DEBUGBUTTONS = false;
public static final boolean DEVELOPMENT_FASTSPEED = false;
public static final boolean DEVELOPMENT_VALIDATEDATA = true;
public static final boolean DEVELOPMENT_DEBUGMESSAGES = true;
public static final String CURRENT_VERSION_DISPLAY = "0.7.16dev";
public static final boolean DEVELOPMENT_VALIDATEDATA = false;
public static final boolean DEVELOPMENT_DEBUGMESSAGES = false;
public static final String CURRENT_VERSION_DISPLAY = "0.7.16";
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;