Skip to content

Commit a96d62f

Browse files
committed
v1.4.3: final commit
1 parent 6ea9dc7 commit a96d62f

File tree

3 files changed

+15
-5
lines changed

3 files changed

+15
-5
lines changed

build.gradle

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,8 +14,8 @@ allprojects {
1414
appName = 'Shattered Pixel Dungeon'
1515
appPackageName = 'com.shatteredpixel.shatteredpixeldungeon'
1616

17-
appVersionCode = 666 //Hey whaddaya know it's almost halloween too!
18-
appVersionName = '1.4.2'
17+
appVersionCode = 668
18+
appVersionName = '1.4.3'
1919

2020
appJavaCompatibility = JavaVersion.VERSION_1_8
2121

core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/scenes/WelcomeScene.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ protected void onClick() {
200200
//TODO: change the messages here in accordance with the type of patch.
201201
message = Messages.get(this, "patch_intro");
202202
message += "\n";
203-
message += "\n" + Messages.get(this, "patch_balance");
203+
//message += "\n" + Messages.get(this, "patch_balance");
204204
message += "\n" + Messages.get(this, "patch_bugfixes");
205205
message += "\n" + Messages.get(this, "patch_translations");
206206

core/src/main/java/com/shatteredpixel/shatteredpixeldungeon/ui/changelist/v1_X_Changes.java

+12-2
Original file line numberDiff line numberDiff line change
@@ -89,10 +89,20 @@ public static void add_v1_4_Changes( ArrayList<ChangeInfo> changeInfos ) {
8989
changes.hardlight(Window.TITLE_COLOR);
9090
changeInfos.add(changes);
9191

92-
changes = new ChangeInfo("v1.4.2", false, null);
92+
changes = new ChangeInfo("v1.4.3 & v1.4.2", false, null);
9393
changes.hardlight(Window.TITLE_COLOR);
9494
changeInfos.add(changes);
9595

96+
changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes") + " v1.4.3",
97+
"Fixed (caused by v1.4.2)\n" +
98+
"_-_ Crashes with bright fist and shock elemental\n" +
99+
"_-_ Rare crashes caused by spectral necromancers\n\n" +
100+
"Fixed (existed prior to v1.4)\n" +
101+
"_-_ Various rare audiovisual errors\n" +
102+
"_-_ Rare crashes with radial inventory selector\n" +
103+
"_-_ Boss health bar not appearing in rare cases\n" +
104+
"_-_ Buff icons sometimes going outside of character info windows"));
105+
96106
changes.addButton(new ChangeButton(Icons.get(Icons.BUFFS), "Balance Tweaks",
97107
"I've made a few balance tweaks to things that were added/changed in v1.4.0:\n\n" +
98108
"_- Sandals of Nature_ energy costs reduced by 20%\n" +
@@ -111,7 +121,7 @@ public static void add_v1_4_Changes( ArrayList<ChangeInfo> changeInfos ) {
111121
"_-_ The sandals of nature now include the name of the most recently fed seed in their description\n\n" +
112122
"_-_ Updated translations and translator credits"));
113123

114-
changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
124+
changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes") + " v1.4.2",
115125
"Fixed (caused by v1.4)\n" +
116126
"_-_ Various rare crash bugs\n" +
117127
"_-_ Various errors and inconsistencies with trampling hero's own position\n\n" +

0 commit comments

Comments
 (0)