Skip to content

Commit e074a47

Browse files
committed
v0.7.2d: manifest commit
1 parent 971e421 commit e074a47

File tree

2 files changed

+12
-3
lines changed

2 files changed

+12
-3
lines changed

core/src/main/AndroidManifest.xml

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.shatteredpixel.shatteredpixeldungeon"
4-
android:versionCode="339"
5-
android:versionName="0.7.2c"
4+
android:versionCode="340"
5+
android:versionName="0.7.2d"
66
android:installLocation="auto">
77

88
<uses-feature

core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/ChangesScene.java

+10-1
Original file line numberDiff line numberDiff line change
@@ -150,10 +150,19 @@ public void onClick(float x, float y) {
150150
changes.hardlight( Window.TITLE_COLOR );
151151
infos.add(changes);
152152

153-
changes = new ChangeInfo("", false, null);
153+
changes = new ChangeInfo("0.7.2d", false, null);
154154
changes.hardlight( Window.TITLE_COLOR );
155155
infos.add(changes);
156156

157+
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
158+
"Fixed (caused by 0.7.2c):\n" +
159+
"_-_ Hourglass not updating charges correctly in some cases\n" +
160+
"_-_ Corrupted enemies never dropping loot\n\n" +
161+
"Fixed (existed before 0.7.2):\n" +
162+
"_-_ Cloak of Shadows very rarely consuming more charges than it should\n" +
163+
"_-_ Assassin's blink not working on enemies standing on traps\n" +
164+
"_-_ Glyph of stone blocking an incorrect amount of damage (too low) in some cases"));
165+
157166
changes = new ChangeInfo("v0.7.2c", false, null);
158167
changes.hardlight( Window.TITLE_COLOR );
159168
infos.add(changes);

0 commit comments

Comments
 (0)