v0.7.2d: manifest commit

This commit is contained in:
Evan Debenham 2019-04-27 18:22:45 -04:00
parent 971e421fa1
commit e074a47518
2 changed files with 12 additions and 3 deletions

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="339"
android:versionName="0.7.2c"
android:versionCode="340"
android:versionName="0.7.2d"
android:installLocation="auto">
<uses-feature

View File

@ -150,10 +150,19 @@ public class ChangesScene extends PixelScene {
changes.hardlight( Window.TITLE_COLOR );
infos.add(changes);
changes = new ChangeInfo("", false, null);
changes = new ChangeInfo("0.7.2d", 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.2c):\n" +
"_-_ Hourglass not updating charges correctly in some cases\n" +
"_-_ Corrupted enemies never dropping loot\n\n" +
"Fixed (existed before 0.7.2):\n" +
"_-_ Cloak of Shadows very rarely consuming more charges than it should\n" +
"_-_ Assassin's blink not working on enemies standing on traps\n" +
"_-_ Glyph of stone blocking an incorrect amount of damage (too low) in some cases"));
changes = new ChangeInfo("v0.7.2c", false, null);
changes.hardlight( Window.TITLE_COLOR );
infos.add(changes);