diff --git a/build.gradle b/build.gradle index a730b2811e..09e3fa9b6b 100644 --- a/build.gradle +++ b/build.gradle @@ -14,8 +14,8 @@ allprojects { appName = 'Shattered Pixel Dungeon' appPackageName = 'com.shatteredpixel.shatteredpixeldungeon' - appVersionCode = 666 //Hey whaddaya know it's almost halloween too! - appVersionName = '1.4.2' + appVersionCode = 668 + appVersionName = '1.4.3' appJavaCompatibility = JavaVersion.VERSION_1_8 diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/WelcomeScene.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/WelcomeScene.java index 2e82665502..8126a4d45f 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/WelcomeScene.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/WelcomeScene.java @@ -200,7 +200,7 @@ protected void onClick() { //TODO: change the messages here in accordance with the type of patch. message = Messages.get(this, "patch_intro"); message += "\n"; - message += "\n" + Messages.get(this, "patch_balance"); + //message += "\n" + Messages.get(this, "patch_balance"); message += "\n" + Messages.get(this, "patch_bugfixes"); message += "\n" + Messages.get(this, "patch_translations"); diff --git a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java index 79c7afc78c..1957050f25 100644 --- a/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java +++ b/core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java @@ -89,10 +89,20 @@ public static void add_v1_4_Changes( ArrayList changeInfos ) { changes.hardlight(Window.TITLE_COLOR); changeInfos.add(changes); - changes = new ChangeInfo("v1.4.2", false, null); + changes = new ChangeInfo("v1.4.3 & v1.4.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") + " v1.4.3", + "Fixed (caused by v1.4.2)\n" + + "_-_ Crashes with bright fist and shock elemental\n" + + "_-_ Rare crashes caused by spectral necromancers\n\n" + + "Fixed (existed prior to v1.4)\n" + + "_-_ Various rare audiovisual errors\n" + + "_-_ Rare crashes with radial inventory selector\n" + + "_-_ Boss health bar not appearing in rare cases\n" + + "_-_ Buff icons sometimes going outside of character info windows")); + changes.addButton(new ChangeButton(Icons.get(Icons.BUFFS), "Balance Tweaks", "I've made a few balance tweaks to things that were added/changed in v1.4.0:\n\n" + "_- Sandals of Nature_ energy costs reduced by 20%\n" + @@ -111,7 +121,7 @@ public static void add_v1_4_Changes( ArrayList changeInfos ) { "_-_ The sandals of nature now include the name of the most recently fed seed in their description\n\n" + "_-_ Updated translations and translator credits")); - changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"), + changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes") + " v1.4.2", "Fixed (caused by v1.4)\n" + "_-_ Various rare crash bugs\n" + "_-_ Various errors and inconsistencies with trampling hero's own position\n\n" +