v3.0.0: updated version and changelog for ALPHA-2

This commit is contained in:
Evan Debenham
2024-11-29 13:33:04 -05:00
parent df1408e928
commit 26ef4dedd0
2 changed files with 17 additions and 2 deletions

View File

@@ -17,8 +17,8 @@ allprojects {
appName = 'Shattered Pixel Dungeon' appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 804 appVersionCode = 805
appVersionName = '3.0.0-ALPHA-1' appVersionName = '3.0.0-ALPHA-2'
appJavaCompatibility = JavaVersion.VERSION_1_8 appJavaCompatibility = JavaVersion.VERSION_1_8

View File

@@ -59,6 +59,21 @@ public class v3_X_Changes {
changes.hardlight(Window.TITLE_COLOR); changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes); changeInfos.add(changes);
changes = new ChangeInfo("", false, null);
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes = new ChangeInfo("ALPHA-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 the following bugs:\n" +
"**-** Recall Glyph spell working on scrolls of upgrade\n" +
"**-** Spells still being castable without adequate tome charges\n" +
"**-** One rare crash bug\n" +
"**-** Various small textual errors\n"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null); changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight(Window.TITLE_COLOR); changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes); changeInfos.add(changes);