v0.6.5c: manifest commit
This commit is contained in:
parent
0cac7aed29
commit
b6cfc6db56
|
@ -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="263"
|
android:versionCode="264"
|
||||||
android:versionName="0.6.5b"
|
android:versionName="0.6.5c"
|
||||||
android:installLocation="auto">
|
android:installLocation="auto">
|
||||||
|
|
||||||
<uses-sdk
|
<uses-sdk
|
||||||
|
|
|
@ -137,13 +137,25 @@ public class ChangesScene extends PixelScene {
|
||||||
// v0.6.5
|
// v0.6.5
|
||||||
//**********************
|
//**********************
|
||||||
|
|
||||||
ChangeInfo changes = new ChangeInfo("v0.6.5b", false, "");
|
ChangeInfo changes = new ChangeInfo("v0.6.5c", false, "");
|
||||||
|
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.6.5):\n" +
|
||||||
|
"_-_ Exploit involving the timekeeper's hourglass that allowed for free attacks"));
|
||||||
|
|
||||||
|
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
|
||||||
|
"Updated Translations"));
|
||||||
|
|
||||||
|
changes = new ChangeInfo("v0.6.5a & v0.6.5b", false, "");
|
||||||
changes.hardlight( Window.TITLE_COLOR );
|
changes.hardlight( Window.TITLE_COLOR );
|
||||||
infos.add(changes);
|
infos.add(changes);
|
||||||
|
|
||||||
changes.addButton( new ChangeButton(new Image(Assets.MAGE, 0, 90, 12, 15), "Warlock",
|
changes.addButton( new ChangeButton(new Image(Assets.MAGE, 0, 90, 12, 15), "Warlock",
|
||||||
"Soul mark chance changed. Now has a 10% chance to activate per wand level, with a base of 10% at +0.\n\n" +
|
"Soul mark chance changed. Now has a 10% chance to activate per wand level, stacking multiplicatively, with a base of 10% at +0.\n" +
|
||||||
"Previous soul mark chance was 9% at base plus 6% per level.\n\n" +
|
"e.g. +0 is 10%, +1 is 19%, +2 is 27%, etc.\n\n" +
|
||||||
|
"Previous soul mark chance was 9% at base plus 6% per level, stacking linearly.\n\n" +
|
||||||
"This substantially increases soul mark chance at wand levels +1 to +5"));
|
"This substantially increases soul mark chance at wand levels +1 to +5"));
|
||||||
|
|
||||||
changes.addButton( new ChangeButton( new Image(Assets.HUNTRESS, 0, 15, 12, 15), "Huntress",
|
changes.addButton( new ChangeButton( new Image(Assets.HUNTRESS, 0, 15, 12, 15), "Huntress",
|
||||||
|
@ -151,6 +163,8 @@ public class ChangesScene extends PixelScene {
|
||||||
|
|
||||||
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
|
changes.addButton( new ChangeButton(new Image(Assets.SPINNER, 144, 0, 16, 16), Messages.get(this, "bugfixes"),
|
||||||
"Fixed (Caused by 0.6.5):\n" +
|
"Fixed (Caused by 0.6.5):\n" +
|
||||||
|
"_-_ Korean language crashes\n" +
|
||||||
|
"_-_ Viscocity deferring damage before it is blocked by armor\n" +
|
||||||
"_-_ Various rare crash bugs\n\n" +
|
"_-_ Various rare crash bugs\n\n" +
|
||||||
"Fixed (Existed prior to 0.6.5):\n" +
|
"Fixed (Existed prior to 0.6.5):\n" +
|
||||||
"_-_ Piranha incorrectly being affect by vertigo\n" +
|
"_-_ Piranha incorrectly being affect by vertigo\n" +
|
||||||
|
@ -160,18 +174,6 @@ public class ChangesScene extends PixelScene {
|
||||||
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
|
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
|
||||||
"Updated Translations"));
|
"Updated Translations"));
|
||||||
|
|
||||||
changes = new ChangeInfo("v0.6.5a", false, "");
|
|
||||||
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.6.5):\n" +
|
|
||||||
"_-_ Korean language crashes\n" +
|
|
||||||
"_-_ Viscocity deferring damage before it is blocked by armor"));
|
|
||||||
|
|
||||||
changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
|
|
||||||
"Updated Translations"));
|
|
||||||
|
|
||||||
changes = new ChangeInfo("v0.6.5", true, "");
|
changes = new ChangeInfo("v0.6.5", true, "");
|
||||||
changes.hardlight( Window.TITLE_COLOR );
|
changes.hardlight( Window.TITLE_COLOR );
|
||||||
infos.add(changes);
|
infos.add(changes);
|
||||||
|
|
|
@ -29,7 +29,6 @@ import com.shatteredpixel.shatteredpixeldungeon.SPDSettings;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
|
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.effects.BannerSprites;
|
import com.shatteredpixel.shatteredpixeldungeon.effects.BannerSprites;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.effects.Fireball;
|
import com.shatteredpixel.shatteredpixeldungeon.effects.Fireball;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.messages.Languages;
|
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
|
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton;
|
import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton;
|
||||||
import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextMultiline;
|
import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextMultiline;
|
||||||
|
@ -144,7 +143,7 @@ public class WelcomeScene extends PixelScene {
|
||||||
message = Messages.get(this, "patch_intro");
|
message = Messages.get(this, "patch_intro");
|
||||||
message += "\n\n" + Messages.get(this, "patch_bugfixes");
|
message += "\n\n" + Messages.get(this, "patch_bugfixes");
|
||||||
message += "\n" + Messages.get(this, "patch_translations");
|
message += "\n" + Messages.get(this, "patch_translations");
|
||||||
message += "\n" + Messages.get(this, "patch_balance");
|
//message += "\n" + Messages.get(this, "patch_balance");
|
||||||
|
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue
Block a user