Skip to content

Commit ff40272

Browse files
committed
v2.0.2: updated changelog & version for v2.0.2 release
1 parent 9ff36ae commit ff40272

3 files changed

Lines changed: 28 additions & 3 deletions

File tree

build.gradle

Lines changed: 2 additions & 2 deletions
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 = 696
18-
appVersionName = '2.0.1'
17+
appVersionCode = 700
18+
appVersionName = '2.0.2'
1919

2020
appJavaCompatibility = JavaVersion.VERSION_1_8
2121

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

Lines changed: 1 addition & 1 deletion
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/v2_X_Changes.java

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -80,6 +80,31 @@ public static void add_v2_0_Changes( ArrayList<ChangeInfo> changeInfos ) {
8080
changes.hardlight(Window.TITLE_COLOR);
8181
changeInfos.add(changes);
8282

83+
changes.addButton(new ChangeButton(Icons.get(Icons.PREFS), Messages.get(ChangesScene.class, "misc"),
84+
"_-_ Overhauled visuals for the action indicator. It now has different background colors for different actions, and supports a smaller secondary icon or text. Subclass abilities all make use of this new functionality, and some info has been moved from buff icons to this new indicator.\n\n" +
85+
"_-_ The game's pixel font now supports Vietnamese!\n\n" +
86+
"_-_ Rankings now attempt to show some basic information if loading full game data fails.\n\n" +
87+
"_-_ The changes scene now shows a warning if the user is not viewing it in English.\n\n" +
88+
"_-_ Liquid metal value increased to 1 from 0.5."));
89+
90+
changes.addButton(new ChangeButton(new Image(Assets.Sprites.SPINNER, 144, 0, 16, 16), Messages.get(ChangesScene.class, "bugfixes"),
91+
"Fixed (Caused by v2.0):\n" +
92+
"_-_ Various minor visual errors\n" +
93+
"_-_ Flail spin ability triggering talents when already at full spin power\n" +
94+
"_-_ Lucky elemental strike working on ally characters\n" +
95+
"_-_ Resistance from empowered meditate lasting 1 turn longer than intended\n" +
96+
"_-_ Threshold for Monastic Vigor being lower than intended (95/75/55 instead of 100/80/60)\n" +
97+
"_-_ New quickslot swap behaviour sometimes placing items without a quick-use action into quickslots\n" +
98+
"_-_ Levitation persisting for 1 extra turn after the hero falls into a pit\n" +
99+
"_-_ Lunge ability still allowing the Duelist to attack if it placed her onto a teleportation trap\n" +
100+
"_-_ Spirit bow arrows triggering the deadly followup talent",
101+
"Fixed (existed prior to v2.0):\n" +
102+
"_-_ Various bugs with controller input which occurred when two or more inputs were entered at once.\n" +
103+
"_-_ Hero being able to leave floor 5 after it locks in rare cases\n" +
104+
"_-_ Various minor rounding errors in alchemy produce values\n" +
105+
"_-_ Spirit bow encumbrance calculations always using a strength requirement of 10\n" +
106+
"_-_ Downed ghoul visuals sometimes staying visible in the fog of war"));
107+
83108
changes = new ChangeInfo("v2.0.1", false, null);
84109
changes.hardlight(Window.TITLE_COLOR);
85110
changeInfos.add(changes);

0 commit comments

Comments
 (0)