From c3e16f31069086ae523e3f51743734459210e74e Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 11 Jan 2021 19:42:24 -0500 Subject: [PATCH] v0.9.1c: final commit --- build.gradle | 4 +-- .../ui/changelist/v0_9_X_Changes.java | 25 +++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 5796953ed..f622ec7ef 100644 --- a/build.gradle +++ b/build.gradle @@ -14,8 +14,8 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 504 - appVersionName = '0.9.1b' + appVersionCode = 506 + appVersionName = '0.9.1c' 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 d9f0ddc34..cce577d6a 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,6 +52,31 @@ public class v0_9_X_Changes { changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); + changes = new ChangeInfo("", false, null); + changes.hardlight(Window.TITLE_COLOR); + changeInfos.add(changes); + + changes = new ChangeInfo("v0.9.1c", false, null); + changes.hardlight(Window.TITLE_COLOR); + changeInfos.add(changes); + + changes.addButton(new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"), + "_-_ Frozen carpaccio can now burn like mystery meat\n\n" + + "_-_ Challenge completion badges can now appear in rankings\n\n" + + "_-_ Improved blacksmith logic when upgraded item is also equipped\n\n" + + "_-_ Updated translations")); + + 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" + + "_-_ Various uncommon freeze bugs caused by v0.9.1b\n" + + "_-_ Various minor errors with runic transference\n" + + "_-_ Doors failing to spawn in rare cases\n\n" + + "Fixed (existed prior to v0.9.1):\n" + + "_-_ Various rare crash bugs\n" + + "_-_ Rare cases where dieing to a chasm would be recorded as 'Killed by Something'\n" + + "_-_ Various minor errors with magical charge buff\n" + + "_-_ DM-300 rarely using abilities while stunned")); + changes = new ChangeInfo("v0.9.1b", false, null); changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes);