From ec714ce9856d9b8ca739cb5ea4b28326d33b9198 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 13 Jan 2021 17:56:21 -0500 Subject: [PATCH] v0.9.1d: final commit --- build.gradle | 4 ++-- .../ui/changelist/v0_9_X_Changes.java | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 2ae149d14..0b711375d 100644 --- a/build.gradle +++ b/build.gradle @@ -14,8 +14,8 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 510 - appVersionName = '0.9.1c' + appVersionCode = 512 + appVersionName = '0.9.1d' appJavaCompatibility = JavaVersion.VERSION_1_8 diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_9_X_Changes.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_9_X_Changes.java index b41f3bc23..ae9daa8d4 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_9_X_Changes.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_9_X_Changes.java @@ -52,10 +52,16 @@ public class v0_9_X_Changes { changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); - changes = new ChangeInfo("", false, null); + changes = new ChangeInfo("v0.9.1d", 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.9.1):\n" + + "_-_ Fixed error with runic transference caused by v0.9.1d\n\n" + + "Fixed (existed prior to v0.9.1):\n" + + "_-_ Targeting errors with projecting bow and ethereal chains")); + changes = new ChangeInfo("v0.9.1c", false, null); changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes);