Skip to content

Commit 3066827

Browse files
committed
v0.3.2c: manifest commit
1 parent 39781aa commit 3066827

File tree

2 files changed

+32
-11
lines changed

2 files changed

+32
-11
lines changed

AndroidManifest.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
<?xml version="1.0" encoding="utf-8"?>
22
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
33
package="com.shatteredpixel.shatteredpixeldungeon"
4-
android:versionCode="67"
5-
android:versionName="0.3.2b"
4+
android:versionCode="68"
5+
android:versionName="0.3.2c"
66
android:installLocation="auto">
77

88
<uses-permission android:name="android.permission.VIBRATE"/>

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

Lines changed: 30 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -44,13 +44,34 @@ public class WelcomeScene extends PixelScene {
4444
private static final String TTL_Future = "Wait What?";
4545

4646
private static final String TXT_Welcome =
47-
"Shattered Pixel Dungeon is a rework/expansion of Watabou's Pixel Dungeon.\n\n"+
48-
"The goal is to enhance the game by improving existing content and adding tonnes of new stuff!\n\n"+
49-
"Shattered Pixel Dungeon is being constantly updated, so expect more new content soon!\n\n"+
50-
"Happy Dungeoneering!";
47+
"Shattered Pixel Dungeon is a roguelike RPG, with randomly generated enemies, maps, items, and traps!\n" +
48+
"\n" +
49+
"Each run is a new challenging experience, but be careful, death is permanent!\n" +
50+
"\n" +
51+
"Shattered Pixel Dungeon is based on Watabou's Pixel Dungeon, if you're familiar with the original game, here is a list of major changes:\n" +
52+
"- Mage class and wands totally reworked\n" +
53+
"- Rings totally reworked, plus big changes to the rogue\n" +
54+
"- A new category of item: Artifacts!\n" +
55+
"- Enemy, boss, and quest changes to floors 1-10\n" +
56+
"- Subclasses currently being reworked, and are only available after floor 10\n" +
57+
"- Lots of balance changes, including removing degradation\n" +
58+
"- Over 20 new trap types!\n" +
59+
"- A redesigned UI with up to 4 quickslots\n" +
60+
"- Updates with new and reworked content roughly once a month\n" +
61+
"\n" +
62+
"\n" +
63+
"Happy Dungeoneering!";
5164

5265
private static final String TXT_Update =
53-
"v0.3.2b:\n" +
66+
"v0.3.2c:\n" +
67+
"- Visual improvements from 1.9.1 source\n" +
68+
"- Improved golden UI for donators\n" +
69+
"- Various bug and crash fixes\n" +
70+
"- Reduced gnoll shaman magic damage\n" +
71+
"- Added visuals for warlock's soul mark\n" +
72+
"- soul mark now lasts less time\n" +
73+
"\n" +
74+
"v0.3.2b:\n" +
5475
"- Fixed various bugs\n" +
5576
"- Floor locking tweaked, now only pauses passive effects when avoiding battle.\n" +
5677
"\n" +
@@ -119,8 +140,8 @@ public void create() {
119140

120141
if (gameversion == 0) {
121142

122-
text = createMultiline(TXT_Welcome, 8);
123-
title = createMultiline(TTL_Welcome, 16);
143+
text = createMultiline(TXT_Welcome, 6 );
144+
title = createMultiline(TTL_Welcome, 12 );
124145

125146
} else if (gameversion <= Game.versionCode) {
126147

@@ -129,8 +150,8 @@ public void create() {
129150

130151
} else {
131152

132-
text = createMultiline( TXT_Future, 8 );
133-
title = createMultiline( TTL_Future, 16 );
153+
text = createMultiline( TXT_Future, 6 );
154+
title = createMultiline( TTL_Future, 12 );
134155

135156
}
136157

0 commit comments

Comments
 (0)