]> gitweb.fperrin.net Git - Dictionary.git/commitdiff
Bump version.
authorReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sun, 5 Apr 2020 17:47:01 +0000 (19:47 +0200)
committerReimar Döffinger <Reimar.Doeffinger@gmx.de>
Sun, 5 Apr 2020 17:47:01 +0000 (19:47 +0200)
Also remove the first start/version update text.
It does not seem useful enough to bother people
with having it click ok...

AndroidManifest.xml
src/com/hughes/android/dictionary/DictionaryManagerActivity.java

index 94bf28e414f424d940fc50d4882e714c29584001..a6fd7a6ff03114d6004486bd8c9ed7db02f36406 100644 (file)
@@ -2,8 +2,8 @@
 <manifest xmlns:android="http://schemas.android.com/apk/res/android"
     package="com.hughes.android.dictionary"
     android:installLocation="auto"
-    android:versionCode="104"
-    android:versionName="5.4.9" >
+    android:versionCode="105"
+    android:versionName="5.5.0" >
 
     <uses-feature
         android:name="android.hardware.touchscreen"
index be02da3c329cbefc10b215055bca65378e590ab6..5d7e6039dfe1695366c41429c988621bd4dff112 100644 (file)
@@ -346,6 +346,9 @@ public class DictionaryManagerActivity extends AppCompatActivity {
             }
         });
 
+        /*
+        Disable version update notification, I don't maintain the text really
+        and I don't think it is very useful.
         final SharedPreferences prefs = PreferenceManager.getDefaultSharedPreferences(this);
         final String thanksForUpdatingLatestVersion = getString(R.string.thanksForUpdatingVersion);
         if (!prefs.getString(C.THANKS_FOR_UPDATING_VERSION, "").equals(
@@ -355,6 +358,7 @@ public class DictionaryManagerActivity extends AppCompatActivity {
             prefs.edit().putString(C.THANKS_FOR_UPDATING_VERSION, thanksForUpdatingLatestVersion)
             .commit();
         }
+        */
         IntentFilter downloadManagerIntents = new IntentFilter(DownloadManager.ACTION_DOWNLOAD_COMPLETE);
         downloadManagerIntents.addAction(DownloadManager.ACTION_NOTIFICATION_CLICKED);
         registerReceiver(broadcastReceiver, downloadManagerIntents);