From 83452db0e0596e81ed75199f645a5100fe70b9cd Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 13 Apr 2022 13:03:47 -0400 Subject: [PATCH] v1.2.3: final commit --- build.gradle | 4 ++-- .../ui/changelist/v1_X_Changes.java | 23 +++++++++++++++++++ 2 files changed, 25 insertions(+), 2 deletions(-) diff --git a/build.gradle b/build.gradle index 312411d53a..0c341bdf0e 100644 --- a/build.gradle +++ b/build.gradle @@ -14,8 +14,8 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 626 - appVersionName = '1.2.2' + appVersionCode = 628 + appVersionName = '1.2.3' 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 806d40597a..626a80f246 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 @@ -83,6 +83,29 @@ public static void add_v1_2_Changes( ArrayList changeInfos ) { 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.2.3", false, null); + changes.hardlight(Window.TITLE_COLOR); + changeInfos.add(changes); + + changes.addButton(new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"), + "_-_ Swarms that were spawned by splitting now give a little sacrifice progress if sacrificed, instead of 0.\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 v1.2.0):\n" + + "_-_ Various rare crash bugs\n" + + "_-_ Textual errors with talents and 13th armor ability\n" + + "_-_ Armband not benefiting from ring of energy\n" + + "_-_ v1.2.0 light cloak buff not applying in all cases\n" + + "_-_ Inconsistencies in freezing logic\n" + + "_-_ Cached rations talent not capping at 4/6 rations as intended\n\n" + + "Fixed (existed prior to v1.2.0)\n" + + "_-_ An exploit where unblessed ankhs could be used with a lost inventory" )); + changes = new ChangeInfo("v1.2.2", false, null); changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes);