added GM/TM option 'require secure updates' for plugin updates

This commit is contained in:
Philipp Schaefer
2014-05-17 11:17:02 +02:00
parent dcd6fce41e
commit 2a3441003b
4 changed files with 17 additions and 3 deletions

View File

@ -135,6 +135,8 @@
<string name="pref_update_plugins_interval_sum">How often IITCm should search for new plugin versions</string>
<string name="pref_force_plugin_update">Force plugin update</string>
<string name="pref_force_plugin_update_sum">Update all enabled user plugins</string>
<string name="pref_secure_updates">Require secure updates</string>
<string name="pref_secure_updates_sum">If enabled, only https updates are handled</string>
<string-array name="pref_hide_fullscreen">
<item>System Bar</item>

View File

@ -106,6 +106,11 @@
android:key="pref_force_plugin_update"
android:title="@string/pref_force_plugin_update"
android:summary="@string/pref_force_plugin_update_sum"/>
<CheckBoxPreference
android:defaultValue="true"
android:key="pref_secure_updates"
android:summary="@string/pref_secure_updates_sum"
android:title="@string/pref_secure_updates"/>
</PreferenceCategory>
<PreferenceCategory
android:key="pref_advanced_tweaks_cat"