fenix-patches
parent
cd1540afd8
commit
e55c715cbd
|
@ -1 +1 @@
|
||||||
Subproject commit 868ab5a098f62933b83eb70dd41126b3971ef4fc
|
Subproject commit 2f135938b7842257f108e0b4274a6f5bd0f86189
|
|
@ -18,7 +18,7 @@ object FeatureFlags {
|
||||||
* This feature does not only depend on this flag. It requires the AMO collection override to
|
* This feature does not only depend on this flag. It requires the AMO collection override to
|
||||||
* be enabled which is behind the Secret Settings.
|
* be enabled which is behind the Secret Settings.
|
||||||
* */
|
* */
|
||||||
val customExtensionCollectionFeature = Config.channel.isNightlyOrDebug || Config.channel.isBeta
|
val customExtensionCollectionFeature = true
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Pull-to-refresh allows you to pull the web content down far enough to have the page to
|
* Pull-to-refresh allows you to pull the web content down far enough to have the page to
|
||||||
|
|
|
@ -39,6 +39,8 @@ object SupportUtils {
|
||||||
const val GOOGLE_US_URL = "https://www.google.com/webhp?client=firefox-b-1-m&channel=ts"
|
const val GOOGLE_US_URL = "https://www.google.com/webhp?client=firefox-b-1-m&channel=ts"
|
||||||
const val GOOGLE_XX_URL = "https://www.google.com/webhp?client=firefox-b-m&channel=ts"
|
const val GOOGLE_XX_URL = "https://www.google.com/webhp?client=firefox-b-m&channel=ts"
|
||||||
const val WHATS_NEW_URL = "https://github.com/LeOS-GSI/LeOS-Ice-browser/releases"
|
const val WHATS_NEW_URL = "https://github.com/LeOS-GSI/LeOS-Ice-browser/releases"
|
||||||
|
const val FDROID_URL = "https://f-droid.org/"
|
||||||
|
const val EFF_URL = "https://www.eff.org/"
|
||||||
|
|
||||||
enum class SumoTopic(internal val topicStr: String) {
|
enum class SumoTopic(internal val topicStr: String) {
|
||||||
HELP("faq-android"),
|
HELP("faq-android"),
|
||||||
|
|
|
@ -3,7 +3,8 @@
|
||||||
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
- License, v. 2.0. If a copy of the MPL was not distributed with this
|
||||||
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
- file, You can obtain one at http://mozilla.org/MPL/2.0/. -->
|
||||||
<androidx.preference.PreferenceScreen
|
<androidx.preference.PreferenceScreen
|
||||||
xmlns:android="http://schemas.android.com/apk/res/android">
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
||||||
|
xmlns:app="http://schemas.android.com/apk/res-auto">
|
||||||
<androidx.preference.Preference
|
<androidx.preference.Preference
|
||||||
android:icon="@drawable/ic_camera_enabled"
|
android:icon="@drawable/ic_camera_enabled"
|
||||||
android:key="@string/pref_key_phone_feature_camera"
|
android:key="@string/pref_key_phone_feature_camera"
|
||||||
|
@ -44,7 +45,8 @@
|
||||||
android:icon="@drawable/ic_link"
|
android:icon="@drawable/ic_link"
|
||||||
android:key="@string/pref_key_browser_feature_media_key_system_access"
|
android:key="@string/pref_key_browser_feature_media_key_system_access"
|
||||||
android:title="@string/preference_phone_feature_media_key_system_access"
|
android:title="@string/preference_phone_feature_media_key_system_access"
|
||||||
android:summary="@string/preference_option_phone_feature_ask_to_allow"/>
|
android:summary="@string/preference_option_phone_feature_ask_to_allow"
|
||||||
|
app:isPreferenceVisible="false"/>
|
||||||
|
|
||||||
<androidx.preference.Preference
|
<androidx.preference.Preference
|
||||||
android:icon="@drawable/ic_autoplay"
|
android:icon="@drawable/ic_autoplay"
|
||||||
|
|
|
@ -64,6 +64,7 @@
|
||||||
android:key="@string/pref_key_browser_feature_media_key_system_access"
|
android:key="@string/pref_key_browser_feature_media_key_system_access"
|
||||||
android:title="@string/preference_phone_feature_media_key_system_access"
|
android:title="@string/preference_phone_feature_media_key_system_access"
|
||||||
android:summary="@string/preference_option_phone_feature_ask_to_allow"
|
android:summary="@string/preference_option_phone_feature_ask_to_allow"
|
||||||
|
app:isPreferenceVisible="false"
|
||||||
app:allowDividerBelow="true"/>
|
app:allowDividerBelow="true"/>
|
||||||
|
|
||||||
<androidx.preference.Preference
|
<androidx.preference.Preference
|
||||||
|
|
Loading…
Reference in New Issue