From 554a843f74ad335c4e5122befdb24d53e5bace29 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 17 Aug 2020 11:27:36 -0400 Subject: [PATCH] v0.8.2b: final commit --- build.gradle | 4 ++-- .../ui/changelist/v0_8_X_Changes.java | 9 +++++++-- 2 files changed, 9 insertions(+), 4 deletions(-) diff --git a/build.gradle b/build.gradle index c8f23b5d6..5254a4e4c 100644 --- a/build.gradle +++ b/build.gradle @@ -16,8 +16,8 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 454 - appVersionName = '0.8.2a' + appVersionCode = 456 + appVersionName = '0.8.2b' appJavaCompatibility = JavaVersion.VERSION_1_8 diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_8_X_Changes.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_8_X_Changes.java index 67363af8b..7bed20297 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_8_X_Changes.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_8_X_Changes.java @@ -74,10 +74,16 @@ public class v0_8_X_Changes { changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); - changes = new ChangeInfo("", false, null); + changes = new ChangeInfo("v0.8.2b", false, null); changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); + changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"), + "Fixed (caused by v0.8.2a):\n" + + "_-_ Uncommon crashes when descending to a new floor\n\n" + + "Fixed (existed prior to v0.8.2):\n" + + "_-_ Wraiths refusing to spawn over traps despite not being able to activate them")); + changes = new ChangeInfo("v0.8.2a", false, null); changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); @@ -100,7 +106,6 @@ public class v0_8_X_Changes { "Fixed (existed prior to v0.8.2):\n" + "_-_ Pickaxe not getting bloodied by killing bats in rare cases\n" + "_-_ Dried rose ghost healing not respecting level lock limits\n" + - "_-_ Wraiths refusing to spawn over traps despite not being able to activate them\n" + "_-_ Enemy respawn timer being reset by saving/loading the game")); changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);