diff --git a/build.gradle b/build.gradle index 93752a7ab..baa303c7d 100644 --- a/build.gradle +++ b/build.gradle @@ -14,8 +14,8 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 379 - appVersionName = '0.7.5c' + appVersionCode = 380 + appVersionName = '0.7.5d' appAndroidCompileSDK = 29 appAndroidMinSDK = 9 diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_7_X_Changes.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_7_X_Changes.java index bde9b5302..53576b0f3 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_7_X_Changes.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v0_7_X_Changes.java @@ -71,11 +71,24 @@ public class v0_7_X_Changes { changes.hardlight( Window.TITLE_COLOR ); changeInfos.add(changes); - - changes = new ChangeInfo("", false, null); + changes = new ChangeInfo("v0.7.5d", false, null); changes.hardlight( Window.TITLE_COLOR ); 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.hardlight( Window.TITLE_COLOR ); changeInfos.add(changes);