Skip to content

Commit 04f02a0

Browse files
committed
v0.6.3b: manifest commit
1 parent adb9aa6 commit 04f02a0

File tree

4 files changed

+43
-14
lines changed

4 files changed

+43
-14
lines changed

SPD-classes/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.library'
22

33
android {
44
compileSdkVersion 26
5-
buildToolsVersion "26.0.2"
5+
buildToolsVersion "26.0.3"
66

77
task ndkBuild(type: Exec){
88
description "builds JNI libs from source. " +

core/build.gradle

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apply plugin: 'com.android.application'
22

33
android {
44
compileSdkVersion 26
5-
buildToolsVersion "26.0.2"
5+
buildToolsVersion "26.0.3"
66

77
defaultConfig {
88
resConfigs "en_US", "cs", "tr", "ca", "ko", "pl", "it",

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="242"
5-
android:versionName="0.6.3a"
4+
android:versionCode="245"
5+
android:versionName="0.6.3b"
66
android:installLocation="auto">
77

88
<uses-sdk

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

+39-10
Original file line numberDiff line numberDiff line change
@@ -131,27 +131,56 @@ public void onClick(float x, float y) {
131131
//**********************
132132
// v0.6.3
133133
//**********************
134-
135-
ChangeInfo changes = new ChangeInfo("v0.6.3a", true, "");
134+
135+
ChangeInfo changes = new ChangeInfo("v0.6.3", true, "");
136136
changes.hardlight(Window.TITLE_COLOR);
137137
infos.add(changes);
138-
138+
139+
changes = new ChangeInfo("v0.6.3b", false, "");
140+
changes.hardlight(Window.TITLE_COLOR);
141+
infos.add(changes);
142+
143+
changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.STYLUS, null), "Obfuscation",
144+
"With its downside removed in 0.6.3, the glyph of obfuscation has become extremely powerful.\n" +
145+
"\n" +
146+
"To reign it in a bit, its effectiveness has been reduced at higher levels:\n" +
147+
"_-_ Base power increased\n" +
148+
"_-_ Power scaling has been decreased by 67%"));
149+
150+
changes.addButton( new ChangeButton(new Image(Assets.WARRIOR, 0, 90, 12, 15), "Berserker",
151+
"The berserker remains extremely powerful, so further adjustments have been made:\n\n" +
152+
"_-_ Re-applied bonus damage nerf from 0.6.2: bonus damage below 50% health reduced significantly, 2x damage while at 0 hp unchanged.\n\n" +
153+
"_-_ Bonus damage is now calculated using reduced max hp, not true max hp. This means that past rages effectively reduce bonus damage."));
154+
155+
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
156+
"Fixed a serious memory leak on android 8.0+\n\n" +
157+
"Fixed serious crash issues on older custom ROMs\n\n" +
158+
"Fixed (caused by 0.6.3):\n" +
159+
"_-_ Sleep darts causing phantom sleep bubbles\n" +
160+
"_-_ Mimics not dropping loot when corrupted\n" +
161+
"_-_ Bugs caused by berserker hp reduction\n\n" +
162+
"Fixed (existed before 0.6.3):\n" +
163+
"_-_ Rankings not retaining challenges completed"));
164+
165+
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
166+
"Updated Translations"));
167+
168+
changes = new ChangeInfo("v0.6.3a", false, "");
169+
changes.hardlight(Window.TITLE_COLOR);
170+
infos.add(changes);
171+
139172
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(this, "misc"),
140173
"_-_ Reduced burning damage against high health enemies\n\n" +
141-
"_-_ Reduced game install size by ~2.5%"));
142-
174+
"_-_ Reduced game install size by ~2.5%"));
175+
143176
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
144177
"Fixed (caused by 0.6.3):\n" +
145178
"_-_ Health potions being craftable with pharmacophobia enabled\n" +
146179
"_-_ Ring of sharpshooting increasing damage a bit more than displayed\n" +
147180
"_-_ Various rare crashes"));
148-
181+
149182
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
150183
"Updated Translations"));
151-
152-
changes = new ChangeInfo("v0.6.3", true, "");
153-
changes.hardlight(Window.TITLE_COLOR);
154-
infos.add(changes);
155184

156185
changes = new ChangeInfo(Messages.get(this, "new"), false, null);
157186
changes.hardlight( Window.TITLE_COLOR );

0 commit comments

Comments
 (0)