Skip to content

Commit

Permalink
v0.3.4c: manifest commit
Browse files Browse the repository at this point in the history
  • Loading branch information
00-Evan committed Mar 4, 2016
1 parent 5016f83 commit b03e40f
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 12 deletions.
4 changes: 2 additions & 2 deletions AndroidManifest.xml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shatteredpixel.shatteredpixeldungeon"
android:versionCode="92"
android:versionName="0.3.4b"
android:versionCode="93"
android:versionName="0.3.4c"
android:installLocation="auto">

<uses-permission android:name="android.permission.VIBRATE"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,19 +37,13 @@
public class ChangesScene extends PixelScene {

private static final String TXT_Update =
"_v0.3.4b:_\n" +
"- New font is now optional\n" +
"- Fixed crash issues with Italian language\n" +
"- Translation Updates\n" +
"_v0.3.4c:_\n" +
"- Performance improvements\n" +
"- Bugfixes\n" +
"\n" +
"_v0.3.4a:_\n" +
"- Huntress can equip her boomerang again\n" +
"- Added Italian (currently incomplete)\n" +
"- Translation updates\n" +
"\n" +
"_v0.3.4:_\n" +
"- Shattered now supports multiple languages\n" +
"- New font\n" +
"\n" +
"Balance Changes:\n" +
"- Hunger now builds ~10% slower\n" +
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -110,9 +110,10 @@ protected void onClick() {
} else {
//TODO: change the messages here in accordance with the type of patch.
message = Messages.get(this, "patch_intro");
message += "\n\n" + Messages.get(this, "patch_msg");
message += "\n\n" + Messages.get(this, "patch_bugfixes");
message += "\n" + Messages.get(this, "patch_translations");
message += "\n\n" + Messages.get(this, "patch_msg");

}
} else {
message = Messages.get(this, "what_msg");
Expand Down

0 comments on commit b03e40f

Please sign in to comment.