v0.7.0c: manifest commit

This commit is contained in:
Evan Debenham 2018-11-10 22:28:39 -05:00
parent 9ac4ab1669
commit 24a22626ee
2 changed files with 11 additions and 4 deletions

View File

@ -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="310" android:versionCode="311"
android:versionName="0.7.0b" android:versionName="0.7.0c"
android:installLocation="auto"> android:installLocation="auto">
<uses-feature <uses-feature

View File

@ -148,7 +148,7 @@ public class ChangesScene extends PixelScene {
changes.hardlight( Window.TITLE_COLOR ); changes.hardlight( Window.TITLE_COLOR );
infos.add(changes); infos.add(changes);
changes = new ChangeInfo("v0.7.0b", false, null); changes = new ChangeInfo("v0.7.0b & v0.7.0c", false, null);
changes.hardlight( Window.TITLE_COLOR ); changes.hardlight( Window.TITLE_COLOR );
infos.add(changes); infos.add(changes);
@ -164,6 +164,7 @@ public class ChangesScene extends PixelScene {
"_-_ Adjusted bone pile functionality to make it more clear that a spawning wraith means an item is cursed. Also fixed an exploit where items could be thrown into bone piles to check if they were cursed.")); "_-_ Adjusted bone pile functionality to make it more clear that a spawning wraith means an item is cursed. Also fixed an exploit where items could be thrown into bone piles to check if they were cursed."));
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"),
"v0.7.0b:\n" +
"Fixed (Caused by v0.7.0):\n" + "Fixed (Caused by v0.7.0):\n" +
"_-_ Exotic items not being identified in rankings (will not fix old rankings)\n" + "_-_ Exotic items not being identified in rankings (will not fix old rankings)\n" +
"_-_ Toolkit rarely being able to go above 100% charge\n" + "_-_ Toolkit rarely being able to go above 100% charge\n" +
@ -172,7 +173,13 @@ public class ChangesScene extends PixelScene {
"_-_ Bolas incorrectly requiring 15 strength\n" + "_-_ Bolas incorrectly requiring 15 strength\n" +
"_-_ Non-heroes being able to use reach weapons through walls\n" + "_-_ Non-heroes being able to use reach weapons through walls\n" +
"_-_ Antimagic glyph applying to more effects when used by the sad ghost\n" + "_-_ Antimagic glyph applying to more effects when used by the sad ghost\n" +
"_-_ Some items not being known as uncursed when sold from shops")); "_-_ Some items not being known as uncursed when sold from shops\n\n" +
"v0.7.0c:\n" +
"Fixed (Caused by v0.7.0):\n" +
"_-_ Non-heroes not using reach weapons properly\n\n" +
"Fixed (Existed before v0.7.0):\n" +
"_-_ Obfuscation glyph not improving every upgrade\n" +
"_-_ Magical sleep rarely cancelling paralysis"));
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"));