Skip to content

Commit

Permalink
v0.6.5c: manifest commit
Browse files Browse the repository at this point in the history
  • Loading branch information
00-Evan committed May 18, 2018
1 parent 0cac7ae commit b6cfc6d
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 19 deletions.
4 changes: 2 additions & 2 deletions core/src/main/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="263"
android:versionName="0.6.5b"
android:versionCode="264"
android:versionName="0.6.5c"
android:installLocation="auto">

<uses-sdk
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -137,37 +137,39 @@ public void onClick(float x, float y) {
// 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 );
infos.add(changes);

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" +
"Previous soul mark chance was 9% at base plus 6% per level.\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" +
"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"));

changes.addButton( new ChangeButton( new Image(Assets.HUNTRESS, 0, 15, 12, 15), "Huntress",
"Huntress ranged weapon durability boost now stacks with magical holster durability boost, for a total of 180% durability."));

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\n" +
"_-_ Various rare crash bugs\n\n" +
"Fixed (Existed prior to 0.6.5):\n" +
"_-_ Piranha incorrectly being affect by vertigo\n" +
"_-_ Ambitious imp spawning on top of traps\n" +
"_-_ Enemies spawning faster than intended in specific cases"));

changes.addButton( new ChangeButton(Icons.get(Icons.LANGS), Messages.get(this, "language"),
"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"));
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,6 @@
import com.shatteredpixel.shatteredpixeldungeon.ShatteredPixelDungeon;
import com.shatteredpixel.shatteredpixeldungeon.effects.BannerSprites;
import com.shatteredpixel.shatteredpixeldungeon.effects.Fireball;
import com.shatteredpixel.shatteredpixeldungeon.messages.Languages;
import com.shatteredpixel.shatteredpixeldungeon.messages.Messages;
import com.shatteredpixel.shatteredpixeldungeon.ui.RedButton;
import com.shatteredpixel.shatteredpixeldungeon.ui.RenderedTextMultiline;
Expand Down Expand Up @@ -144,7 +143,7 @@ protected void onClick() {
message = Messages.get(this, "patch_intro");
message += "\n\n" + Messages.get(this, "patch_bugfixes");
message += "\n" + Messages.get(this, "patch_translations");
message += "\n" + Messages.get(this, "patch_balance");
//message += "\n" + Messages.get(this, "patch_balance");

}
} else {
Expand Down

0 comments on commit b6cfc6d

Please sign in to comment.