From 4bdd2359bafda4e77fd9ed00393fdd3b4a629541 Mon Sep 17 00:00:00 2001 From: Evan Debenham Date: Wed, 28 Aug 2024 14:02:58 -0400 Subject: [PATCH] v2.5.0: updated version and changelog for BETA-3 --- build.gradle | 4 ++-- .../ui/changelist/v2_X_Changes.java | 13 +++++++++---- 2 files changed, 11 insertions(+), 6 deletions(-) diff --git a/build.gradle b/build.gradle index 5fa45bb03..7e8568ead 100644 --- a/build.gradle +++ b/build.gradle @@ -20,8 +20,8 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 789 - appVersionName = '2.5.0-BETA-2' + appVersionCode = 790 + appVersionName = '2.5.0-BETA-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 b8d382400..35d4c0051 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 @@ -85,10 +85,15 @@ public class v2_X_Changes { changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); - changes = new ChangeInfo("BETA-2", false, null); + changes = new ChangeInfo("BETA-3 & 2", 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"), + "BETA-3: Fixed the following bugs:\n" + + "_Caused by BETA-2:_\n" + + "_-_ Game crashing when opening the new journal scene, oops =S")); + changes.addButton( new ChangeButton(new ItemSprite(ItemSpriteSheet.BOMB), "Regarding Bomb Changes", "I've gotten a lot of messages about the recent bomb change, so I thought I'd explain it in a bit more detail. For context, previously bomb explosions only destroyed un-upgraded equipment, and so could be used to tell if an item was upgraded.\n" + "\n" + @@ -104,8 +109,8 @@ public class v2_X_Changes { "_-_ Updated translations")); 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 ALPHA:_\n" + + "BETA-2: Fixed the following bugs:\n" + + "_Caused by BETA:_\n" + "_-_ Custom notes being viewable from the catalog on unidentified items\n" + "_-_ Upgrade window applying the effect of armor augments twice when showing stats\n" + "_-_ 'Big Game Hunter' badge unlocking many times\n" + @@ -113,7 +118,7 @@ public class v2_X_Changes { "_-_ Targeting traps ignoring invisible characters entirely\n" + "_-_ Various minor textual and graphical errors" + "\n" + - "_Existed Prior to ALPHA:_\n" + + "_Existed Prior to BETA:_\n" + "_-_ Challenge Arena effect briefly persisting between floors\n" + "_-_ Very specific cases where the hero would refuse to walk onto visible traps"));