v0.7.2a: manifest commit
This commit is contained in:
parent
cdbbfd0f74
commit
32a65f5b2b
|
@ -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="333"
|
||||
android:versionName="0.7.2"
|
||||
android:versionCode="334"
|
||||
android:versionName="0.7.2a"
|
||||
android:installLocation="auto">
|
||||
|
||||
<uses-feature
|
||||
|
|
|
@ -150,6 +150,26 @@ public class ChangesScene extends PixelScene {
|
|||
changes.hardlight( Window.TITLE_COLOR );
|
||||
infos.add(changes);
|
||||
|
||||
changes = new ChangeInfo("", false, null);
|
||||
changes.hardlight( Window.TITLE_COLOR );
|
||||
infos.add(changes);
|
||||
|
||||
changes = new ChangeInfo("v0.7.2a", false, null);
|
||||
changes.hardlight( Window.TITLE_COLOR );
|
||||
infos.add(changes);
|
||||
|
||||
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
|
||||
"Fixed (caused by 0.7.2):\n" +
|
||||
"_-_ various rare crash bugs\n" +
|
||||
"_-_ elastic enchantment behaving oddly in some cases\n" +
|
||||
"_-_ various typos in the gamelog\n\n" +
|
||||
"Fixed (existed before 0.7.2):\n" +
|
||||
"_-_ Tengu spawning on top of other characters\n" +
|
||||
"_-_ Cloak of shadows only being usable from quickslots if it has 1 charge"));
|
||||
|
||||
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
|
||||
"Updated Translations"));
|
||||
|
||||
changes = new ChangeInfo(Messages.get(this, "new"), false, null);
|
||||
changes.hardlight( Window.TITLE_COLOR );
|
||||
infos.add(changes);
|
||||
|
|
|
@ -144,7 +144,7 @@ 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";
|
||||
message += "\n" + Messages.get(this, "patch_balance");
|
||||
//message += "\n" + Messages.get(this, "patch_balance");
|
||||
message += "\n" + Messages.get(this, "patch_bugfixes");
|
||||
message += "\n" + Messages.get(this, "patch_translations");
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user