v0.7.1a: manifest commit
This commit is contained in:
parent
489eda3a24
commit
fc5cca1446
|
@ -1,8 +1,8 @@
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
package="com.shatteredpixel.shatteredpixeldungeon"
|
package="com.shatteredpixel.shatteredpixeldungeon"
|
||||||
android:versionCode="318"
|
android:versionCode="319"
|
||||||
android:versionName="0.7.1"
|
android:versionName="0.7.1a"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
|
|
||||||
<uses-feature
|
<uses-feature
|
||||||
|
|
|
@ -153,10 +153,36 @@ public class ChangesScene extends PixelScene {
|
||||||
changes.hardlight( Window.TITLE_COLOR );
|
changes.hardlight( Window.TITLE_COLOR );
|
||||||
infos.add(changes);
|
infos.add(changes);
|
||||||
|
|
||||||
|
changes = new ChangeInfo("", false, null);
|
||||||
|
changes.hardlight( Window.TITLE_COLOR );
|
||||||
|
infos.add(changes);
|
||||||
|
|
||||||
|
changes = new ChangeInfo("v0.7.1a", false, null);
|
||||||
|
changes.hardlight( Window.TITLE_COLOR );
|
||||||
|
infos.add(changes);
|
||||||
|
|
||||||
|
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
|
||||||
|
"Fixed (caused by 0.7.1):\n" +
|
||||||
|
"_-_ various crash bugs\n" +
|
||||||
|
"_-_ chasms dealing damage on a delay in some cases\n" +
|
||||||
|
"_-_ blacksmith deleting items in rare cases\n\n" +
|
||||||
|
"Fixed (existed prior to 0.7.1):\n" +
|
||||||
|
"_-_ various crash bugs\n" +
|
||||||
|
"_-_ traps with ground-based effects affecting flying characters"));
|
||||||
|
|
||||||
|
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
|
||||||
|
"Updated Translations"));
|
||||||
|
|
||||||
changes = new ChangeInfo(Messages.get(this, "new"), false, null);
|
changes = new ChangeInfo(Messages.get(this, "new"), false, null);
|
||||||
changes.hardlight( Window.TITLE_COLOR );
|
changes.hardlight( Window.TITLE_COLOR );
|
||||||
infos.add(changes);
|
infos.add(changes);
|
||||||
|
|
||||||
|
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
|
||||||
|
"_-_ Released Dec 18th, 2018\n" +
|
||||||
|
"_-_ 61 days after Shattered v0.7.0\n" +
|
||||||
|
"\n" +
|
||||||
|
"Dev commentary will be added here in the future."));
|
||||||
|
|
||||||
changes.addButton( new ChangeButton( new Image(Assets.HUNTRESS, 0, 15, 12, 15), "Huntress Reworked!",
|
changes.addButton( new ChangeButton( new Image(Assets.HUNTRESS, 0, 15, 12, 15), "Huntress Reworked!",
|
||||||
"The Huntress has received a class overhaul!\n\n" +
|
"The Huntress has received a class overhaul!\n\n" +
|
||||||
"Her boomerang has been replaced with a bow. The bow has infinite uses, like the boomerang, but cannot be upgraded directly, instead it will grow stronger as the huntress levels up.\n\n" +
|
"Her boomerang has been replaced with a bow. The bow has infinite uses, like the boomerang, but cannot be upgraded directly, instead it will grow stronger as the huntress levels up.\n\n" +
|
||||||
|
@ -267,8 +293,8 @@ public class ChangesScene extends PixelScene {
|
||||||
|
|
||||||
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
|
changes.addButton( new ChangeButton(Icons.get(Icons.SHPX), "Developer Commentary",
|
||||||
"_-_ Released Oct 18th, 2018\n" +
|
"_-_ Released Oct 18th, 2018\n" +
|
||||||
"_-_ 503 days after Shattered v0.6.0\n" +
|
"_-_ 501 days after Shattered v0.6.0\n" +
|
||||||
"_-_ 170 days after Shattered v0.6.5\n" +
|
"_-_ 168 days after Shattered v0.6.5\n" +
|
||||||
"\n" +
|
"\n" +
|
||||||
"Dev commentary will be added here in the future."));
|
"Dev commentary will be added here in the future."));
|
||||||
|
|
||||||
|
|
|
@ -143,7 +143,8 @@ public class WelcomeScene extends PixelScene {
|
||||||
} else {
|
} else {
|
||||||
//TODO: change the messages here in accordance with the type of patch.
|
//TODO: change the messages here in accordance with the type of patch.
|
||||||
message = Messages.get(this, "patch_intro");
|
message = Messages.get(this, "patch_intro");
|
||||||
message += "\n\n" + Messages.get(this, "patch_balance");
|
message += "\n";
|
||||||
|
//message += "\n" + Messages.get(this, "patch_balance");
|
||||||
message += "\n" + Messages.get(this, "patch_bugfixes");
|
message += "\n" + Messages.get(this, "patch_bugfixes");
|
||||||
message += "\n" + Messages.get(this, "patch_translations");
|
message += "\n" + Messages.get(this, "patch_translations");
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user