From fceb09901b2ef6c2654e998c4d76c494918618da Mon Sep 17 00:00:00 2001 From: Philipp Schaefer Date: Tue, 14 May 2013 22:00:54 +0200 Subject: [PATCH] * got rid of the 'clear cache' icon. there is no use for it anymore * bumped version number since there were a lot of improvements since 3.6 --- mobile/AndroidManifest.xml | 4 ++-- mobile/res/menu/main.xml | 7 ------- mobile/res/values/strings.xml | 1 - mobile/src/com/cradle/iitc_mobile/IITC_Mobile.java | 8 +------- 4 files changed, 3 insertions(+), 17 deletions(-) diff --git a/mobile/AndroidManifest.xml b/mobile/AndroidManifest.xml index 25606ea8..942e160b 100644 --- a/mobile/AndroidManifest.xml +++ b/mobile/AndroidManifest.xml @@ -1,8 +1,8 @@ + android:versionCode="19" + android:versionName="0.3.7" > - - Settings Reload IITC Print Version - Clear Cache Toggle fullscreen Get Location local diff --git a/mobile/src/com/cradle/iitc_mobile/IITC_Mobile.java b/mobile/src/com/cradle/iitc_mobile/IITC_Mobile.java index a30c8fd9..9af53094 100644 --- a/mobile/src/com/cradle/iitc_mobile/IITC_Mobile.java +++ b/mobile/src/com/cradle/iitc_mobile/IITC_Mobile.java @@ -68,7 +68,7 @@ public class IITC_Mobile extends Activity { user_loc = sharedPreferences.getBoolean("pref_user_loc", false); if (key.equals("pref_fullscreen_actionbar")) { - fullscreen_actionbar =sharedPreferences.getBoolean("pref_fullscreen_actionbar", + fullscreen_actionbar = sharedPreferences.getBoolean("pref_fullscreen_actionbar", false); if (fullscreen_mode) IITC_Mobile.this.getActionBar().hide(); @@ -251,12 +251,6 @@ public class IITC_Mobile extends Activity { this.loadUrl(intel_url); actionBar.setTitle(getString(R.string.menu_map)); return true; - // clear cache - case R.id.cache_clear : - iitc_view.clearHistory(); - iitc_view.clearFormData(); - iitc_view.clearCache(true); - return true; case R.id.toggle_fullscreen : toggleFullscreen(); return true;