Skip to content

Commit

Permalink
v1.4.3: final commit
Browse files Browse the repository at this point in the history
  • Loading branch information
00-Evan committed Nov 1, 2022
1 parent 6ea9dc7 commit a96d62f
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 5 deletions.
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -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

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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");

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -89,10 +89,20 @@ public static void add_v1_4_Changes( ArrayList<ChangeInfo> 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" +
Expand All @@ -111,7 +121,7 @@ public static void add_v1_4_Changes( ArrayList<ChangeInfo> 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" +
Expand Down

0 comments on commit a96d62f

Please sign in to comment.