prepare v0716 step1

This commit is contained in:
Nut.andor
2022-02-15 23:32:51 +01:00
parent 18f7acb1d3
commit 7538593036
5 changed files with 50 additions and 10 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.16beta"
android:installLocation="auto"
>
<uses-sdk

View File

@@ -1,5 +1,41 @@
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%)
I tried to follow up
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 and Japanese would be 100% now, if we hadn't add the new quest.
Thanks to all the translators!
I once tried to keep track of who worked on the translations. However, this is a time-consuming work, so I gave up. If you think your name is missing in the credits, just contact us (e.g. in the forum, discord or via PM)
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

@@ -140,19 +140,19 @@
<string-array name="preferences_language">
<item>@string/preferences_language_default</item>
<item>English</item>
<item>čeština (62%)</item>
<item>čeština (62->77%)</item>
<item>Deutsch (91%)</item>
<item>Español (90%)</item>
<item>Française (86%)</item>
<item>Française (86->89%)</item>
<item>Italiano (90%)</item>
<item>Magyar (32%)</item>
<item>Polski (97%)</item>
<item>Português (83%)</item>
<item>Português Brasil (93%)</item>
<item>Русский язык (90%)</item>
<item>Türkçe (39%)</item>
<item>日本人 (91%)</item>
<item>中文 (68%)</item>
<item>Português Brasil (93->95%)</item>
<item>Русский язык (90->91%)</item>
<item>Türkçe (39->41%)</item>
<item>日本人 (91->100%)</item>
<item>中文 (68->100%)</item>
</string-array>
<!-- see AndorsTrailApplication.localeForLanguageTag for allowed formats -->

View File

@@ -4,7 +4,7 @@
<!-- Do not translate this. -->
<string name="about_copyright">Copyright © 20102013 Oskar Wiksten&lt;br /&gt;
Copyright © 20132021 The Andor\'s Trail development team&lt;br /&gt;
Copyright © 20132022 The Andor\'s Trail development team&lt;br /&gt;
&lt;br /&gt;</string>
<string name="about_authors"><![CDATA[
<h4>Created &amp; originally programmed by Oskar Wiksten</h4>
@@ -19,6 +19,7 @@
• Christian Zink <b>*</b><br/>
• Daniel-Ømicrón Rodríguez García (Omicronrg9) <b>*</b><br/>
• Nathan Watson <b>*</b><br/>
• Draze <b>*</b><br/>
<b>*</b> Currently active on team<br/>
<br/>
<b>Development tools (Andor\'s Trail Content Studio) by</b><br/>
@@ -50,6 +51,7 @@
• Daniel-Ømicrón Rodríguez García (Omicronrg9)<br/>
• Moritz Arendt-Roth (Moerit)<br/>
• Antison<br/>
• Draze<br/>
<br/>
<b>Translations</b><br/>
• Russian translation by Dreamer..., e.solodookhin, shell.andor, konstmih, istasman, Aleksey Kabanov, Alexander Zubok, Paul Sulemenkov, dromoz, avatar232 and Mingun<br/>
@@ -75,6 +77,8 @@
• Catalan translation by David García Garzón (vokimon)<br/>
• Filipino translation by Elytra<br/>
<br/>
(If you miss your name here, please contact us)<br/>
<br/>
<b>Graphics</b><br/>
• <a href="http://pixeljoint.com/p/101133.htm">Original hero sprites by Maksiu</a><br/>
• <a href="http://redknight91.deviantart.com/art/Arena-Game-Sprites-154661559">Hero graphics by RedKnight91</a><br/>

View File

@@ -28,7 +28,7 @@ public final class AndorsTrailApplication extends Application {
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 String CURRENT_VERSION_DISPLAY = "0.7.16beta";
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;