Skip to content

Commit 8328622

Browse files
committed
v0.6.1b: manifest commit
1 parent 4c0f588 commit 8328622

File tree

2 files changed

+31
-4
lines changed

2 files changed

+31
-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="206"
5-
android:versionName="0.6.1a"
4+
android:versionCode="209"
5+
android:versionName="0.6.1b"
66
android:installLocation="auto">
77

88
<uses-permission android:name="android.permission.VIBRATE"/>

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

+29-2
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,34 @@ public void onClick(float x, float y) {
106106
};
107107
add( list );
108108

109-
ChangeInfo changes = new ChangeInfo("v0.6.1a", true, "");
109+
ChangeInfo changes = new ChangeInfo("v0.6.1b", true, "");
110+
changes.hardlight(Window.TITLE_COLOR);
111+
infos.add(changes);
112+
113+
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.CHEST, null), "Sprites",
114+
"Improved sprites for the following:\n" +
115+
"_-_ Chests & Mimics\n" +
116+
"_-_ Darts\n" +
117+
"_-_ Javelins\n" +
118+
"_-_ Tomahawks"));
119+
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
120+
"Fixed (caused by 0.6.1):\n" +
121+
"_-_ Hero automatically searching in cases when they shouldn't\n\n" +
122+
"_-_ Transmuted items not being added to the journal items list\n\n" +
123+
"_-_ Doors on floor 2 being hidden more often than they should be\n\n" +
124+
"_-_ Frequent crashes for a tiny number of unlucky players (sorry!)\n\n" +
125+
"Fixed (existed prior to 0.6.1):\n" +
126+
"_-_ Numerous rare crash and freeze bugs\n" +
127+
"_-_ Various minor bugs with the buff indicator\n" +
128+
"_-_ Sleep-immune enemies being affected by magical sleep"));
129+
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(this, "misc"),
130+
"Fixed an exploit where players could examine never-seen areas to determine the shape of a level. Examining any never-seen region will now always show nothing. Previously only examining outside of the level would show nothing."));
131+
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "translation"),
132+
"Fixed in English:\n" +
133+
"_-_ Missing period in alarm trap description\n\n" +
134+
"Various translation updates"));
135+
136+
changes = new ChangeInfo("v0.6.1a", true, "");
110137
changes.hardlight(Window.TITLE_COLOR);
111138
infos.add(changes);
112139

@@ -118,7 +145,7 @@ public void onClick(float x, float y) {
118145
"Fixed (existed prior to 0.6.1):\n" +
119146
"_-_ Various crash bugs\n" +
120147
"_-_ Thieves being able to escape while visible\n" +
121-
"_-_ Enemies not visually dieing in rare cases\n" +
148+
"_-_ Enemies not visually dying in rare cases\n" +
122149
"_-_ Visuals flickering while zooming on low resolution devices."));
123150
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(this, "misc"),
124151
"_-_ As a result of the flickering bugfix, camera zooming will be a bit more rigid on low resolution devices.\n\n" +

0 commit comments

Comments
 (0)