From 7d53f35714f1e5cbc8ba058b648124215420545e Mon Sep 17 00:00:00 2001 From: Philipp Schaefer Date: Tue, 14 May 2013 19:43:08 +0200 Subject: [PATCH 1/2] fixed indentation on speech-search plugin header to match the others --- plugins/speech-search.user.js | 22 +++++++++++----------- 1 file changed, 11 insertions(+), 11 deletions(-) diff --git a/plugins/speech-search.user.js b/plugins/speech-search.user.js index 81d1e2bd..3b90e8e5 100644 --- a/plugins/speech-search.user.js +++ b/plugins/speech-search.user.js @@ -1,15 +1,15 @@ // ==UserScript== -// @id iitc-plugin-speech-search -// @name IITC Plugin: Speech Search -// @version 0.0.1.@@DATETIMEVERSION@@ -// @namespace https://github.com/jonatkins/ingress-intel-total-conversion -// @updateURL @@UPDATEURL@@ -// @downloadURL @@DOWNLOADURL@@ -// @description [@@BUILDNAME@@-@@BUILDDATE@@] Allow speech input for location search (webkit only for now - NOT Firefox) -// @include https://www.ingress.com/intel* -// @include http://www.ingress.com/intel* -// @match https://www.ingress.com/intel* -// @match http://www.ingress.com/intel* +// @id iitc-plugin-speech-search +// @name IITC Plugin: Speech Search +// @version 0.0.1.@@DATETIMEVERSION@@ +// @namespace https://github.com/jonatkins/ingress-intel-total-conversion +// @updateURL @@UPDATEURL@@ +// @downloadURL @@DOWNLOADURL@@ +// @description [@@BUILDNAME@@-@@BUILDDATE@@] Allow speech input for location search (webkit only for now - NOT Firefox) +// @include https://www.ingress.com/intel* +// @include http://www.ingress.com/intel* +// @match https://www.ingress.com/intel* +// @match http://www.ingress.com/intel* // ==/UserScript== function wrapper() { From fceb09901b2ef6c2654e998c4d76c494918618da Mon Sep 17 00:00:00 2001 From: Philipp Schaefer Date: Tue, 14 May 2013 22:00:54 +0200 Subject: [PATCH 2/2] * 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;