From 5bd755b1634e8d0cc2b689bc7498b9b285865f8f Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Mon, 11 Sep 2023 20:57:15 -0400 Subject: [PATCH] v2.2.0: updated version and changelog for beta-0.3 --- build.gradle | 4 ++-- .../ui/changelist/v2_X_Changes.java | 9 ++++++++- 2 files changed, 10 insertions(+), 3 deletions(-) diff --git a/build.gradle b/build.gradle index 61a696510..1f1b4a5da 100644 --- a/build.gradle +++ b/build.gradle @@ -14,8 +14,8 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 741 - appVersionName = '2.2.0-BETA-0.2' + appVersionCode = 742 + appVersionName = '2.2.0-BETA-0.3' appJavaCompatibility = JavaVersion.VERSION_1_8 diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v2_X_Changes.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v2_X_Changes.java index 266759ee8..08805ef74 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v2_X_Changes.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v2_X_Changes.java @@ -80,10 +80,17 @@ public class v2_X_Changes { changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); - changes = new ChangeInfo("", false, null); + changes = new ChangeInfo("BETA-0.3", 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 the following bugs:\n" + + "_Caused by BETA:_\n" + + "_-_ Further random uncommon crash issues (I hope)\n" + + "_-_ Error with armor descriptions in Korean\n" + + "_-_ A few minor textual errors")); + changes = new ChangeInfo("BETA-0.2", false, null); changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes);