v0.3.0c: manifest commit

This commit is contained in:
Evan Debenham 2015-06-07 14:23:26 -04:00
parent e0187cd233
commit 8c42ebda5e
3 changed files with 18 additions and 8 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="43" android:versionCode="44"
android:versionName="0.3.0b" android:versionName="0.3.0c"
android:installLocation="auto"> android:installLocation="auto">
<uses-permission android:name="android.permission.VIBRATE"/> <uses-permission android:name="android.permission.VIBRATE"/>

View File

@ -310,8 +310,7 @@ public abstract class Level implements Bundlable {
adjustMapSize(); adjustMapSize();
//for pre-0.3.0c saves //for pre-0.3.0c saves
//TODO: update to final value of 44 after testing if (version < 44){
if (version < 43){
map = Terrain.convertTrapsFrom43( map, traps ); map = Terrain.convertTrapsFrom43( map, traps );
} }

View File

@ -30,13 +30,24 @@ public class WelcomeScene extends PixelScene {
"Happy Dungeoneering!"; "Happy Dungeoneering!";
private static final String TXT_Update = private static final String TXT_Update =
"v0.3.0c:\n" +
"- Lots of under-the-hood changes\n" +
"(let me know if you run into any bugs)\n" +
"- Many bugfixes\n" +
"Rebalances:\n" +
"- Wand of Corruption & Venom rebalanced.\n" +
"- Mages staff now has +1 max charges\n" +
"- Mage now partially IDs wands on use\n" +
"- Magic missile wand reduced to 3 max charges\n" +
"- Warlock gets more recharge from food\n" +
"- Battlemage only recharges his staff\n" +
"- Many battlemage effects tweaked\n" +
"- Yog Dzewa now heals 1hp per turn\n" +
"\n" +
"v0.3.0b & v0.3.0a:\n" + "v0.3.0b & v0.3.0a:\n" +
"- Fixed many bugs\n" + "- Fixed many bugs\n" +
"- Buffed mage and huntress base damages to compensate for increased rat numbers on floor 1.\n" + "- Buffed mage and huntress base damages to compensate for increased rat numbers on floor 1.\n" +
"\n" + "\n" +
"I am still looking for bug reports and feedback on the latest update, make sure to let me know if you have any thoughts!\n" +
"\n" +
"\n" +
"v0.3.0:\n" + "v0.3.0:\n" +
"Mage reworked!:\n" + "Mage reworked!:\n" +
"- No longer starts with knuckledusters or a wand\n" + "- No longer starts with knuckledusters or a wand\n" +