v0.7.5d: final commit

This commit is contained in:
Evan Debenham 2019-10-20 01:07:04 -04:00
parent a18ebcc723
commit e61d72eb58
2 changed files with 17 additions and 4 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 = 379 appVersionCode = 380
appVersionName = '0.7.5c' appVersionName = '0.7.5d'
appAndroidCompileSDK = 29 appAndroidCompileSDK = 29
appAndroidMinSDK = 9 appAndroidMinSDK = 9

View File

@ -71,11 +71,24 @@ public class v0_7_X_Changes {
changes.hardlight( Window.TITLE_COLOR ); changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes); changeInfos.add(changes);
changes = new ChangeInfo("v0.7.5d", false, null);
changes = new ChangeInfo("", false, null);
changes.hardlight( Window.TITLE_COLOR ); changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes); changeInfos.add(changes);
changes.addButton( new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
"_-_ Made additional tweaks to camera movement speed when following hero, should be slightly faster in most cases."));
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
"Fixed (caused by 0.7.5):\n" +
"_-_ Various visual bugs on floor 10\n" +
"_-_ Text being highlighted when it shouldn't in specific cases\n" +
"_-_ Various rare crash bugs\n\n" +
"Fixed (existed prior to 0.7.5):\n" +
"_-_ Thrown weapons sticking to corrupted characters when they shouldn't"));
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(ChangesScene.class, "language"),
"Updated Translations"));
changes = new ChangeInfo("v0.7.5c", false, null); changes = new ChangeInfo("v0.7.5c", false, null);
changes.hardlight( Window.TITLE_COLOR ); changes.hardlight( Window.TITLE_COLOR );
changeInfos.add(changes); changeInfos.add(changes);