v0.9.1d: final commit

This commit is contained in:
Evan Debenham 2021-01-13 17:56:21 -05:00
parent ea2cbdfa93
commit ec714ce985
2 changed files with 9 additions and 3 deletions

View File

@ -14,8 +14,8 @@ allprojects {
appName = 'Shattered Pixel Dungeon' appName = 'Shattered Pixel Dungeon'
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
appVersionCode = 510 appVersionCode = 512
appVersionName = '0.9.1c' appVersionName = '0.9.1d'
appJavaCompatibility = JavaVersion.VERSION_1_8 appJavaCompatibility = JavaVersion.VERSION_1_8

View File

@ -52,10 +52,16 @@ public class v0_9_X_Changes {
changes.hardlight(Window.TITLE_COLOR); changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes); changeInfos.add(changes);
changes = new ChangeInfo("", false, null); changes = new ChangeInfo("v0.9.1d", false, null);
changes.hardlight(Window.TITLE_COLOR); changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes); changeInfos.add(changes);
changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed (caused by v0.9.1):\n" +
"_-_ Fixed error with runic transference caused by v0.9.1d\n\n" +
"Fixed (existed prior to v0.9.1):\n" +
"_-_ Targeting errors with projecting bow and ethereal chains"));
changes = new ChangeInfo("v0.9.1c", false, null); changes = new ChangeInfo("v0.9.1c", false, null);
changes.hardlight(Window.TITLE_COLOR); changes.hardlight(Window.TITLE_COLOR);
changeInfos.add(changes); changeInfos.add(changes);