V0.2.0: final commit!

This commit is contained in:
Evan Debenham 2014-09-15 20:30:10 -04:00
parent f0c00d8961
commit 93b7d2ea3f
2 changed files with 4 additions and 4 deletions

View File

@ -2,7 +2,7 @@
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.shatteredpixel.shatteredpixeldungeon"
android:versionCode="5"
android:versionName="0.2.0INDEV"
android:versionName="0.2.0"
android:installLocation="auto">
<uses-permission android:name="android.permission.VIBRATE"/>

View File

@ -41,11 +41,11 @@ public class WelcomeScene extends PixelScene {
private static final String TXT_Future =
"It seems that your current saves are from a future version of Shattered Pixel Dungeon.\n\n"+
"You have either just reverted to a previous version, or something has gone buggy.\n\n"+
"You have either messing around with backup software, or something has gone buggy.\n\n"+
"Regardless, tread with caution! Your saves may contain things which don't exist in this version, "+
"this could cause some very weird errors to occur.";
private static final String LNK = "goo.gl/CwrJd6";
private static final String LNK = "https://drive.google.com/folderview?id=0B1jhmo3hgqJtWWM0M2VQOGpiLTQ";
@Override
public void create() {
@ -113,7 +113,7 @@ public class WelcomeScene extends PixelScene {
RedButton revert = new RedButton("Revert") {
@Override
protected void onClick() {
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("http://" + LNK));
Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse(LNK));
Game.instance.startActivity(intent);
}
};