v1.1.1: final commit

This commit is contained in:
Evan Debenham 2021-12-21 15:51:45 -05:00
parent e5e6c4b8e8
commit d5b092a888
3 changed files with 23 additions and 3 deletions

View File

@ -15,8 +15,8 @@ allprojects {
appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 584
appVersionName = '1.1.0'
appVersionCode = 586
appVersionName = '1.1.1'
appJavaCompatibility = JavaVersion.VERSION_1_8

View File

@ -166,7 +166,7 @@ public class WelcomeScene extends PixelScene {
message += "\n";
//message += "\n" + Messages.get(this, "patch_balance");
message += "\n" + Messages.get(this, "patch_bugfixes");
//message += "\n" + Messages.get(this, "patch_translations");
message += "\n" + Messages.get(this, "patch_translations");
}
} else {

View File

@ -59,6 +59,26 @@ public class v1_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("v1.1.1", false, null);
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);
changes.addButton(new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Updated translations and translator credits"));
changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed (caused by v1.1.0):\n" +
"_-_ Various rare crash bugs\n" +
"_-_ Various rare cases of save corruption on Android\n" +
"_-_ Holding keys to move not working on Desktop\n\n" +
"Fixed (existed prior to v1.1.0):\n" +
"_-_ Specific cases where guidebook windows could be stacked\n" +
"_-_ Remove curse stating nothing was cleansed when it removed the degrade debuff"));
changes = new ChangeInfo(Messages.get(ChangesScene.class, "new"), false, null);
changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes);