v2.3.0: updated changelog and version for ALPHA-0.2

This commit is contained in:
Evan Debenham
2023-12-07 13:30:40 -05:00
parent d7bd161f2d
commit 44a0ac283b
3 changed files with 14 additions and 3 deletions

View File

@@ -15,8 +15,8 @@ allprojects {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 756
appVersionName = '2.3.0-ALPHA-0.1'
appVersionCode = 757
appVersionName = '2.3.0-ALPHA-0.2'
appJavaCompatibility = JavaVersion.VERSION_1_8

View File

@@ -53,7 +53,7 @@ import java.util.Collections;
public class WelcomeScene extends PixelScene {
private static final int LATEST_UPDATE = ShatteredPixelDungeon.v2_2_1;
private static final int LATEST_UPDATE = 456;
//used so that the game does not keep showing the window forever if cleaning fails
private static boolean triedCleaningTemp = false;

View File

@@ -89,6 +89,17 @@ public class v2_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("ALPHA-0.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"),
"Fixed potions of strength not increasing hero's STR amount (whoops!)"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);