OSDN Git Service

update whatsnew
authorKoushik Dutta <koushd@gmail.com>
Wed, 6 Mar 2013 04:09:09 +0000 (20:09 -0800)
committerKoushik Dutta <koushd@gmail.com>
Wed, 6 Mar 2013 04:09:09 +0000 (20:09 -0800)
Change-Id: If23eaeedab8f25c091b5d6105fa555214c3097d8

Superuser/AndroidManifest.xml
Superuser/src/com/koushikdutta/superuser/MainActivity.java

index 81fb26c..94de1e9 100644 (file)
@@ -1,8 +1,8 @@
 <?xml version="1.0" encoding="utf-8"?>
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.koushikdutta.superuser"
-    android:versionCode="1009"
-    android:versionName="1.0.0.9" >
+    android:versionCode="1010"
+    android:versionName="1.0.1.0" >
 
     <uses-sdk
         android:minSdkVersion="8"
index f6467f6..702002c 100644 (file)
@@ -232,13 +232,14 @@ public class MainActivity extends BetterListActivity {
     }
     
     // this is intentionally not localized as it will change constantly.
-    private static final String WHATS_NEW = "Fixed PIN Protect crashing on Froyo and Gingerbread.\n\nThe Superuser binary will show a browser message if Superuser was uninstalled and su is broken.";
+    private static final String WHATS_NEW = "The Superuser binary will show a browser message if Superuser was uninstalled and su is broken.\n\nNotifications can now be configured per app.";
     protected void doWhatsNew() {
         if (WHATS_NEW.equals(Settings.getString(this, "whats_new")))
             return;
         saveWhatsNew();
         AlertDialog.Builder builder = new AlertDialog.Builder(this);
         builder.setTitle(R.string.whats_new);
+        builder.setIcon(R.drawable.ic_launcher);
         builder.setMessage(WHATS_NEW);
         builder.setPositiveButton(R.string.rate, new OnClickListener() {
             @Override