From 46525d4784a06123c83ae3fc8d766cb39317b2ca Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Sun, 9 Oct 2022 21:00:16 -0400 Subject: [PATCH] v1.4.1: final commit --- build.gradle | 4 +-- .../ui/changelist/v1_X_Changes.java | 25 +++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 9224ab982..a781e89b6 100644 --- a/build.gradle +++ b/build.gradle @@ -14,8 +14,8 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 660 - appVersionName = '1.4.0' + appVersionCode = 662 + appVersionName = '1.4.1' appJavaCompatibility = JavaVersion.VERSION_1_8 diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java index eac2cf8f9..d1096cc6a 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java @@ -89,6 +89,31 @@ public class v1_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("v1.4.1", 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 v1.4)\n" + + "_-_ Various minor visual and textual errors\n" + + "_-_ Blooming enchantment triggering more often than intended\n" + + "_-_ Errors with charge use on timekeeper's hourglass\n" + + "_-_ Some changes missing from v1.4 changelog\n\n" + + "Fixed (existed prior to v1.4)\n" + + "_-_ Multiplicity glyph duplicating NPCs in rare cases\n" + + "_-_ Rare cases where potion of healing talents wouldn't trigger\n" + + "_-_ Cursed horn of plenty affecting non-food items\n" + + "_-_ Being able to self-target with cursed wands in rare cases\n" + + "_-_ Some thrown weapons triggering traps as Tengu jumps\n" + + "_-_ Magic resistance not applying to some cursed wand effects\n" + + "_-_ Some users seeing rankings dates in local format, instead of international\n" + + "_-_ Exploits during ascension challenge that let players still use shops\n" + + "_-_ Elastic and battlemage blast wave ability conflicting with each other")); + changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null); changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes);