v0.6.3a: manifest commit

This commit is contained in:
Evan Debenham 2018-02-19 17:45:39 -05:00
parent 4b9fd16498
commit 1d4e7cca26
4 changed files with 25 additions and 8 deletions

View File

@ -5,8 +5,8 @@ android {
buildToolsVersion "26.0.2"
defaultConfig {
resConfigs "en", "cs", "tr", "ca", "ko", "pl", "it",
"eo", "ru", "zh", "de", "fr", "es", "pt", "fi", "hu", "in"
resConfigs "en_US", "cs", "tr", "ca", "ko", "pl", "it",
"eo", "ru", "zh_CN", "de", "fr", "es", "pt", "fi", "hu", "in"
}
buildTypes {

View File

@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shatteredpixel.shatteredpixeldungeon"
android:versionCode="241"
android:versionName="0.6.3"
android:versionCode="242"
android:versionName="0.6.3a"
android:installLocation="auto">
<uses-sdk

View File

@ -131,8 +131,25 @@ public class ChangesScene extends PixelScene {
//**********************
// v0.6.3
//**********************
ChangeInfo changes = new ChangeInfo("v0.6.3", true, "");
ChangeInfo changes = new ChangeInfo("v0.6.3a", true, "");
changes.hardlight(Window.TITLE_COLOR);
infos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(this, "misc"),
"_-_ Reduced burning damage against high health enemies\n\n" +
"_-_ Reduced game install size by ~2.5%"));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
"Fixed (caused by 0.6.3):\n" +
"_-_ Health potions being craftable with pharmacophobia enabled\n" +
"_-_ Ring of sharpshooting increasing damage a bit more than displayed\n" +
"_-_ Various rare crashes"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
"Updated Translations"));
changes = new ChangeInfo("v0.6.3", true, "");
changes.hardlight(Window.TITLE_COLOR);
infos.add(changes);

View File

@ -136,8 +136,8 @@ public class WelcomeScene extends PixelScene {
//TODO: change the messages here in accordance with the type of patch.
message = Messages.get(this, "patch_intro");
message += "\n\n" + Messages.get(this, "patch_bugfixes");
//message += "\n" + Messages.get(this, "patch_translations");
//message += "\n" + Messages.get(this, "patch_balance");
message += "\n" + Messages.get(this, "patch_translations");
message += "\n" + Messages.get(this, "patch_balance");
}
} else {