Skip to content

Commit 24a2262

Browse files
committed
v0.7.0c: manifest commit
1 parent 9ac4ab1 commit 24a2262

File tree

2 files changed

+11
-4
lines changed

2 files changed

+11
-4
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="310"
5-
android:versionName="0.7.0b"
4+
android:versionCode="311"
5+
android:versionName="0.7.0c"
66
android:installLocation="auto">
77

88
<uses-feature

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

+9-2
Original file line numberDiff line numberDiff line change
@@ -148,7 +148,7 @@ public void onClick(float x, float y) {
148148
changes.hardlight( Window.TITLE_COLOR );
149149
infos.add(changes);
150150

151-
changes = new ChangeInfo("v0.7.0b", false, null);
151+
changes = new ChangeInfo("v0.7.0b & v0.7.0c", false, null);
152152
changes.hardlight( Window.TITLE_COLOR );
153153
infos.add(changes);
154154

@@ -164,6 +164,7 @@ public void onClick(float x, float y) {
164164
"_-_ Adjusted bone pile functionality to make it more clear that a spawning wraith means an item is cursed. Also fixed an exploit where items could be thrown into bone piles to check if they were cursed."));
165165

166166
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
167+
"v0.7.0b:\n" +
167168
"Fixed (Caused by v0.7.0):\n" +
168169
"_-_ Exotic items not being identified in rankings (will not fix old rankings)\n" +
169170
"_-_ Toolkit rarely being able to go above 100% charge\n" +
@@ -172,7 +173,13 @@ public void onClick(float x, float y) {
172173
"_-_ Bolas incorrectly requiring 15 strength\n" +
173174
"_-_ Non-heroes being able to use reach weapons through walls\n" +
174175
"_-_ Antimagic glyph applying to more effects when used by the sad ghost\n" +
175-
"_-_ Some items not being known as uncursed when sold from shops"));
176+
"_-_ Some items not being known as uncursed when sold from shops\n\n" +
177+
"v0.7.0c:\n" +
178+
"Fixed (Caused by v0.7.0):\n" +
179+
"_-_ Non-heroes not using reach weapons properly\n\n" +
180+
"Fixed (Existed before v0.7.0):\n" +
181+
"_-_ Obfuscation glyph not improving every upgrade\n" +
182+
"_-_ Magical sleep rarely cancelling paralysis"));
176183

177184
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
178185
"Updated Translations"));

0 commit comments

Comments
 (0)