├── fastlane └── metadata │ └── android │ ├── en-US │ ├── title.txt │ ├── short_description.txt │ ├── images │ │ ├── icon.png │ │ ├── featureGraphic.png │ │ └── phoneScreenshots │ │ │ └── Mull.png │ └── full_description.txt │ ├── zh-CN │ └── short_description.txt │ ├── ja │ └── short_description.txt │ ├── he │ └── short_description.txt │ ├── ar │ └── short_description.txt │ ├── et │ └── short_description.txt │ ├── is │ └── short_description.txt │ ├── tr │ └── short_description.txt │ ├── de │ └── short_description.txt │ ├── fi │ └── short_description.txt │ ├── pt-BR │ └── short_description.txt │ ├── sq │ └── short_description.txt │ ├── uk │ └── short_description.txt │ ├── es │ └── short_description.txt │ ├── fr │ └── short_description.txt │ ├── it │ └── short_description.txt │ ├── pt-PT │ └── short_description.txt │ ├── pt │ └── short_description.txt │ ├── cs │ └── short_description.txt │ ├── ro │ └── short_description.txt │ ├── sw │ └── short_description.txt │ ├── ru │ └── short_description.txt │ └── pl │ └── short_description.txt ├── fenix-overlay ├── ic_launcher-web.webp ├── res │ ├── drawable │ │ ├── ic_eff.webp │ │ ├── ic_fdroid.webp │ │ ├── ic_launcher_foreground.xml │ │ ├── ic_launcher_private_foreground.xml │ │ └── ic_launcher_monochrome.xml │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_launcher_private.webp │ │ └── ic_launcher_private_round.webp │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_launcher_private.webp │ │ └── ic_launcher_private_round.webp │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_launcher_private.webp │ │ └── ic_launcher_private_round.webp │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_launcher_private.webp │ │ └── ic_launcher_private_round.webp │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ ├── ic_launcher_round.webp │ │ ├── ic_launcher_private.webp │ │ └── ic_launcher_private_round.webp │ ├── drawable-hdpi │ │ ├── ic_wordmark_logo.webp │ │ ├── fenix_search_widget.webp │ │ ├── ic_logo_wordmark_normal.webp │ │ ├── ic_wordmark_text_normal.webp │ │ ├── ic_logo_wordmark_private.webp │ │ └── ic_wordmark_text_private.webp │ ├── drawable-mdpi │ │ ├── ic_wordmark_logo.webp │ │ ├── ic_logo_wordmark_normal.webp │ │ ├── ic_wordmark_text_normal.webp │ │ ├── ic_logo_wordmark_private.webp │ │ └── ic_wordmark_text_private.webp │ ├── drawable-xhdpi │ │ ├── ic_wordmark_logo.webp │ │ ├── ic_logo_wordmark_normal.webp │ │ ├── ic_logo_wordmark_private.webp │ │ ├── ic_wordmark_text_normal.webp │ │ └── ic_wordmark_text_private.webp │ ├── drawable-xxhdpi │ │ ├── ic_wordmark_logo.webp │ │ ├── ic_logo_wordmark_normal.webp │ │ ├── ic_logo_wordmark_private.webp │ │ ├── ic_wordmark_text_normal.webp │ │ └── ic_wordmark_text_private.webp │ ├── drawable-xxxhdpi │ │ ├── ic_wordmark_logo.webp │ │ ├── ic_logo_wordmark_normal.webp │ │ ├── ic_wordmark_text_normal.webp │ │ ├── ic_logo_wordmark_private.webp │ │ └── ic_wordmark_text_private.webp │ ├── values │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_private_background.xml │ └── mipmap-anydpi-v26 │ │ ├── ic_launcher_round.xml │ │ ├── ic_launcher_private.xml │ │ ├── ic_launcher_private_round.xml │ │ └── ic_launcher.xml └── ic_launcher_private-web.webp ├── .gitlab-ci.yml ├── locales ├── https_only.patch ├── gecko-fix-125-compile.patch ├── a-c-overlay └── components │ └── feature │ └── search │ └── src │ └── main │ └── assets │ ├── searchplugins │ ├── alexandria.xml │ ├── metager.xml │ ├── brave.xml │ ├── mojeek.xml │ ├── startpage.xml │ ├── google.xml │ ├── qwantlite.xml │ ├── ddghtml.xml │ └── ddglite.xml │ └── search │ └── list.json ├── preferences ├── LICENSE-arkenfox └── userjs-brace.js ├── paths.sh ├── strict_etp.patch ├── gen_wordmark.sh ├── README.md ├── gecko-liberate.patch ├── prebuild.sh ├── gecko-localize_maven.patch └── COPYING /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Mull 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 隐私导向的网页浏览器 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ja/short_description.txt: -------------------------------------------------------------------------------- 1 | プライバシー指向のウェブブラウザ 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/he/short_description.txt: -------------------------------------------------------------------------------- 1 | דפדפן אינטרנט מוכוון פרטיות 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/short_description.txt: -------------------------------------------------------------------------------- 1 | متصفح الويب الموجه نحو الخصوصية 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Privacy oriented web browser 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/et/short_description.txt: -------------------------------------------------------------------------------- 1 | Privaatsuskeskne veebibrauser 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/is/short_description.txt: -------------------------------------------------------------------------------- 1 | Vafri með áherslu á gagnaleynd 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/short_description.txt: -------------------------------------------------------------------------------- 1 | Gizlilik odaklı web tarayıcısı 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/short_description.txt: -------------------------------------------------------------------------------- 1 | Datenschutzorientierter Webbrowser 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fi/short_description.txt: -------------------------------------------------------------------------------- 1 | Yksityisyyttä korostava nettiselain 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Navegador web focado em privacidade 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sq/short_description.txt: -------------------------------------------------------------------------------- 1 | Shfletues i orientuar nga privatësia 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/short_description.txt: -------------------------------------------------------------------------------- 1 | Орієнтований на приватність переглядач 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/short_description.txt: -------------------------------------------------------------------------------- 1 | Navegador web orientado a la privacidad 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/short_description.txt: -------------------------------------------------------------------------------- 1 | Navigateur Web axé sur la confidentialité 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/short_description.txt: -------------------------------------------------------------------------------- 1 | Browser web focalizzato sulla riservatezza 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-PT/short_description.txt: -------------------------------------------------------------------------------- 1 | Navegador web orientado à privacidade 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pt/short_description.txt: -------------------------------------------------------------------------------- 1 | Navegador web orientado para a privacidade 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/short_description.txt: -------------------------------------------------------------------------------- 1 | Webový prohlížeč zaměřený na ochranu soukromí 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ro/short_description.txt: -------------------------------------------------------------------------------- 1 | Navigator web orientat spre confidențialitate 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sw/short_description.txt: -------------------------------------------------------------------------------- 1 | Kivinjari cha wavuti kinachoelekezwa na faragha 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/short_description.txt: -------------------------------------------------------------------------------- 1 | Веб-браузер, ориентированный на конфиденциальность 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/short_description.txt: -------------------------------------------------------------------------------- 1 | Przeglądarka internetowa zorientowana na ochronę prywatności 2 | -------------------------------------------------------------------------------- /fenix-overlay/ic_launcher-web.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/ic_launcher-web.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable/ic_eff.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable/ic_eff.webp -------------------------------------------------------------------------------- /fenix-overlay/ic_launcher_private-web.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/ic_launcher_private-web.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable/ic_fdroid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable/ic_fdroid.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/en-US/images/icon.png -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-hdpi/ic_wordmark_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-hdpi/ic_wordmark_logo.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-mdpi/ic_wordmark_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-mdpi/ic_wordmark_logo.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xhdpi/ic_wordmark_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xhdpi/ic_wordmark_logo.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxhdpi/ic_wordmark_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxhdpi/ic_wordmark_logo.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-hdpi/ic_launcher_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-hdpi/ic_launcher_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-mdpi/ic_launcher_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-mdpi/ic_launcher_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xhdpi/ic_launcher_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xhdpi/ic_launcher_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/featureGraphic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/en-US/images/featureGraphic.png -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-hdpi/fenix_search_widget.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-hdpi/fenix_search_widget.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxxhdpi/ic_wordmark_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxxhdpi/ic_wordmark_logo.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xxhdpi/ic_launcher_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xxhdpi/ic_launcher_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xxxhdpi/ic_launcher_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xxxhdpi/ic_launcher_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-hdpi/ic_logo_wordmark_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-hdpi/ic_logo_wordmark_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-hdpi/ic_wordmark_text_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-hdpi/ic_wordmark_text_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-mdpi/ic_logo_wordmark_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-mdpi/ic_logo_wordmark_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-mdpi/ic_wordmark_text_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-mdpi/ic_wordmark_text_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-hdpi/ic_launcher_private_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-hdpi/ic_launcher_private_round.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-mdpi/ic_launcher_private_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-mdpi/ic_launcher_private_round.webp -------------------------------------------------------------------------------- /fenix-overlay/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #009688 4 | -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-hdpi/ic_logo_wordmark_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-hdpi/ic_logo_wordmark_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-hdpi/ic_wordmark_text_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-hdpi/ic_wordmark_text_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-mdpi/ic_logo_wordmark_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-mdpi/ic_logo_wordmark_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-mdpi/ic_wordmark_text_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-mdpi/ic_wordmark_text_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xhdpi/ic_logo_wordmark_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xhdpi/ic_logo_wordmark_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xhdpi/ic_logo_wordmark_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xhdpi/ic_logo_wordmark_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xhdpi/ic_wordmark_text_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xhdpi/ic_wordmark_text_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xhdpi/ic_wordmark_text_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xhdpi/ic_wordmark_text_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxhdpi/ic_logo_wordmark_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxhdpi/ic_logo_wordmark_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxhdpi/ic_logo_wordmark_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxhdpi/ic_logo_wordmark_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxhdpi/ic_wordmark_text_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxhdpi/ic_wordmark_text_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxhdpi/ic_wordmark_text_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxhdpi/ic_wordmark_text_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxxhdpi/ic_logo_wordmark_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxxhdpi/ic_logo_wordmark_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxxhdpi/ic_wordmark_text_normal.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxxhdpi/ic_wordmark_text_normal.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xhdpi/ic_launcher_private_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xhdpi/ic_launcher_private_round.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xxhdpi/ic_launcher_private_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xxhdpi/ic_launcher_private_round.webp -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-xxxhdpi/ic_launcher_private_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xxxhdpi/ic_launcher_private_round.webp -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/images/phoneScreenshots/Mull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/en-US/images/phoneScreenshots/Mull.png -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxxhdpi/ic_logo_wordmark_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxxhdpi/ic_logo_wordmark_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable-xxxhdpi/ic_wordmark_text_private.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxxhdpi/ic_wordmark_text_private.webp -------------------------------------------------------------------------------- /fenix-overlay/res/values/ic_launcher_private_background.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | #383371 4 | -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- 1 | --- 2 | before_script: 3 | - apt-get --quiet update --yes 4 | - apt-get --quiet install --yes yamllint shellcheck 5 | build: 6 | script: 7 | - yamllint .gitlab-ci.yml 8 | - shellcheck -x prebuild.sh build.sh 9 | -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-anydpi-v26/ic_launcher_private.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-anydpi-v26/ic_launcher_private_round.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- 1 | This is a privacy oriented and deblobbed web browser based on Mozilla technology. It enables many features upstreamed by the [https://wiki.mozilla.org/Security/Tor_Uplift Tor Uplift project] using preferences from the [https://github.com/arkenfox/user.js arkenfox-user.js project]. It is compiled from source and proprietary blobs are removed using scripts by Relan from [https://gitlab.com/relan/fennecbuild here]. It is recommended to install 'uBlock Origin'. 2 | -------------------------------------------------------------------------------- /locales: -------------------------------------------------------------------------------- 1 | ace ach af ak an ar as ast az be bg bn bn-BD bn-IN bo br brx bs ca ca-valencia cak ckb crh cs csb cy da de dsb el en-CA en-GB en-ZA eo es-AR es-CL es-ES es-MX et eu fa ff fi fr frp fur fy-NL ga-IE gd gl gn gu-IN gv he hi-IN hr hsb hto hu hy-AM hye ia id ilo is it ixl ja ja-JP-mac ka kab kk km kn ko kok ks ku lb lg lij lo lt ltg lv mai meh mix mk ml mn mr ms my nb-NO ne-NP nl nn-NO nr nso ny oc or pa-IN pai pbb pl ppl pt-BR pt-PT quy qvi rm ro ru rw sah sat sc scn sco si sk skr sl son sq sr ss st sv-SE sw szl ta ta-LK te tg th tl tn tr trs ts tsz uk ur uz ve vi wo xcl xh zam zh-CN zh-TW zu 2 | -------------------------------------------------------------------------------- /https_only.patch: -------------------------------------------------------------------------------- 1 | diff -r a29897d2381c -r 2df6d3fa14ca mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt 2 | --- a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt Mon Oct 28 08:39:05 2024 -0400 3 | +++ b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt Mon Oct 28 08:39:49 2024 -0400 4 | @@ -615,7 +615,7 @@ 5 | 6 | var shouldUseHttpsOnly by booleanPreference( 7 | appContext.getPreferenceKey(R.string.pref_key_https_only), 8 | - default = false, 9 | + default = true, 10 | ) 11 | 12 | var shouldUseHttpsOnlyInAllTabs by booleanPreference( 13 | -------------------------------------------------------------------------------- /gecko-fix-125-compile.patch: -------------------------------------------------------------------------------- 1 | diff -r 2df6d3fa14ca -r f0a2d70cf468 mfbt/SmallPointerArray.h 2 | --- a/mfbt/SmallPointerArray.h Mon Oct 28 08:39:49 2024 -0400 3 | +++ b/mfbt/SmallPointerArray.h Mon Oct 28 08:40:23 2024 -0400 4 | @@ -201,9 +201,9 @@ 5 | private: 6 | T** beginInternal() const { 7 | if (first()) { 8 | - static_assert(sizeof(T*) == sizeof(Element), 9 | + static_assert(sizeof(T*) == sizeof(SmallArrayElement), 10 | "pointer ops on &first() must produce adjacent " 11 | - "Element::mValue arms"); 12 | + "SmallArrayElement::mValue arms"); 13 | return &first(); 14 | } 15 | 16 | @@ -259,7 +259,7 @@ 17 | // When !mArray[0].mValue && mArray[1].mVector, mArray[1].mVector contains 18 | // the contents of an array of arbitrary size (even less than two if it ever 19 | // contained three elements and elements were removed). 20 | - union Element { 21 | + union SmallArrayElement { 22 | T* mValue; 23 | std::vector* mVector; 24 | } mArray[2]; 25 | -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/alexandria.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Alexandria 7 | UTF-8 8 | data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAQAAAC1+jfqAAABD0lEQVQoz4XNsSuEARzG8c973nA5dXUTkZuMUmdjMNxgwnKZSDHpBruS8gdYZGI5i/fqFhaDjVU3KMqsC3VKnXqVnMHd9S7y/S1P356eH0kKIlWFpAp6acSupiNsydnXSNbSdpzImxWJzMo7sSP9uxBYUXJgxZdPhygbEIpsqzkL1Jw79W3aojkfGHLjQl1g1VLg2rG/2ewzbsKrKcPq3ns3Y8yrKfeBjCuXFhQNKGsh49Bn16a0PNjzYFlVSiyWUrXcsa2w9y2nIusJoYpcV6f8Q5jIL+at4k4km1zol9evaQNv3rCh2bFCRW3r2p6VEmtdWwzcehQbFGolChlfYoMmQ2kxYtBQwZrRTjmW/gHcxlG3bKA4DQAAAABJRU5ErkJggg== 9 | 10 | 11 | 12 | https://www.alexandria.org/ 13 | 14 | -------------------------------------------------------------------------------- /preferences/LICENSE-arkenfox: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2020 arkenfox 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/metager.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Metager 7 | UTF-8 8 | data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAA1VBMVEX/gAD/jh3/5sz/4sX/2rT/woT/nz7/kiX/////5Mj/kyb/9+//lCj/5cv/1ar/1av/4MH/+fL/587/gAH/smT/hAj/u3f//fv/pEj/vHn/ypT/q1b/hQr/+fP/ixb/zJn/vXr/797/9uz/06b/9u3/qVP/xIj/69b/zZv/1qz/t2//yJH//fr/zZr/xYv/2rX/kyf/xoz/okT/nDj/7t3/8uX/6NH/lSr/njz/z5//rVr/o0f/+vT/1Kj/27f//v3/5s3/hw7/48b/mjT/27b/2bP/wYIVxnflAAAA1klEQVQ4y73T1xKCMBAF0LVfbFixi7333rv+/yf5IsEVhPHF+5QlZybDbkL0nzicPC63x8uAD8ZIfhuAQJCDUFhEjkQBIBZnIPF+ZlJJAUh/B0QZAFkGchzkC4AkqqKqlpIfvx4Bypa9kYGKJagCtd9AvcHT/AQtYy85aFuBjqJ0ewCAfmMwNAE18W1ERGM7MLEDU62o2IGZAHNzoA9rIcCSiFZaoY97LcCGiBSt2AqwFWC3Vw/H1/qkX7m42+zSjt76fJYN+xcfn+7Vc5P0h3N/rOh/eQLhhxrRgtfb4wAAAABJRU5ErkJggg== 9 | 10 | 11 | 12 | https://metager.org/ 13 | 14 | -------------------------------------------------------------------------------- /paths.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Fennec build scripts 4 | # Copyright (C) 2020-2024 Andrew Nayenko, Tavi 5 | # 6 | # This program is free software: you can redistribute it and/or modify 7 | # it under the terms of the GNU Affero General Public License as 8 | # published by the Free Software Foundation, either version 3 of the 9 | # License, or (at your option) any later version. 10 | # 11 | # This program is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | # GNU Affero General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU Affero General Public License 17 | # along with this program. If not, see . 18 | # 19 | 20 | readonly patches=$(dirname "$(realpath "$0")") 21 | readonly android_components=$(realpath ../srclib/MozFennec/mobile/android/android-components) 22 | readonly application_services=$(realpath ../srclib/MozAppServices) 23 | readonly glean=$(realpath ../srclib/MozGlean) 24 | readonly fenix=$(realpath ../srclib/MozFennec/mobile/android/fenix) 25 | readonly mozilla_release=$(realpath ../srclib/MozFennec) 26 | readonly rustup=$(realpath ../srclib/rustup) 27 | readonly wasi=$(realpath ../srclib/wasi-sdk) 28 | readonly gmscore=$(realpath ../srclib/gmscore) 29 | readonly llvm=$(realpath ../srclib/llvm) 30 | readonly llvm_android=$(realpath ../srclib/llvm_android) 31 | readonly toolchain_utils=$(realpath ../srclib/toolchain-utils) 32 | -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/brave.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Brave 7 | UTF-8 8 | data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAMAAABEpIrGAAAAnFBMVEVHcEwXBgA3DQl/HBF5HBLeMCmwKBLXMyC6KQ3dMBLbMxjuOijgLgviKwHwOiryOyXwMAv5PST0LwnuLQD7QiXwLQD1LQD7LwjxNQr4Myf5OR/yPxf4OS3/Pyb/QivxTCj+SjD/VT7xXT35alL6d2L8iHb4loX5o5f7sKX0w73/zMb00s//1M754uH76+z18PT39ff/9fT8+vz///96nB6rAAAAFXRSTlMAAw0ZJDRIWGV2kKSuwcLT1e3v+/wkomRQAAABoklEQVR42nWT2WKCMBBFi6DgUpUlasUgCGGPIPz/v3WSkECV3hce7snMnUz4mkhT+pqVfnQGHfVZ/3BVOizeTG1pGvvbRPuludQm/vZ2+/nQVhv9IMDX6xmEk8Rj3ytyXXcniTX4OHq+6rzsurYpsuJJ7wi0HoAVAEHdcwHAVV0AWA3Awg5w1r9oTQVQFRVtMoQcOYsZBHHflyTEUd61+R1d4qJpHgiZKqNo8Moj0rXEzyhvgtBOU0ApEuSsQipSFAxQLSLKgaTu2uouUvoIWUMGA6bgRIlfEPKSg8/mdA05xYHfQ9+T8Nm11I+Fj45yCm0DAI4hZYqj8JRQNgJoo+7aZEDUsyaRxxo0/CLNcdMeACmPmREeMQXf1cdt7iWQ43Mqge/JvjcAhHVPSUiIHxcwo4wg14UDIOIwgzGfqf+4ILkqtS4MCoZlUfDVqsYQbJCSAQXUHyPIN4OFsq7NTuCOr0Xetj0QhJwE4Bh/n7XlDcRZAK6lvT38lT0FnJX0x9/O2I3Azpj7+xaWLQDH4hN+CoowQB2fL6KO/1NE19+O/wIwPEoAZi8ATQAAAABJRU5ErkJggg== 9 | 10 | 11 | 12 | 13 | 14 | 15 | https://search.brave.com/ 16 | 17 | -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/mojeek.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Mojeek 7 | UTF-8 8 | data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAIAAAD8GO2jAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA8pJREFUeNrsVk1vG0UY3tnvtb3+SJpgO01cmkQKUhURqBCC8iE+EoSKED1QBBUKB0r7AzjwB+BSUX4AXDkhFATHCJAKKpSegDZqRVFpGtLETmI72fV+zvDsDnV2VwUu4ZY52KN55n2feZ953rEJY0z4PwfZJ9gn2EOCle7StY2Lf3ave6EzYNRnai80ytNYv7F5+ee1xXXrD8bCoXzjsdFXa+YkD7m+8cNS88K6dTMIPVMbmK7OTt/37D0I2s7qZ1feRyI3tEUiEYGELNCk3Nzk2Q17+cfbCyH1JSJjd8C8vFKef+j8oDHy+dUPlprfURZGIYRQGlKBPnXo1MtT72YJtr2ND78/aftdviSLKj6ZQP3QxUSRdCEqkyFRxEG9onZAEpWWdUuTczQWQCRiHMIcf/vNmXMPVmf7BBFgqoOPjp7oBd1qYXykOIXUEbMgqpKB7H7oYIJcPnVjem3H22o7a1iBmJpsaJLBIZQO4ku3F5IVyPzrkYOvDOcPQ0Gc4qOLr7fsZYkomEOB2Yl3jtaPEyIu3vj40sqCIuooBRBknJs4c3TkJcbo4u+f/LTyBSAZldm3nGBHlwspgopeq9Rq8ZThjJEkRPBC+4nGG8+Pn+Z7ZifO/LL+NQpCcYCebJx6bvxtDs1NnP117RufOigDGqIgXSjsSpQcvWDb9tvQFELpsvn42Mk+pMo6bp6iKoEacvFY47VdSNJ1OY9ScD6oqop66g6Sw/a3ncCCICENhnJjg7mDfcjxLS/sifAYoPwYrLwLBRYciGyQtKBWcD3/SGB5W14kAsHWslHFJA31BBJlKWrDQgLa8TbdwI7MymgpDWUJsBWuj+1Li9pQEoKboS/hkJ6G3BaHwF0xakkoS9B1W9jETV1KE3TdZkjvDXXcJo0uIPbLfxE0/+5AQkr6cCqLsx4lj/2egeIo3nFSWa/+K4HTRGq+1dQOZAj4lYiinFXPbcUQQ6MV01FZAggNm0MERdRMdSBzTBLZF42iovnT1ugQ/lowyrViAks1WtIq0cPCqCLnc2q5v44A3H/UHwz9UcgnIAx09V1dxa+una8YdUMxTzzwXrYCj/YsPzoLFRiyGLLZh+BCy2uT6JGghlJAfDKwolc5h0yU5c7VyytfXln71vY7WQLb67R7q8gFDBKhPxOVbW45dzwOSbqS6FWMh+sv4kF0AwuPBErE/eE1XN35LSsRxH36/nnoEfdqI9kvSPrM4bdI3MbDhUMZYUdLR+Znzl24+SkeWkMp1s3JqaFjY6Uje/+TyX9/9v9V7BPs7fhLgAEAm6sRCKh1afsAAAAASUVORK5CYII= 9 | 10 | 11 | 12 | https://www.mojeek.com/ 13 | 14 | -------------------------------------------------------------------------------- /strict_etp.patch: -------------------------------------------------------------------------------- 1 | diff -r 5cafe8ddd023 -r a29897d2381c mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt 2 | --- a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt Mon Oct 28 08:38:19 2024 -0400 3 | +++ b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt Mon Oct 28 08:39:05 2024 -0400 4 | @@ -740,12 +740,12 @@ 5 | 6 | val useStandardTrackingProtection by booleanPreference( 7 | appContext.getPreferenceKey(R.string.pref_key_tracking_protection_standard_option), 8 | - true, 9 | + false, 10 | ) 11 | 12 | val useStrictTrackingProtection by booleanPreference( 13 | appContext.getPreferenceKey(R.string.pref_key_tracking_protection_strict_default), 14 | - false, 15 | + true, 16 | ) 17 | 18 | val useCustomTrackingProtection by booleanPreference( 19 | diff -r 5cafe8ddd023 -r a29897d2381c mobile/android/fenix/app/src/main/res/xml/tracking_protection_preferences.xml 20 | --- a/mobile/android/fenix/app/src/main/res/xml/tracking_protection_preferences.xml Mon Oct 28 08:38:19 2024 -0400 21 | +++ b/mobile/android/fenix/app/src/main/res/xml/tracking_protection_preferences.xml Mon Oct 28 08:39:05 2024 -0400 22 | @@ -16,13 +16,13 @@ 23 | android:title="@string/preference_enhanced_tracking_protection" 24 | app:iconSpaceReserved="false" /> 25 | 32 | 4 | 5 | 6 | Startpage 7 | UTF-8 8 | data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAgCAYAAABzenr0AAAACXBIWXMAAA7EAAAOxAGVKw4bAAAEUUlEQVRYhb2XW2xUZRDHf7NsLb1YESq0oAlGrBBqLaXFIikmggGLYCEbhWCsEhOCiZcQIMjFByKoaYmx8mQkkReBBLWGhAdQQ3igtRJBrImIFUq1BdtS6HV7trvjw+nuuezZbdHaSU72fDPfzPef78xtxTDCeSIcUtUFIvgYB1IVRKgHKsUwwnUiWjoeB8cDoV4MI6x2pgiojtdaIxIKDQ0vBXBgcfGEcBhaWuHvDjBCkJEO9+dC9mRFZGR9r3e/7UKIJ5PX1y+cPC3UnYOefnEdoczIFZaWKSWFgs+ncfrJ3uM+gZuamuHg58LtbkvVDsHu0+xZsGGdkpGezKKTkgJoaoYDBwXDGL3B6bmweaOSNnGUAKwYAPu36esX3v1QuNUjpseqIPDADJgzC9LSlI5O4cIv5l5TLihQlK+8ul4R8YoJsO5R7TEQFZh06ox5eJSbmgovBZR5j2IzrKxZIRyphYYLlpXzjXD5D8h7yO1vfBx4Fp5wWDj7gxP3K2uVooJ4r9ImKpXPK/mPgGjUR+HM985gTUQ+VQEEVetpaYXeXhBVRJVZM5WCOcTk7v0+HwSeVROBms+l3xPvt6/9UY/seXyjXYZdMb2Y/XAEEecVisvBqdlC6Xy4ecviGSFIvSvevl3fFYQmNV0VrlyD+6bAPVmQPRkyM5Jm67+mEevA6Em51tKGDnuZ4vczPXfaiFp+NyN6NeFwmM6bt2hra2cgOMjjJQWAxNX2KF1svERg/Vux9fx5czn82f64fW59f3yuQnd3H0+Vv8zt7t4Y79An7/FEaaENpPVNh4YivL//U4eNhQsKPeqA3UlT3zMNs7IyWLSwyMHbvP0DLjZetnFM48GgwbZd1Zz7sTHGnjDBx+pVSz0Pd+t7BiHA1WutrAq8xkBwMLbfnzKB8mWLKVtUTNbdmVxuaubosRO0/Hnd0SQqVi6hau+WEQAQBRDWRP36+Inv2LKjCo0M5zhWyY39Rp2xpWXVvq08t2JJnD3P9UjzQO3xb9i1p4bBQVtHUixAHgDunZRF7dEDTM+darPpPQ/YYsB7HqhYuYTaIx/zZFnJcDGxwKGmWk5OtsNMV1c3b27dh2GEHLa83u+oDrT81cbZuvM0t7QSCg2RPWUShY/NoXhePrv3fMSxr046HKx8sYKd2zbinCCcNGaFyDAM1m/Yyk8/X3Lwa6p3sPzpxYkBJJoHEs+IYO/ndrp+o5M1616nvaMrxsvMSOfLwzU8OHOGp76rDiSa4ew8TSjPmTaFmuqdpKRYBba3r583tuxlYGDQU3/M/4gUF81l9/ZNDny//naFL74+5bnfcx5wP8n6udd6baCcFwLPWKcoBIODo58HLLJ4ifq5tXbK33l7E909vXx7up7ionwCq5c5ekPSeWAsKRJRfL7EaehXJQLyv/0pFRHP9m3KzCxocDLjr9ctT37gnehLvRjGUB5wCCh1CfFOxf8uVyUiQgNQ+Q/LESVT7byGNwAAAABJRU5ErkJggg== 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | https://www.startpage.com/ 20 | 21 | -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/google.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Google 7 | UTF-8 8 | data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAMAAADVRocKAAAB71BMVEUAAAD29vb29vb29vb39/f////39/f19fXqQzU0qFNChfT7vAX09PRjmvSVufXqSDr19PTywr41qVRVtnDrT0Lv8/D06unviYHufnQ7q1nrW07rV0rqRTZ4p/Xz9PPj7ub36sTvlo93w4xywYdnvH5euXZIsGQ/rVz6xSr7wRj6vQrk6/XR3/WnxfVUkfXg6fSQtvR+q/RHifPq8ez04d/N5dPE4svyx8Op17bxsq2X0KaAx5Nrv4FNsWbsa2BDrl9Brl/rSz77wBPo7fW90/W4zvWwyvWHsfVclvRMjPRFh/T18O/17+718+z06ejf7OLz4+Lb6+D1793V6Nr27tbz1NHzzMhipsi938a33cLyu7al1bLxt7L25K/25K6g067wrqjxrKaOzJ/woJqFyJj435X43Iv42oT42Xxju3rugnlPs2rtcmjtcGacwWXtZ1v50FnsYVXsXFD5zU/2sEvrU0b5vDz5xzb6xzPt8PXX4vXH2PVrn/RpnfT06+tMjurf7eNTleH03dzz2tjz2NZbnday2rzxwLxnrbid0qtosqer1KXwp6HwpJ6IyZnvn5jxspdltZRdtIPueW9yu26Hvm1etmuzwVjsY1f0oE/xj0/we0vGwkjua0bsW0DqTzrXwDX5wCnkvyX6wB3wvhYYaN+hAAAAB3RSTlMA8si8ZBhlc+JuAAAAA9xJREFUaN7dmmdT2zAchw2EysYuhCSQEDYkhNFC2Xu3UEYZpWxaZhezUKB77733Hh+0oclR21L0lzA+7vq8yyX6PbEkS7IlwY8lPAzBKNgHgLBwi7BBZARHOKckItIviGAP55dECMIuI+XhH1mEcKCoQUO4EIZMJUxAJIA/z1NA4M6HDbBAAfOBUoDAALCAs3bgwoKxfNgggPm8hp1vA/MERuuHHCOw5l8tn3YtvE+MSXIkLrnSx0pYDQJT/u305SRRi9s5ABiY2yB+ckkkkjgdDxaGBR1PHGJIGtNBhUCvIGtlokhlbYJSSbCgZ0EEeRUPCCj59xwiA+5+mkGg5KeLbMRUEg1QI1udIisxt7bQi6yz7PmxW+mmLkP5sOAZTz4owJs4NokY5lipq3M3suYrAQEp/6aDEO4c6wl82zXiXGP6/0rIKprH4pcnOrV3uJuSD7bBCDbmPLZivWwyBstnFXTqx5864ujf72bIRwKhCZ7r8l0d5LJdA+DcRryCQzmrmj7ktCIDEATHZXn967/8eSCfX5Aty/KvT2KQlXi0zYI0eYPcD0FBuaF4hSA4JQdY/7aRP4sMggvOy0F+fBHFpJJtFxyWN2n6KLqQYYH+Ljgqq1gtN5qvYFdwUi1owrvobioX4So6oxacRRhRVPbDgnNqwQlewV5YkK0WHOMV7IMFOWpBGq+gFRbkqgVHeAWFZguSza6iZLMbudDsbtpq9o0WDQiAoQIWtCC+wW6xDCsQradNLbiEDXa04fr3aykTQTS3qwUFPBPO91pJsnVDggPq/HykhzJlvkuQ/GRAgmRdL8UFCnnSfyMFKKPn76EPpkqoZcvPt1KQuWLoAvAmgBden+ulTTwplPwWTf4VhEFeOi7aJBXVSugKKiLUELz4fSRpyYwLlZ+vyW9rZlv8orhancHbTe6hReTpDH4AGZZ0JIzj1ZQ6M6jNb89jFiCPpMdeoa2n61U+yfYQGOhCPwT2NkgY9dV3U4NVWDruCXSDl9dUd/EFRH4IJBqGbBIJ35z3tD1L9V3tHcqSSKE9iFdJbCTcp7QwTYAyJEZe/O1LlxVeQQqzwX4jKupgHuIVIKWa1dAwSMyHX0hNsRq8BaQ/yPBKbaieKf9pCimf6aVgqgeO9w0jSj4gQEpFFpBf04sAAUDcgwZKfGYpVF5AIMWjXnK6LaMPKMr8crxvym7T38I1Famhu/gWXu8Xl1Vl+sehBJsvy14zM1pKm0gV0zco/t89HGT+Npf5G3WGtxp3vA38GN/u3fkNa8DAVcD0QwPmH3uw8BTl/5HF9KMn8OEZfjSHZ0w//vMHVqViODGkXAcAAAAASUVORK5CYII= 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | https://www.google.com 17 | 18 | -------------------------------------------------------------------------------- /gen_wordmark.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | #License: AGPL-3.0 3 | 4 | drawable="./fenix-overlay/res/drawable"; 5 | font="Fira-Sans-Bold"; 6 | wordmark="Mull"; 7 | 8 | convert -background transparent -fill black -font $font -gravity center -size x80 label:$wordmark $drawable-mdpi/ic_logo_wordmark_normal.png 9 | convert -background transparent -fill white -font $font -gravity center -size x80 label:$wordmark $drawable-mdpi/ic_logo_wordmark_private.png 10 | convert -background transparent -fill black -font $font -gravity center -size x80 label:$wordmark $drawable-mdpi/ic_wordmark_text_normal.png 11 | convert -background transparent -fill white -font $font -gravity center -size x80 label:$wordmark $drawable-mdpi/ic_wordmark_text_private.png 12 | 13 | convert -background transparent -fill black -font $font -gravity center -size x120 label:$wordmark $drawable-hdpi/ic_logo_wordmark_normal.png 14 | convert -background transparent -fill white -font $font -gravity center -size x120 label:$wordmark $drawable-hdpi/ic_logo_wordmark_private.png 15 | convert -background transparent -fill black -font $font -gravity center -size x120 label:$wordmark $drawable-hdpi/ic_wordmark_text_normal.png 16 | convert -background transparent -fill white -font $font -gravity center -size x120 label:$wordmark $drawable-hdpi/ic_wordmark_text_private.png 17 | 18 | convert -background transparent -fill black -font $font -gravity center -size x160 label:$wordmark $drawable-xhdpi/ic_logo_wordmark_normal.png 19 | convert -background transparent -fill white -font $font -gravity center -size x160 label:$wordmark $drawable-xhdpi/ic_logo_wordmark_private.png 20 | convert -background transparent -fill black -font $font -gravity center -size x160 label:$wordmark $drawable-xhdpi/ic_wordmark_text_normal.png 21 | convert -background transparent -fill white -font $font -gravity center -size x160 label:$wordmark $drawable-xhdpi/ic_wordmark_text_private.png 22 | 23 | convert -background transparent -fill black -font $font -gravity center -size x240 label:$wordmark $drawable-xxhdpi/ic_logo_wordmark_normal.png 24 | convert -background transparent -fill white -font $font -gravity center -size x240 label:$wordmark $drawable-xxhdpi/ic_logo_wordmark_private.png 25 | convert -background transparent -fill black -font $font -gravity center -size x240 label:$wordmark $drawable-xxhdpi/ic_wordmark_text_normal.png 26 | convert -background transparent -fill white -font $font -gravity center -size x240 label:$wordmark $drawable-xxhdpi/ic_wordmark_text_private.png 27 | 28 | convert -background transparent -fill black -font $font -gravity center -size x320 label:$wordmark $drawable-xxxhdpi/ic_logo_wordmark_normal.png 29 | convert -background transparent -fill white -font $font -gravity center -size x320 label:$wordmark $drawable-xxxhdpi/ic_logo_wordmark_private.png 30 | convert -background transparent -fill black -font $font -gravity center -size x320 label:$wordmark $drawable-xxxhdpi/ic_wordmark_text_normal.png 31 | convert -background transparent -fill white -font $font -gravity center -size x320 label:$wordmark $drawable-xxxhdpi/ic_wordmark_text_private.png 32 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ![Banner](https://divestos.org/images/featureGraphics/Mull.png) 2 | 3 | What's this? 4 | ------------ 5 | 6 | This is a fork of Relan's excellent [fennecbuild repository](https://gitlab.com/relan/fennecbuild). 7 | It allows compiling the entirety of Fenix without prebuilts along with removal of the proprietary blobs. 8 | 9 | This fork is specifically for compiling Mull. 10 | It enables many features upstreamed by the Tor Uplift project using preferences from the [arkenfox-user.js project](https://github.com/arkenfox/user.js). 11 | It was originally created as builds of the patchset from [bug 1419581](https://bugzilla.mozilla.org/show_bug.cgi?id=1419581). 12 | 13 | This is compiled using fdroidserver. 14 | You will need to copy the config files from -fdroiddata/ into their respective folders first. 15 | Then run: 16 | ``` 17 | fdroid build us.spotco.fennec_dos:VERCODE 18 | ``` 19 | where VERCODE is a version code number. 20 | VERCODE is currently prepended with 2 as an epoch for upgrade from old Fennec-based Mull. 21 | The second to last number of the VERCODE corresponds to the architecture to compile. 22 | 0 = ARMv7, 1 = x86, 2 = AArch64 23 | 24 | [Get it on F-Droid](https://f-droid.org/packages/us.spotco.fennec_dos/) 27 | 28 | Known Issues 29 | ------------ 30 | Please see the list of known issues and workarounds before opening an issue! 31 | https://divestos.org/index.php?page=broken#mull 32 | 33 | Updating 34 | -------- 35 | - Setup: `git remote add upstream https://gitlab.com/relan/fennecbuild` 36 | - Update: 37 | ``` 38 | git fetch upstream 39 | git rebase upstream/master 40 | ``` 41 | 42 | Setting up the VM 43 | ----------------- 44 | Getting a working fdroidserver is a bit tricky. 45 | Here are some steps to get you in the right direction. 46 | - Setup a VM, you'll want at least 16GB RAM and 64GB of storage 47 | - Fedora 41 has been tested to work 48 | - `git clone https://gitlab.com/fdroid/fdroidserver.git` 49 | - `git clone https://gitlab.com/fdroid/fdroiddata.git` 50 | - Install JDK 8 and 17, set 17 as default 51 | - Put this in your path as your gradle, make sure the folder above it is writable for its cache: 52 | ``` 53 | wget https://gitlab.com/fdroid/fdroidserver/-/raw/master/gradlew-fdroid -O gradle 54 | ``` 55 | - Disable the Gradle daemon to prevent OOM: 56 | ``` 57 | mkdir -p ~/.gradle && echo "org.gradle.daemon=false" >> ~/.gradle/gradle.properties 58 | ``` 59 | - setup Android SDK/NDK: 60 | ``` 61 | mkdir android android-ndk 62 | wget https://dl.google.com/android/repository/tools_r25.2.3-linux.zip 63 | unzip tools_r*-linux.zip -d android/ 64 | android update sdk --no-ui 65 | android update sdk --no-ui --filter build-tools-30.0.2,android-30,build-tools-30.0.0-preview,build-tools-29.0.3,android-29,build-tools-28.0.3,android-28 --all 66 | wget https://dl.google.com/android/repository/android-ndk-r27c-linux.zip 67 | unzip android-ndk-r27c-linux.zip -d android-ndk/ 68 | echo "ndk_paths = { '27.2.12479018: \"\$ANDROID_NDK\" }" >> fdroiddata/config.py 69 | ``` 70 | - Add the following to your .bashrc 71 | ``` 72 | export ANDROID_HOME=~/android 73 | export ANDROID_NDK=~/android-ndk/android-ndk-r27b 74 | export PATH=$PATH:$ANDROID_HOME/tools:$ANDROID_HOME/platform-tools 75 | export PATH=$PATH:~/fdroidserver 76 | ``` 77 | - `source .bashrc` 78 | - Fedora: 79 | ``` 80 | sudo ln -sf /usr/lib/jvm/java-17-openjdk /usr/lib/jvm/java-17-openjdk-amd64 81 | sudo ln -sf /usr/lib/jvm/java-1.8.0-openjdk /usr/lib/jvm/java-8-openjdk-amd64 82 | ``` 83 | 84 | Licenses 85 | -------- 86 | 87 | The scripts are licensed under the GNU Affero General Public License version 3 or later. 88 | 89 | Changes in the patch are licensed according to the header in the files this patch adds or modifies (Apache 2.0 or MPL 2.0). 90 | 91 | The artwork is licensed under the MPL 2.0. 92 | 93 | The userjs-00-arkenfox.js file is licensed under MIT. 94 | 95 | Notices 96 | ------- 97 | 98 | Mozilla Firefox is a trademark of The Mozilla Foundation 99 | 100 | Divested Computing Group is not affiliated with Mozilla 101 | 102 | Mull is not sponsored or endorsed by Mozilla 103 | 104 | Firefox source code is available at https://hg.mozilla.org 105 | -------------------------------------------------------------------------------- /gecko-liberate.patch: -------------------------------------------------------------------------------- 1 | diff -r 0a6479ef0332 mobile/android/geckoview/build.gradle 2 | --- a/mobile/android/geckoview/build.gradle Mon Nov 18 12:58:35 2024 +0000 3 | +++ b/mobile/android/geckoview/build.gradle Tue Nov 19 09:11:18 2024 +0000 4 | @@ -216,7 +216,7 @@ 5 | implementation ComponentsDependencies.androidx_collection 6 | implementation ComponentsDependencies.androidx_core 7 | 8 | - implementation ComponentsDependencies.play_services_fido 9 | + implementation "org.microg.gms:play-services-fido:0.3.4.240913" 10 | implementation "org.yaml:snakeyaml:2.2" 11 | implementation 'androidx.core:core:1.12.0' 12 | 13 | diff -r 0a6479ef0332 mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebAuthnTokenManager.java 14 | --- a/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebAuthnTokenManager.java Mon Nov 18 12:58:35 2024 +0000 15 | +++ b/mobile/android/geckoview/src/main/java/org/mozilla/geckoview/WebAuthnTokenManager.java Tue Nov 19 09:11:18 2024 +0000 16 | @@ -193,27 +193,14 @@ 17 | 18 | final Task intentTask; 19 | 20 | - if (BuildConfig.MOZILLA_OFFICIAL) { 21 | - // Certain Fenix builds and signing keys are whitelisted for Web Authentication. 22 | - // See https://wiki.mozilla.org/Security/Web_Authentication 23 | - // 24 | - // Third party apps will need to get whitelisted themselves. 25 | - final Fido2PrivilegedApiClient fidoClient = 26 | - Fido.getFido2PrivilegedApiClient(GeckoAppShell.getApplicationContext()); 27 | - 28 | - intentTask = fidoClient.getRegisterPendingIntent(browserOptions); 29 | - } else { 30 | - // For non-official builds, websites have to opt-in to permit the 31 | - // particular version of Gecko to perform WebAuthn operations on 32 | - // them. See https://developers.google.com/digital-asset-links 33 | - // for the general form, and Step 1 of 34 | - // https://developers.google.com/identity/fido/android/native-apps 35 | - // for details about doing this correctly for the FIDO2 API. 36 | - final Fido2ApiClient fidoClient = 37 | - Fido.getFido2ApiClient(GeckoAppShell.getApplicationContext()); 38 | - 39 | - intentTask = fidoClient.getRegisterPendingIntent(requestOptions); 40 | - } 41 | + // The privileged FIDO2 API normally is restricted to apps with package 42 | + // names and signatures that Google knows to be a browser. microG does not 43 | + // have such a list, instead it asks the user to confirm that the app doing 44 | + // the request is indeed a browser app (only for the first request from 45 | + // that app). 46 | + final Fido2PrivilegedApiClient fidoClient = 47 | + Fido.getFido2PrivilegedApiClient(GeckoAppShell.getApplicationContext()); 48 | + intentTask = fidoClient.getRegisterPendingIntent(browserOptions); 49 | 50 | intentTask.addOnSuccessListener( 51 | pendingIntent -> { 52 | @@ -411,19 +398,12 @@ 53 | .build(); 54 | 55 | final Task intentTask; 56 | - // See the makeCredential method for documentation about this 57 | - // conditional. 58 | - if (BuildConfig.MOZILLA_OFFICIAL) { 59 | - final Fido2PrivilegedApiClient fidoClient = 60 | - Fido.getFido2PrivilegedApiClient(GeckoAppShell.getApplicationContext()); 61 | + // See the makeCredential method for documentation about the FIDO2 API and 62 | + // microG. 63 | + final Fido2PrivilegedApiClient fidoClient = 64 | + Fido.getFido2PrivilegedApiClient(GeckoAppShell.getApplicationContext()); 65 | 66 | - intentTask = fidoClient.getSignPendingIntent(browserOptions); 67 | - } else { 68 | - final Fido2ApiClient fidoClient = 69 | - Fido.getFido2ApiClient(GeckoAppShell.getApplicationContext()); 70 | - 71 | - intentTask = fidoClient.getSignPendingIntent(requestOptions); 72 | - } 73 | + intentTask = fidoClient.getSignPendingIntent(browserOptions); 74 | 75 | intentTask.addOnSuccessListener( 76 | pendingIntent -> { 77 | @@ -557,15 +537,9 @@ 78 | @WrapForJNI(calledFrom = "gecko") 79 | private static GeckoResult webAuthnIsUserVerifyingPlatformAuthenticatorAvailable() { 80 | final Task task; 81 | - if (BuildConfig.MOZILLA_OFFICIAL) { 82 | - final Fido2PrivilegedApiClient fidoClient = 83 | - Fido.getFido2PrivilegedApiClient(GeckoAppShell.getApplicationContext()); 84 | - task = fidoClient.isUserVerifyingPlatformAuthenticatorAvailable(); 85 | - } else { 86 | - final Fido2ApiClient fidoClient = 87 | - Fido.getFido2ApiClient(GeckoAppShell.getApplicationContext()); 88 | - task = fidoClient.isUserVerifyingPlatformAuthenticatorAvailable(); 89 | - } 90 | + final Fido2PrivilegedApiClient fidoClient = 91 | + Fido.getFido2PrivilegedApiClient(GeckoAppShell.getApplicationContext()); 92 | + task = fidoClient.isUserVerifyingPlatformAuthenticatorAvailable(); 93 | 94 | final GeckoResult res = new GeckoResult<>(); 95 | task.addOnSuccessListener( 96 | -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/qwantlite.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | Qwant Lite 7 | UTF-8 8 | data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAGAAAABgCAYAAADimHc4AAAABGdBTUEAALGPC/xhBQAAADhlWElmTU0AKgAAAAgAAYdpAAQAAAABAAAAGgAAAAAAAqACAAQAAAABAAAAYKADAAQAAAABAAAAYAAAAACK+310AAAMKUlEQVR4Ae1dC1BU1xn+7/JaBBdEUVgUHygqCr6ijYqv+JgEX4kdbfNobKZaptNxJmYybWKnCdWoTWxtOpk2D51JbEI6OrW+U19RSXxgSEYFg4RIFOWloMAuwvLc/v+VJYvs5Zxd7rm74P1nYO895z//+c/333ue/zlXAk5K22UPLKiCOfYWWIJJEiQAs90OZrwO5RTRU9lqJAlK7AAlWMBcyQD748LhZNoKqYGnwIhj5/TLD+1RLTZ4rQXgWeQ0dc6tx7YiYDEApBuMsP6jF6SyzlBRNMCaz+xBlYXwB7TuS/ikh3QmRI9zjQBidw+x29pnMGx8J0Wqd8Xl0gD01DfZYA8meNRVIj3MbQQy/Y3wlKu3oYMBnt9mT2pphkNgh4FuZ6MnUEZAgiJ/CVI+SpVynJnaGUB+8ushSwffGSIVr8kIQTDZ+U3AtuI+UZ0vVzv6k++ARP1fxJYwJqwdwtsMQA0uBup1vgMZcb+PtmIt5yBXQVT1NNfDVb23Iw51Z8nUO/ILguFUFclvAPXzdfCdIRJ7TVgT5pSLRCPcq3egHK/1QZZY3B+UbhneFyINNL2gg/8gNprcmwh7Q+vcjiY56pm0R4CwpzYgoX2wfqchAgkG7AbRjKZOXkCAsDdgi6wbwAvgU5aEvT/++vR8vr2lCe4UZkH51dNguZWHf/lgqy6BRpsVmuprwIBj+wBjbwjs1QdCI4dD7/7xEDFoIvSPnwXG3v29BC13tqFkAJ8jAr3k8mdwPetTKL1yFJob7inq2NxYC/Rns96SDeTMGG4eC7GTfgaDH3kGevXxzblF6bl38UXwESLgC85sh28Pb5IBVU0tXKaKnfBTSFy0HkL7DVNNrBqCfMYANy/shuyDr0FN+VU1yuVShmQIgOHJv4Yxj6+DoNB+Lnm0DvS6AapKvoWsT1Ph7o0szcoeYDTJRhj52FrN8lTKqG02VIlBZHhx9n74/G8zNQWfytNos8DFva/A2Q+fwfajTmQRmbK9ZoDco3+G09tXyD0ZppaCGKjaO/H2HKitKhaUA1us5gZoaW6Eczt+ATkHX0ftvN/+3715AY79ZRq+hV+z0RLAobkBvt75W7jxzS51ioK9GzXIZimDjHeXQE3FNTXEuSVD03HAdyf/Dtcyd7iloIO5d+QIiElaApFxyWAMM0OvsGh5oNXUUAt1ODCrs5SCtSwPinIOwu38k9DSzOUX5RAPDffuwOlty2DeS1+Cf5B2Y1PNekFlOKDKeG8p1jro4sVJBr9AiMNuY9z0VRAWNZozFcjtSlH2Acg9vBGs5d9zpyNG89iFMGP1blwpwZkaDUgTA1ixb39syzTsfVRzFknCEexySFxIA6ehnGk6stnRv6bg7Ha4/L83oN56uyODQsjo+b+HpMXrFWLVDVanEmXodHHP77jB9wsMgemrdsLUlR93CXxSSTL44cArFZ5YdxGrrhkMLX+Mzvv8r/Kc048h4q6EG6C84DTO6xziKkFIxGCYtzYDBiZhVaUiBYX0hTlrDkPctF9xSaUpkZwDf+Ti7SqTcANc3Psql47B2LDOXXsKwmMSufjdZZIM/vDIz/8J8bPWcCUtyt4Ld66f5+LtCpNQA9y8+F+4W/gVUz8DOk4mr/4PkBFE0/hlb0HUqPlc2fA+PFzCFJiEGiD3yCaFbNsHT376PYiIndQ+UNCdhGOHaS+ky2sHrCwqfjgDt7/PYLF1KV6YAaqKc4D+WNR/xGwYMvlpFpuq8QHBYTD+yTe5ZF7/6hMuPk+ZhBngelY6h04SArGZg099lpjERdBv2HSmYKpGW5pcuvYz0/IwCDNAWd5RZv6Dxi+DPrh86C0at3QjM2ta9iz/4SyTz1MGIQaot5ZDNc7zs2jIFNr15D3qN3QqjjXimArczj/F5PGUQYgBKji6bzTgiho1z1O9VUsXk7iYKaviWiaTx1MGIQaw3v6OqU/06AWyRwOTUTADTfCxyHqLXR6WDKV4QQbIV8qvLTwi1nt1f5sSeMGjB820UlsggoQYwGatYOpqNEUzebRg8AsIhoDgcGZWNmzXRJAQAzSh0xSLgnE+31eIR5du9QbQIgmLAkN8wy2E9KTJOhaR85cIEvIG+AUGM3VtrL3D5NGKoeHeXWZWBn92mZhCXDAIMQD5arKotqqUxaJZfC0uabIowChmmVKIAXi8zmzYs/AFam60QWNdFVOVoNBIJo8nDEIMYEIPZRZVojuIL1BlEVsPoylK9sAWoa8QA5CLOItKrxzBSS73PBdYMj2JL8bFexbxlIclQyleiAH6DvmJUn5t4dStu5V/ou3eWxfkHsmifkPF7V8XYgCjaQCYONxICtH/35tE3nA8biv9R8wSpqYQA5C2PMt+heghV1mULaxwLMGX9tHpDJ0TTRpGxrHXDTqXohwrzAC0K4VNdsjev47NJoCjNPcILjeeYkoeNG4p0HSFKBJmgIjYCRAWzd4BW5Z3DMhLWUui9od8lXhoyJTneNg85hFmANJo9IJXuRQ7n76aa/2YSxiLCXdknduxssN+MlfJqDMxYORcV1GqhQk1wOBJK7iWHGkT3pcfLEP3QTEzjs5oXUKHq5LLB52DFK/HLd2kGKdWhFADkJK8haitvAHH354NFvRwFkF2dAq+sPtlyDu+hUu8eUyK7InNxdwFJuEGGBA/B6Jw9YuHaIPe8a0zgBpINamxrhq+QP///Ix3+MSi71Di4jf4eLvIJdwApN+Ep7Zw+9zT/q0v3n8Ssv6dKvv9d6l8WN9fO/8xHN48Eaix56WRc16EcPMYXvYu8Wnink4aFuccwA0Qy/GKf1sSdf/iZ6+R9weQ4y4vkR8PbfS+fHgDl3eGs1wav8z8zX7cHqDJswmaGYAKmXv0TdwbJh8U5VxmruvwmCSIScQdMsOTZR9S8iOlaW/yZK6z3AKaXa0uzZMbWNbueqUMaRfO/JfP4BJlmBKL6uGaGoC0z9zxPBR+s1OVgtAbQtPJ7rxVShnT3mHanmSKGqXEIiRcm/fMSfUpz27DvV7q+P/f3+PLX6U5qdHukub6qdrRGnxSQnMD0Okmyat2QcKCV9qB4K0bGq1TtUNect4gzQ3gKGTioj/hNqRPhM6zOPJS+o1OeEKudtxp4JVkeRruNQOQwrQRb+6LJ4TtilEChWY4ExemwczUPdzdYyVZXQ3XvBF2qTD21+lsoJxDaUAjYlEkSX4wbOpKGJPyOgTjMqMvkG8YoBUJ6r/nZ/wDrhx7CxpqK1XFJzrhcRi3ZDOEmdkztKpmzBDmUwZw6Epdy6JL+/CtSPdo17tDDvXrB01cDkNxSjk0ku2G7kin5a9PGsAZAOpqVuAGifKCM/JEHXle11ajsyy6P94/jkBqOzMuBE/DCotKwDYlCaeRH4OQiFhnUT557fMG6Aw1OsCP5nloQ7ZoSsbN41SNqU2aHtahtvKmAfH4xI+EqpLLaovuIK/o0l4hBvBqN7RDKT0IUGtUzcq6mHb7CzjfsNsbwIwTdFoQHfZRce2c6ll1ewNEDBqPZ4Jq09gWcThxuWuhbm8AKjDPPi93gXHFz+NF5ypdZ2E9wgADOTbadQYCb1xNRQE2+Oztt7zyiK9HGICOMQvsFeFOuT3mLc7e53FaVwl7hAFoHGAem+KqfKqHleSwnXndybRHGIAKrPYhT0og0jGXtZU3laLdDu8xBogaPV+ztQU1G2OaiqA9pWI2QLn9PDxcCfBgRqsB/5U8XMX2qdKWGnBJWzeAl2xC2FMbkOul/PVsEXsDOoCp26/SYeVGgLA30AfoMYWFO5XOqBYCFsLekLZCasB6iOeAN7Uy1uUgAoR5K/Z4Y4T12Bu6pyOjDQKENWFOuVEjDPRdW1xr2ErXOolHgLB2fNZcNgBl2Wcw0BGC4g5HE1+u7pJDZivWsr7tDsmnL2uja04WuvD75lfPugvESnpKUISusZMdTz+xtb0BdCN/YtsPFgIy0r1OKiJA4EuQ4gw+SW9nAAr412opm6yEl3p1RICoQ5nyk58q5TworoMBiIGshPXUbLzcoPeOCBHPqBW7DYTlg0++Q2K7NsAR6PxL7QJ9gL4FgI65NTnH6deKCFjwyU6nrqYS8I6UTAM4GNN22QPpG+itn0BPwIRm7E6ZMf5hn8quwSe9pHVSM5emF2iES4MsB3ad/f4fDbO11HHkpjkAAAAASUVORK5CYII= 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | https://lite.qwant.com/ 18 | 19 | -------------------------------------------------------------------------------- /fenix-overlay/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 13 | 16 | 19 | 22 | 25 | 28 | 31 | 34 | 37 | 40 | 43 | 46 | 49 | 52 | 55 | 58 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /fenix-overlay/res/drawable/ic_launcher_private_foreground.xml: -------------------------------------------------------------------------------- 1 | 6 | 10 | 13 | 16 | 19 | 22 | 25 | 28 | 31 | 34 | 37 | 40 | 43 | 46 | 49 | 52 | 55 | 58 | 63 | 64 | 65 | -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/ddghtml.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | DuckDuckGo HTML 7 | UTF-8 8 | data:image/png;base64,AAABAAIAEBAAAAEAIABoBAAAJgAAACAgAAABACAAqBAAAI4EAAAoAAAAEAAAACAAAAABACAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVZ4Ss0Wd+PM1nf1Tpd4PM6XeDzM1nf1TRZ3481WeErAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVYD/BjRa3pRQcOP9tMLy/83q2f/m9uv//f7+//L0/P+qu+7/UHDj/TRa3pRVgP8GAAAAAAAAAAAAAAAAVYD/BjNZ372Jnuv/9/j9/8nT9v+D0pj/R71m/02+a/9Kr3z/XreM//f4/f+Jnuv/M1nfvVWA/wYAAAAAAAAAADRa3pSJnuv/4Ob6/1h25P+8yPT/ntyv/6zhuv+Fvrj/PpKY/0Cbjf9YduT/4Ob6/4me6/80Wt6UAAAAADVZ4StQcOP99/j9/1h25P8zWN7/5+z7////////////Z4Lm/zNY3v8zWd3/M1je/1h25P/3+P3/UHDj/TVZ4Ss0Wd+PrLvx/5ut7v8zWN7/Rmfh/////////////////0Jo4P8neuf/IY/s/yZ85/8yXN//m63u/6y78f80Wd+PM1nf1ert+/9ObuL/M1je/3CK5////////////9j4//8RyPv/J3vn/ytx5P8lg+n/KHjm/05u4v/p7fv/M1nf1Tpd4PP4+f3/M1je/zNY3v+bre7////////////X+P//JNL8/yDJ+v8Utvb/II/t/y9j4P8zWN7/+Pn9/zpd4PM6XeDz+Pn9/zNY3v8zWN7/w871///////////////////////k+v//T5zt/xyc7/8UtPX/L2Ph//j5/f86XeDzM1nf1ert+/9ObuL/M1je/9vi+f//////oXZf////////////oXZf/2N/5f8zWN7/M1je/05u4v/q7fv/M1nf1TRZ34+su/H/m63u/zNY3v/H0fX//////////////////////+js+/83W97/M1je/zNY3v+bre7/rLvx/zRZ3481WeErUHDj/ff4/f9YduT/X3zl//Hz/P////////////j5/f9yi+j/M1je/zNY3v9YduT/9/j9/1Bw4/01WeErAAAAADRa3pSJnuv/4Ob6/1h25P9MbOL/2N/4/73J9P9DZeD/M1je/zNY3v9YduT/4Ob6/4me6/80Wt6UAAAAAAAAAABVgP8GM1nfvYme6//3+P3/m63u/05u4v8zWN7/M1je/05u4v+bre7/9/j9/4me6/8zWd+9VYD/BgAAAAAAAAAAAAAAAFWA/wY0Wt6UUHDj/ay78f/p7fv/+Pn9//j5/f/p7fv/rLvx/1Bw4/00Wt6UVYD/BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVZ4Ss0Wd+PM1nf1Tpd4PM6XeDzM1nf1TRZ3481WeErAAAAAAAAAAAAAAAAAAAAAPAPAADAAwAAgAEAAIABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIABAACAAQAAwAMAAPAPAAAoAAAAIAAAAEAAAAABACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFWA/wY2Wt9HM1nelTRY3780WN7ZM1je8zNY3vM0WN7ZNFjfvzNZ3pU2Wt9HVYD/BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVg3xgzWN+WNFne8TNY3v9ceuT/iJ7r/52v7/+ywPL/ssDy/52v7/+Inuv/XHrk/zNY3v80Wd7xM1jfljVg3xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAElt/wczWOCCM1nf9Ets4v+ouPH/6e37/+vv+//a4Pj/2eD4/9zi+f/c4vn/2eD4/9rg+P/m6vv/6e37/6i48f9LbOL/M1nf9DNY4IJJbf8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1YN8YM1jfxz9i4P+js/D/8fP8/6Cx7/+7x/P/5fbp/1zEd/+o4Lb/9vz4////////////3+T5/zVZ3v9Xed3/obPu//Hz/P+js/D/P2Hf/zNY38c1YN8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN1njLjRZ3uNTcuP/4eb6/7PB8v9IaeH/M1je/9rg+f/H69D/Rrxl/0a8Zf9NtV//RrRa/063Yv9fpqf/QqWA/0a8Zf87gqv/SGnh/7TC8v/h5vr/U3Lj/zRZ3uMzW+MtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVg3xg0Wd7jZ4Pm/+/x/P+Emuv/M1je/zNY3v87Xt///P3+/7rmxv9GvGX/Rrxl/0azWv9GvGX/Rrxl/0a8ZP9GvGX/Rrxl/zyIo/8zWN7/M1je/4Sa6//v8fz/Z4Lm/zRZ3uM1YN8YAAAAAAAAAAAAAAAAAAAAAAAAAABJbf8HM1jfx1Ny4//v8fz/aoXm/zNY3v8zWN7/M1je/2N/5f//////tOTB/0a8Zf9HvWb/c8mH/1W+bv9IuWj/Qqp7/0a8Zf9GvGX/PIWo/zNY3v8zWN7/M1je/2qF5v/v8fz/U3Lj/zNY38dJbf8HAAAAAAAAAAAAAAAAAAAAADNY4II/YuD/4eb6/4Sa6/8zWN7/M1je/zNY3v8zWN7/j6Ps///////W8d3/pt+1/+X26v//////8/X9/zhc3v80Wdz/PIek/0a4av85d7j/M1je/zNY3v8zWN7/M1je/4Sa6//h5vr/P2Hf/zNY4IIAAAAAAAAAAAAAAAA1YN8YM1nf9KOz8P+0wvL/M1je/zNY3v8zWN7/M1je/zNY3v+6xvP///////////////////////////+zwfL/M1je/zNY3v8zWN7/NFzY/zNZ3f8zWN7/M1je/zNY3v8zWN7/M1je/7TC8v+js/D/M1nf9DVg3xgAAAAAAAAAADNY35ZLbOL/8fP8/0hp4f8zWN7/M1je/zNY3v8zWN7/M1je/+Xq+v///////////////////////////32U6v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/SGnh//Hz/P9LbOL/M1jflgAAAABVgP8GNFne8ai48f+hsu//M1je/zNY3v8zWN7/M1je/zNY3v9DZeD/////////////////////////////////V3bj/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/obLv/6i48f80Wd7xVYD/BjZa30czWN7/6e37/1Z04/8zWN7/M1je/zNY3v8zWN7/M1je/2+J5/////////////////////////////////9RcOL/Lmfi/yKN7P8XrPP/EML5/w3K+/8Suvf/HZnu/y5n4v8zWN7/M1je/zNY3v9WdOP/6e37/zNY3v82Wt9HM1nelVx65P/j6Pr/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/mavu////////////////////////////7/z//yK79v8K0v3/Fq/0/yKN7P8iiev/IY7s/xqh8P8Suff/Dcr7/y5o4v8zWN7/M1je/zNY3v/j6Pr/XHrk/zNZ3pU0WN+/iJ7r/6++8v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v/DzvX///////////////////////////9k4/7/CtL9/xK59/8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/6++8v+Inuv/NFjfvzRY3tmdr+//mqzu/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/+7x/P///////////////////////////2Xj/v8K0v3/C9D9/xmm8f8YqfP/Gafy/yKN7P8vZuH/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/mqzu/52v7/80WN7ZM1je87LA8v+Fm+v/M1je/zNY3v8zWN7/M1je/zNY3v9La+H/////////////////////////////////+P7//3Pm/v8P0/3/CtL9/wrS/f8K0v3/CtL9/wrR/f8VsvX/JYPp/zNb3v8zWN7/M1je/zNY3v+Fm+v/ssDy/zRZ3vIzWN7zssDy/4Wb6/8zWN7/M1je/zNY3v8zWN7/M1je/3SN6P////////////////////////////////////////////b+///T9///vPP//1q/9v8WrfT/DMv8/wrS/f8K0v3/DsX6/yl25v8zWN7/M1je/4Wb6/+ywPL/M1je8zRY3tmdr+//mqzu/zNY3v8zWN7/M1je/zNY3v8zWN7/m63u////////////0LWn/7qTfv/////////////////////////////+/v//////s8Dy/zNY3v8zWt7/KXbm/x2b7v8bn/D/KnPl/zNY3v8zWN7/mqzu/52v7/80WN7ZNFjfv4me6/+vvvL/M1je/zNY3v8zWN7/M1je/zNY3v+zwPL///////////+sfWT/om5R//v59///////////////////////pHFV/8Cdiv+ruvH/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v+vvvL/iJ7r/zRY378zWd6VXHrk/+Po+v8zWN7/M1je/zNY3v8zWN7/M1je/7/K9P////////////z6+f/38u/////////////////////////////NsKH/4dDH/3uT6f8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/+Po+v9ceuT/M1nelTZa30czWN7/6e37/1Z04/8zWN7/M1je/zNY3v8zWN7/p7fw///////k1c3////////////////////////////////////////////3+f3/Q2Xg/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v9WdOP/6e37/zNY3v82Wt9HVYD/BjRZ3vGouPH/oLHv/zNY3v8zWN7/M1je/zNY3v92j+j//////+7l3//gz8b/+/j2///////////////////////p3db/2MK2/6mz5P8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/6Gy7/+ouPH/NFne8VWA/wYAAAAAM1jflkts4v/x8/z/SGnh/zNY3v8zWN7/M1je/zNY3v/U3Pj////////////////////////////////////////////s7/z/RWfg/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v9IaeH/8fP8/0ts4v8zWN+WAAAAAAAAAAA1YN8YM1nf9KOz8P+zwfL/M1je/zNY3v8zWN7/M1je/0Fj4P/DzvX/////////////////////////////////8PP8/2WB5v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/7TC8v+js/D/M1nf9DVg3xgAAAAAAAAAAAAAAAAzWOCCP2Lg/+Hm+v+Emuv/M1je/zNY3v8zWN7/R2jh/0do4f97k+n/1dz4////////////7/L8/4Oa6/9CZOD/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v+Fm+v/4eb6/z9i4P8zWOCCAAAAAAAAAAAAAAAAAAAAAElt/wczWN/HU3Lj/+/x/P9qheb/M1je/zNY3v+Xqe7/7vH8/////////////////87X9/9TcuP/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/aoXm/+/x/P9TcuP/M1jfx0lt/wcAAAAAAAAAAAAAAAAAAAAAAAAAADVg3xg0Wd7jZ4Lm/+/x/P+Emuv/M1je/2J+5f+puPH/rrzx/5Kl7f9PbuL/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/4Sa6//v8fz/Z4Lm/zRZ3uM1YN8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADdZ4y40Wd7jU3Lj/+Hm+v+0wvL/SGnh/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/0hp4f+0wvL/4eb6/1Ny4/80Wd7jM1vjLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVg3xgzWN/HP2Lg/6Oz8P/x8/z/obLv/1Z04/8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/1Z04/+hsu//8fP8/6Oz8P8/Yd//M1jfxzVg3xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAElt/wczWOCCM1nf9Ets4v+ouPH/6e37/+Po+v+vvvL/mqzu/4Wb6/+Fm+v/mqzu/6++8v/j6Pr/6e37/6i48f9LbOL/M1nf9DNY4IJJbf8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1YN8YM1jfljRZ3vEzWN7/XHrk/4ie6/+dr+//ssDy/7LA8v+dr+//iJ7r/1x65P8zWN7/NFne8TNY35Y1YN8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVYD/BjZa30czWd6VNFjfvzRY3tkzWN7zM1je8zRY3tk0WN+/M1nelTZa30dVgP8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/AA///AAD//AAAP/gAAB/wAAAP4AAAB8AAAAPAAAADgAAAAYAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAABgAAAAcAAAAPAAAAD4AAAB/AAAA/4AAAf/AAAP/8AAP//wAP/ 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | https://html.duckduckgo.com/html 23 | 24 | -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/ddglite.xml: -------------------------------------------------------------------------------- 1 | 4 | 5 | 6 | DuckDuckGo Lite 7 | UTF-8 8 | data:image/png;base64,AAABAAIAEBAAAAEAIABoBAAAJgAAACAgAAABACAAqBAAAI4EAAAoAAAAEAAAACAAAAABACAAAAAAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVZ4Ss0Wd+PM1nf1Tpd4PM6XeDzM1nf1TRZ3481WeErAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVYD/BjRa3pRQcOP9tMLy/83q2f/m9uv//f7+//L0/P+qu+7/UHDj/TRa3pRVgP8GAAAAAAAAAAAAAAAAVYD/BjNZ372Jnuv/9/j9/8nT9v+D0pj/R71m/02+a/9Kr3z/XreM//f4/f+Jnuv/M1nfvVWA/wYAAAAAAAAAADRa3pSJnuv/4Ob6/1h25P+8yPT/ntyv/6zhuv+Fvrj/PpKY/0Cbjf9YduT/4Ob6/4me6/80Wt6UAAAAADVZ4StQcOP99/j9/1h25P8zWN7/5+z7////////////Z4Lm/zNY3v8zWd3/M1je/1h25P/3+P3/UHDj/TVZ4Ss0Wd+PrLvx/5ut7v8zWN7/Rmfh/////////////////0Jo4P8neuf/IY/s/yZ85/8yXN//m63u/6y78f80Wd+PM1nf1ert+/9ObuL/M1je/3CK5////////////9j4//8RyPv/J3vn/ytx5P8lg+n/KHjm/05u4v/p7fv/M1nf1Tpd4PP4+f3/M1je/zNY3v+bre7////////////X+P//JNL8/yDJ+v8Utvb/II/t/y9j4P8zWN7/+Pn9/zpd4PM6XeDz+Pn9/zNY3v8zWN7/w871///////////////////////k+v//T5zt/xyc7/8UtPX/L2Ph//j5/f86XeDzM1nf1ert+/9ObuL/M1je/9vi+f//////oXZf////////////oXZf/2N/5f8zWN7/M1je/05u4v/q7fv/M1nf1TRZ34+su/H/m63u/zNY3v/H0fX//////////////////////+js+/83W97/M1je/zNY3v+bre7/rLvx/zRZ3481WeErUHDj/ff4/f9YduT/X3zl//Hz/P////////////j5/f9yi+j/M1je/zNY3v9YduT/9/j9/1Bw4/01WeErAAAAADRa3pSJnuv/4Ob6/1h25P9MbOL/2N/4/73J9P9DZeD/M1je/zNY3v9YduT/4Ob6/4me6/80Wt6UAAAAAAAAAABVgP8GM1nfvYme6//3+P3/m63u/05u4v8zWN7/M1je/05u4v+bre7/9/j9/4me6/8zWd+9VYD/BgAAAAAAAAAAAAAAAFWA/wY0Wt6UUHDj/ay78f/p7fv/+Pn9//j5/f/p7fv/rLvx/1Bw4/00Wt6UVYD/BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVZ4Ss0Wd+PM1nf1Tpd4PM6XeDzM1nf1TRZ3481WeErAAAAAAAAAAAAAAAAAAAAAPAPAADAAwAAgAEAAIABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAIABAACAAQAAwAMAAPAPAAAoAAAAIAAAAEAAAAABACAAAAAAAAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAFWA/wY2Wt9HM1nelTRY3780WN7ZM1je8zNY3vM0WN7ZNFjfvzNZ3pU2Wt9HVYD/BgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVg3xgzWN+WNFne8TNY3v9ceuT/iJ7r/52v7/+ywPL/ssDy/52v7/+Inuv/XHrk/zNY3v80Wd7xM1jfljVg3xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAElt/wczWOCCM1nf9Ets4v+ouPH/6e37/+vv+//a4Pj/2eD4/9zi+f/c4vn/2eD4/9rg+P/m6vv/6e37/6i48f9LbOL/M1nf9DNY4IJJbf8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1YN8YM1jfxz9i4P+js/D/8fP8/6Cx7/+7x/P/5fbp/1zEd/+o4Lb/9vz4////////////3+T5/zVZ3v9Xed3/obPu//Hz/P+js/D/P2Hf/zNY38c1YN8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAN1njLjRZ3uNTcuP/4eb6/7PB8v9IaeH/M1je/9rg+f/H69D/Rrxl/0a8Zf9NtV//RrRa/063Yv9fpqf/QqWA/0a8Zf87gqv/SGnh/7TC8v/h5vr/U3Lj/zRZ3uMzW+MtAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVg3xg0Wd7jZ4Pm/+/x/P+Emuv/M1je/zNY3v87Xt///P3+/7rmxv9GvGX/Rrxl/0azWv9GvGX/Rrxl/0a8ZP9GvGX/Rrxl/zyIo/8zWN7/M1je/4Sa6//v8fz/Z4Lm/zRZ3uM1YN8YAAAAAAAAAAAAAAAAAAAAAAAAAABJbf8HM1jfx1Ny4//v8fz/aoXm/zNY3v8zWN7/M1je/2N/5f//////tOTB/0a8Zf9HvWb/c8mH/1W+bv9IuWj/Qqp7/0a8Zf9GvGX/PIWo/zNY3v8zWN7/M1je/2qF5v/v8fz/U3Lj/zNY38dJbf8HAAAAAAAAAAAAAAAAAAAAADNY4II/YuD/4eb6/4Sa6/8zWN7/M1je/zNY3v8zWN7/j6Ps///////W8d3/pt+1/+X26v//////8/X9/zhc3v80Wdz/PIek/0a4av85d7j/M1je/zNY3v8zWN7/M1je/4Sa6//h5vr/P2Hf/zNY4IIAAAAAAAAAAAAAAAA1YN8YM1nf9KOz8P+0wvL/M1je/zNY3v8zWN7/M1je/zNY3v+6xvP///////////////////////////+zwfL/M1je/zNY3v8zWN7/NFzY/zNZ3f8zWN7/M1je/zNY3v8zWN7/M1je/7TC8v+js/D/M1nf9DVg3xgAAAAAAAAAADNY35ZLbOL/8fP8/0hp4f8zWN7/M1je/zNY3v8zWN7/M1je/+Xq+v///////////////////////////32U6v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/SGnh//Hz/P9LbOL/M1jflgAAAABVgP8GNFne8ai48f+hsu//M1je/zNY3v8zWN7/M1je/zNY3v9DZeD/////////////////////////////////V3bj/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/obLv/6i48f80Wd7xVYD/BjZa30czWN7/6e37/1Z04/8zWN7/M1je/zNY3v8zWN7/M1je/2+J5/////////////////////////////////9RcOL/Lmfi/yKN7P8XrPP/EML5/w3K+/8Suvf/HZnu/y5n4v8zWN7/M1je/zNY3v9WdOP/6e37/zNY3v82Wt9HM1nelVx65P/j6Pr/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/mavu////////////////////////////7/z//yK79v8K0v3/Fq/0/yKN7P8iiev/IY7s/xqh8P8Suff/Dcr7/y5o4v8zWN7/M1je/zNY3v/j6Pr/XHrk/zNZ3pU0WN+/iJ7r/6++8v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v/DzvX///////////////////////////9k4/7/CtL9/xK59/8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/6++8v+Inuv/NFjfvzRY3tmdr+//mqzu/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/+7x/P///////////////////////////2Xj/v8K0v3/C9D9/xmm8f8YqfP/Gafy/yKN7P8vZuH/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/mqzu/52v7/80WN7ZM1je87LA8v+Fm+v/M1je/zNY3v8zWN7/M1je/zNY3v9La+H/////////////////////////////////+P7//3Pm/v8P0/3/CtL9/wrS/f8K0v3/CtL9/wrR/f8VsvX/JYPp/zNb3v8zWN7/M1je/zNY3v+Fm+v/ssDy/zRZ3vIzWN7zssDy/4Wb6/8zWN7/M1je/zNY3v8zWN7/M1je/3SN6P////////////////////////////////////////////b+///T9///vPP//1q/9v8WrfT/DMv8/wrS/f8K0v3/DsX6/yl25v8zWN7/M1je/4Wb6/+ywPL/M1je8zRY3tmdr+//mqzu/zNY3v8zWN7/M1je/zNY3v8zWN7/m63u////////////0LWn/7qTfv/////////////////////////////+/v//////s8Dy/zNY3v8zWt7/KXbm/x2b7v8bn/D/KnPl/zNY3v8zWN7/mqzu/52v7/80WN7ZNFjfv4me6/+vvvL/M1je/zNY3v8zWN7/M1je/zNY3v+zwPL///////////+sfWT/om5R//v59///////////////////////pHFV/8Cdiv+ruvH/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v+vvvL/iJ7r/zRY378zWd6VXHrk/+Po+v8zWN7/M1je/zNY3v8zWN7/M1je/7/K9P////////////z6+f/38u/////////////////////////////NsKH/4dDH/3uT6f8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/+Po+v9ceuT/M1nelTZa30czWN7/6e37/1Z04/8zWN7/M1je/zNY3v8zWN7/p7fw///////k1c3////////////////////////////////////////////3+f3/Q2Xg/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v9WdOP/6e37/zNY3v82Wt9HVYD/BjRZ3vGouPH/oLHv/zNY3v8zWN7/M1je/zNY3v92j+j//////+7l3//gz8b/+/j2///////////////////////p3db/2MK2/6mz5P8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/6Gy7/+ouPH/NFne8VWA/wYAAAAAM1jflkts4v/x8/z/SGnh/zNY3v8zWN7/M1je/zNY3v/U3Pj////////////////////////////////////////////s7/z/RWfg/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v9IaeH/8fP8/0ts4v8zWN+WAAAAAAAAAAA1YN8YM1nf9KOz8P+zwfL/M1je/zNY3v8zWN7/M1je/0Fj4P/DzvX/////////////////////////////////8PP8/2WB5v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/7TC8v+js/D/M1nf9DVg3xgAAAAAAAAAAAAAAAAzWOCCP2Lg/+Hm+v+Emuv/M1je/zNY3v8zWN7/R2jh/0do4f97k+n/1dz4////////////7/L8/4Oa6/9CZOD/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v+Fm+v/4eb6/z9i4P8zWOCCAAAAAAAAAAAAAAAAAAAAAElt/wczWN/HU3Lj/+/x/P9qheb/M1je/zNY3v+Xqe7/7vH8/////////////////87X9/9TcuP/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/aoXm/+/x/P9TcuP/M1jfx0lt/wcAAAAAAAAAAAAAAAAAAAAAAAAAADVg3xg0Wd7jZ4Lm/+/x/P+Emuv/M1je/2J+5f+puPH/rrzx/5Kl7f9PbuL/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/4Sa6//v8fz/Z4Lm/zRZ3uM1YN8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADdZ4y40Wd7jU3Lj/+Hm+v+0wvL/SGnh/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/0hp4f+0wvL/4eb6/1Ny4/80Wd7jM1vjLQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADVg3xgzWN/HP2Lg/6Oz8P/x8/z/obLv/1Z04/8zWN7/M1je/zNY3v8zWN7/M1je/zNY3v8zWN7/M1je/1Z04/+hsu//8fP8/6Oz8P8/Yd//M1jfxzVg3xgAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAElt/wczWOCCM1nf9Ets4v+ouPH/6e37/+Po+v+vvvL/mqzu/4Wb6/+Fm+v/mqzu/6++8v/j6Pr/6e37/6i48f9LbOL/M1nf9DNY4IJJbf8HAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA1YN8YM1jfljRZ3vEzWN7/XHrk/4ie6/+dr+//ssDy/7LA8v+dr+//iJ7r/1x65P8zWN7/NFne8TNY35Y1YN8YAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAVYD/BjZa30czWd6VNFjfvzRY3tkzWN7zM1je8zRY3tk0WN+/M1nelTZa30dVgP8GAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAP/AA///AAD//AAAP/gAAB/wAAAP4AAAB8AAAAPAAAADgAAAAYAAAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAAAABgAAAAcAAAAPAAAAD4AAAB/AAAA/4AAAf/AAAP/8AAP//wAP/ 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | https://lite.duckduckgo.com/lite 23 | 24 | -------------------------------------------------------------------------------- /prebuild.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | # 3 | # Fennec build scripts 4 | # Copyright (C) 2020-2024 Matías Zúñiga, Andrew Nayenko, Tavi 5 | # 6 | # This program is free software: you can redistribute it and/or modify 7 | # it under the terms of the GNU Affero General Public License as 8 | # published by the Free Software Foundation, either version 3 of the 9 | # License, or (at your option) any later version. 10 | # 11 | # This program is distributed in the hope that it will be useful, 12 | # but WITHOUT ANY WARRANTY; without even the implied warranty of 13 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 14 | # GNU Affero General Public License for more details. 15 | # 16 | # You should have received a copy of the GNU Affero General Public License 17 | # along with this program. If not, see . 18 | # 19 | 20 | set -e 21 | 22 | if [ -z "$1" ] || [ -z "$2" ]; then 23 | echo "Usage: $0 versionName versionCode" >&1 24 | exit 1 25 | fi 26 | 27 | # shellcheck source=paths.sh 28 | source "$(dirname "$0")/paths.sh" 29 | 30 | function localize_maven { 31 | # Replace custom Maven repositories with mavenLocal() 32 | find ./* -name '*.gradle' -type f -print0 | xargs -0 \ 33 | sed -n -i \ 34 | -e '/maven {/{:loop;N;/}$/!b loop;/plugins.gradle.org/!s/maven .*/mavenLocal()/};p' 35 | # Make gradlew scripts call our Gradle wrapper 36 | find ./* -name gradlew -type f | while read -r gradlew; do 37 | echo -e '#!/bin/sh\ngradle "$@"' > "$gradlew" 38 | chmod 755 "$gradlew" 39 | done 40 | } 41 | 42 | # Set up Rust 43 | "$rustup"/rustup-init.sh -y --no-update-default-toolchain 44 | # shellcheck disable=SC1090,SC1091 45 | source "$HOME/.cargo/env" 46 | rustup default 1.82.0 47 | 48 | # 49 | # Fenix 50 | # 51 | 52 | pushd "$fenix" 53 | 54 | # Set up the app ID, version name and version code 55 | sed -i \ 56 | -e 's|applicationId "org.mozilla"|applicationId "us.spotco"|' \ 57 | -e 's|applicationIdSuffix ".firefox"|applicationIdSuffix ".fennec_dos"|' \ 58 | -e 's|"sharedUserId": "org.mozilla.firefox.sharedID"|"sharedUserId": "us.spotco.fennec_dos.sharedID"|' \ 59 | -e "s/Config.releaseVersionName(project)/'$1'/" \ 60 | -e "s/Config.generateFennecVersionCode(arch, aab)/$2/" \ 61 | app/build.gradle 62 | sed -i \ 63 | -e '/android:targetPackage/s/org.mozilla.firefox/us.spotco.fennec_dos/' \ 64 | app/src/release/res/xml/shortcuts.xml 65 | 66 | # Disable crash reporting 67 | sed -i -e '/CRASH_REPORTING/s/true/false/' app/build.gradle 68 | 69 | # Disable MetricController 70 | sed -i -e '/TELEMETRY/s/true/false/' app/build.gradle 71 | 72 | # Let it be Mull 73 | sed -i \ 74 | -e 's/Firefox Daylight/Mull/; s/Firefox/Mull/g' \ 75 | -e '/about_content/s/Mozilla/Divested Computing Group/' \ 76 | app/src/*/res/values*/*strings.xml 77 | 78 | # Fenix uses reflection to create a instance of profile based on the text of 79 | # the label, see 80 | # app/src/main/java/org/mozilla/fenix/perf/ProfilerStartDialogFragment.kt#185 81 | sed -i \ 82 | -e '/Firefox(.*, .*)/s/Firefox/Mull/' \ 83 | -e 's/firefox_threads/mull_threads/' \ 84 | -e 's/firefox_features/mull_features/' \ 85 | app/src/main/java/org/mozilla/fenix/perf/ProfilerUtils.kt 86 | 87 | # Replace proprietary artwork 88 | rm app/src/release/res/drawable/ic_launcher_foreground.xml 89 | rm app/src/release/res/mipmap-*/ic_launcher.webp 90 | rm app/src/release/res/values/colors.xml 91 | rm app/src/main/res/values-v24/styles.xml 92 | sed -i -e '/android:roundIcon/d' app/src/main/AndroidManifest.xml 93 | sed -i -e '/SplashScreen/,+5d' app/src/main/res/values-v27/styles.xml 94 | find "$patches/fenix-overlay" -type f | while read -r src; do 95 | dst=app/src/release/${src#"$patches/fenix-overlay/"} 96 | mkdir -p "$(dirname "$dst")" 97 | cp "$src" "$dst" 98 | done 99 | sed -i \ 100 | -e 's/googleg_standard_color_18/ic_download/' \ 101 | app/src/main/java/org/mozilla/fenix/components/menu/compose/ExtensionsSubmenu.kt \ 102 | app/src/main/java/org/mozilla/fenix/components/menu/compose/MenuItem.kt \ 103 | app/src/main/java/org/mozilla/fenix/compose/list/ListItem.kt 104 | 105 | # Enable about:config 106 | sed -i \ 107 | -e 's/aboutConfigEnabled(.*)/aboutConfigEnabled(true)/' \ 108 | app/src/*/java/org/mozilla/fenix/*/GeckoProvider.kt 109 | 110 | # Enable cookie banner handling 111 | sed -i \ 112 | -e '168s/channel: developer/channel: release/' app/nimbus.fml.yaml 113 | 114 | # Set up target parameters 115 | case $(echo "$2" | cut -c 7) in 116 | 0) 117 | abi=armeabi-v7a 118 | target=arm-linux-androideabi 119 | echo "ARM" > "$llvm/targets_to_build" 120 | rusttarget=arm 121 | rustup target add thumbv7neon-linux-androideabi 122 | rustup target add armv7-linux-androideabi 123 | ;; 124 | 1) 125 | abi=x86 126 | target=i686-linux-android 127 | echo "X86" > "$llvm/targets_to_build" 128 | rusttarget=x86 129 | rustup target add i686-linux-android 130 | ;; 131 | 2) 132 | abi=arm64-v8a 133 | target=aarch64-linux-android 134 | echo "AArch64" > "$llvm/targets_to_build" 135 | rusttarget=arm64 136 | rustup target add aarch64-linux-android 137 | ;; 138 | *) 139 | echo "Unknown target code in $2." >&2 140 | exit 1 141 | ;; 142 | esac 143 | sed -i -e "s/include \".*\"/include \"$abi\"/" app/build.gradle 144 | 145 | # Enable the auto-publication workflow 146 | echo "autoPublish.application-services.dir=$application_services" >> local.properties 147 | 148 | popd 149 | 150 | # 151 | # Glean 152 | # 153 | 154 | pushd "$glean" 155 | echo "rust.targets=linux-x86-64,$rusttarget" >> local.properties 156 | localize_maven 157 | popd 158 | 159 | # 160 | # Android Components 161 | # 162 | 163 | pushd "$android_components" 164 | find "$patches/a-c-overlay" -type f | while read -r src; do 165 | cp "$src" "${src#"$patches/a-c-overlay/"}" 166 | done 167 | # Add the added search engines as `general` engines 168 | sed -i \ 169 | -e '41i \ \ \ \ "brave",\n\ \ \ \ "ddghtml",\n\ \ \ \ "ddglite",\n\ \ \ \ "metager",\n\ \ \ \ "mojeek",\n\ \ \ \ "qwantlite",\n\ \ \ \ "startpage",' \ 170 | components/feature/search/src/main/java/mozilla/components/feature/search/storage/SearchEngineReader.kt 171 | # Hack to prevent too long string from breaking build 172 | sed -i '/val statusCmd/,+3d' plugins/config/src/main/java/ConfigPlugin.kt 173 | sed -i '/\/\/ Append "+"/a \ val statusSuffix = "+"' plugins/config/src/main/java/ConfigPlugin.kt 174 | popd 175 | 176 | # 177 | # Application Services 178 | # 179 | 180 | pushd "$application_services" 181 | # Break the dependency on older A-C 182 | sed -i -e '/android-components = /s/131\.0\.2/133.0.3/' gradle/libs.versions.toml 183 | echo "rust.targets=linux-x86-64,$rusttarget" >> local.properties 184 | sed -i -e '/NDK ez-install/,/^$/d' libs/verify-android-ci-environment.sh 185 | sed -i -e '/content {/,/}/d' build.gradle 186 | localize_maven 187 | # Fix stray 188 | sed -i -e '/^ mavenLocal/{n;d}' tools/nimbus-gradle-plugin/build.gradle 189 | # Fail on use of prebuilt binary 190 | sed -i 's|https://|hxxps://|' tools/nimbus-gradle-plugin/src/main/groovy/org/mozilla/appservices/tooling/nimbus/NimbusGradlePlugin.groovy 191 | popd 192 | 193 | 194 | # 195 | # WASI SDK 196 | # 197 | 198 | pushd "$wasi" 199 | patch -p1 --no-backup-if-mismatch --quiet < "$mozilla_release/taskcluster/scripts/misc/wasi-sdk.patch" 200 | popd 201 | 202 | # 203 | # GeckoView 204 | # 205 | 206 | pushd "$mozilla_release" 207 | # Remove Mozilla repositories substitution and explicitly add the required ones 208 | patch -p1 --no-backup-if-mismatch --quiet < "$patches/gecko-localize_maven.patch" 209 | 210 | # Replace GMS with microG client library 211 | patch -p1 --no-backup-if-mismatch --quiet < "$patches/gecko-liberate.patch" 212 | 213 | # Patch the use of proprietary and tracking libraries 214 | patch -p1 --no-backup-if-mismatch --quiet < "$patches/fenix-liberate.patch" 215 | 216 | # Set strict ETP by default 217 | patch -p1 --no-backup-if-mismatch --quiet < "$patches/strict_etp.patch" 218 | 219 | # Enable HTTPS only mode by default 220 | patch -p1 --no-backup-if-mismatch --quiet < "$patches/https_only.patch" 221 | 222 | # Fix v125 compile error 223 | patch -p1 --no-backup-if-mismatch --quiet < "$patches/gecko-fix-125-compile.patch" 224 | 225 | # Fix v125 aar output not including native libraries 226 | sed -i \ 227 | -e 's/singleVariant("debug")/singleVariant("release")/' \ 228 | mobile/android/exoplayer2/build.gradle 229 | sed -i \ 230 | -e "s/singleVariant('debug')/singleVariant('release')/" \ 231 | mobile/android/geckoview/build.gradle 232 | 233 | # Hack the timeout for 234 | # geckoview:generateJNIWrappersForGeneratedWithGeckoBinariesDebug 235 | sed -i \ 236 | -e 's/max_wait_seconds=600/max_wait_seconds=1800/' \ 237 | mobile/android/gradle.py 238 | 239 | # Patch the LLVM source code 240 | # Search clang- in https://android.googlesource.com/platform/ndk/+/refs/tags/ndk-r27/ndk/toolchains.py 241 | LLVM_SVN='522817' 242 | python3 $toolchain_utils/llvm_tools/patch_manager.py \ 243 | --svn_version $LLVM_SVN \ 244 | --patch_metadata_file $llvm_android/patches/PATCHES.json \ 245 | --src_path $llvm 246 | 247 | # Configure 248 | sed -i -e '/check_android_tools("emulator"/d' build/moz.configure/android-sdk.configure 249 | cat << EOF > mozconfig 250 | ac_add_options --disable-crashreporter 251 | ac_add_options --disable-debug 252 | ac_add_options --disable-nodejs 253 | ac_add_options --disable-profiling 254 | ac_add_options --disable-rust-debug 255 | ac_add_options --disable-tests 256 | ac_add_options --disable-updater 257 | ac_add_options --enable-application=mobile/android 258 | ac_add_options --enable-hardening 259 | ac_add_options --enable-optimize 260 | ac_add_options --enable-release 261 | ac_add_options --enable-minify=properties # JS minification breaks addons 262 | ac_add_options --enable-update-channel=release 263 | ac_add_options --enable-rust-simd 264 | ac_add_options --enable-strip 265 | ac_add_options --target=$target 266 | ac_add_options --with-android-ndk="$ANDROID_NDK" 267 | ac_add_options --with-android-sdk="$ANDROID_SDK" 268 | ac_add_options --with-libclang-path="$llvm/out/lib" 269 | ac_add_options --with-java-bin-path="/usr/bin" 270 | ac_add_options --with-gradle=$(command -v gradle) 271 | ac_add_options --with-wasi-sysroot="$wasi/build/install/wasi/share/wasi-sysroot" 272 | ac_add_options CC="$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/clang" 273 | ac_add_options CXX="$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/clang++" 274 | ac_add_options STRIP="$ANDROID_NDK/toolchains/llvm/prebuilt/linux-x86_64/bin/llvm-strip" 275 | ac_add_options WASM_CC="$wasi/build/install/wasi/bin/clang" 276 | ac_add_options WASM_CXX="$wasi/build/install/wasi/bin/clang++" 277 | mk_add_options MOZ_OBJDIR=@TOPSRCDIR@/obj 278 | EOF 279 | 280 | # Disable Gecko Media Plugins and casting 281 | sed -i -e '/gmp-provider/d; /casting.enabled/d' mobile/android/app/geckoview-prefs.js 282 | cat << EOF >> mobile/android/app/geckoview-prefs.js 283 | 284 | // Disable Encrypted Media Extensions 285 | pref("media.eme.enabled", false); 286 | 287 | // Disable Gecko Media Plugins 288 | pref("media.gmp-provider.enabled", false); 289 | 290 | // Avoid openh264 being downloaded 291 | pref("media.gmp-manager.url.override", "data:text/plain,"); 292 | 293 | // Disable openh264 if it is already downloaded 294 | pref("media.gmp-gmpopenh264.enabled", false); 295 | 296 | // Disable casting (Roku, Chromecast) 297 | pref("browser.casting.enabled", false); 298 | EOF 299 | 300 | cat "$patches/preferences/userjs-arkenfox.js" >> mobile/android/app/geckoview-prefs.js 301 | cat "$patches/preferences/userjs-brace.js" >> mobile/android/app/geckoview-prefs.js 302 | 303 | popd 304 | -------------------------------------------------------------------------------- /fenix-overlay/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- 1 | 6 | 9 | 12 | 15 | 18 | 21 | 24 | 27 | 30 | 33 | 36 | 39 | 42 | 45 | 46 | -------------------------------------------------------------------------------- /gecko-localize_maven.patch: -------------------------------------------------------------------------------- 1 | diff -r 0e15e2edd460 -r c45f2c445215 build.gradle 2 | --- a/build.gradle Mon Oct 21 17:55:50 2024 +0000 3 | +++ b/build.gradle Mon Oct 28 08:32:50 2024 -0400 4 | @@ -4,14 +4,9 @@ 5 | 6 | buildscript { 7 | repositories { 8 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 9 | - maven { 10 | - url repository 11 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 12 | - allowInsecureProtocol = true 13 | - } 14 | - } 15 | - } 16 | + mavenLocal() 17 | + maven { url "https://plugins.gradle.org/m2/" } 18 | + google() 19 | } 20 | 21 | ext { 22 | @@ -144,14 +139,9 @@ 23 | } 24 | 25 | repositories { 26 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 27 | - maven { 28 | - url repository 29 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 30 | - allowInsecureProtocol = true 31 | - } 32 | - } 33 | - } 34 | + mavenLocal() 35 | + maven { url "https://plugins.gradle.org/m2/" } 36 | + google() 37 | } 38 | 39 | // Use the semanticdb-javac and semanticdb-kotlinc plugins to generate semanticdb files for Searchfox 40 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/build.gradle 41 | --- a/mobile/android/android-components/build.gradle Mon Oct 21 17:55:50 2024 +0000 42 | +++ b/mobile/android/android-components/build.gradle Mon Oct 28 08:32:50 2024 -0400 43 | @@ -9,14 +9,9 @@ 44 | 45 | buildscript { 46 | repositories { 47 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 48 | - maven { 49 | - url repository 50 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 51 | - allowInsecureProtocol = true 52 | - } 53 | - } 54 | - } 55 | + mavenLocal() 56 | + maven { url "https://plugins.gradle.org/m2/" } 57 | + google() 58 | } 59 | 60 | dependencies { 61 | @@ -40,14 +35,9 @@ 62 | 63 | allprojects { 64 | repositories { 65 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 66 | - maven { 67 | - url repository 68 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 69 | - allowInsecureProtocol = true 70 | - } 71 | - } 72 | - } 73 | + mavenLocal() 74 | + maven { url "https://plugins.gradle.org/m2/" } 75 | + google() 76 | 77 | maven { 78 | url "${gradle.mozconfig.topobjdir}/gradle/maven" 79 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/components/browser/engine-gecko/build.gradle 80 | --- a/mobile/android/android-components/components/browser/engine-gecko/build.gradle Mon Oct 21 17:55:50 2024 +0000 81 | +++ b/mobile/android/android-components/components/browser/engine-gecko/build.gradle Mon Oct 28 08:32:50 2024 -0400 82 | @@ -4,14 +4,9 @@ 83 | 84 | buildscript { 85 | repositories { 86 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 87 | - maven { 88 | - url repository 89 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 90 | - allowInsecureProtocol = true 91 | - } 92 | - } 93 | - } 94 | + mavenLocal() 95 | + maven { url "https://plugins.gradle.org/m2/" } 96 | + google() 97 | } 98 | 99 | dependencies { 100 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/components/lib/crash/build.gradle 101 | --- a/mobile/android/android-components/components/lib/crash/build.gradle Mon Oct 21 17:55:50 2024 +0000 102 | +++ b/mobile/android/android-components/components/lib/crash/build.gradle Mon Oct 28 08:32:50 2024 -0400 103 | @@ -4,14 +4,9 @@ 104 | 105 | buildscript { 106 | repositories { 107 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 108 | - maven { 109 | - url repository 110 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 111 | - allowInsecureProtocol = true 112 | - } 113 | - } 114 | - } 115 | + mavenLocal() 116 | + maven { url "https://plugins.gradle.org/m2/" } 117 | + google() 118 | } 119 | 120 | dependencies { 121 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/components/service/nimbus/build.gradle 122 | --- a/mobile/android/android-components/components/service/nimbus/build.gradle Mon Oct 21 17:55:50 2024 +0000 123 | +++ b/mobile/android/android-components/components/service/nimbus/build.gradle Mon Oct 28 08:32:50 2024 -0400 124 | @@ -4,14 +4,9 @@ 125 | 126 | buildscript { 127 | repositories { 128 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 129 | - maven { 130 | - url repository 131 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 132 | - allowInsecureProtocol = true 133 | - } 134 | - } 135 | - } 136 | + mavenLocal() 137 | + maven { url "https://plugins.gradle.org/m2/" } 138 | + google() 139 | } 140 | 141 | dependencies { 142 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/components/support/remotesettings/build.gradle 143 | --- a/mobile/android/android-components/components/support/remotesettings/build.gradle Mon Oct 21 17:55:50 2024 +0000 144 | +++ b/mobile/android/android-components/components/support/remotesettings/build.gradle Mon Oct 28 08:32:50 2024 -0400 145 | @@ -3,14 +3,9 @@ 146 | * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ 147 | buildscript { 148 | repositories { 149 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 150 | - maven { 151 | - url repository 152 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 153 | - allowInsecureProtocol = true 154 | - } 155 | - } 156 | - } 157 | + mavenLocal() 158 | + maven { url "https://plugins.gradle.org/m2/" } 159 | + google() 160 | } 161 | dependencies { 162 | classpath ComponentsDependencies.plugin_serialization 163 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/plugins/config/build.gradle 164 | --- a/mobile/android/android-components/plugins/config/build.gradle Mon Oct 21 17:55:50 2024 +0000 165 | +++ b/mobile/android/android-components/plugins/config/build.gradle Mon Oct 28 08:32:50 2024 -0400 166 | @@ -7,14 +7,9 @@ 167 | } 168 | 169 | repositories { 170 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 171 | - maven { 172 | - url repository 173 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 174 | - allowInsecureProtocol = true 175 | - } 176 | - } 177 | - } 178 | + mavenLocal() 179 | + maven { url "https://plugins.gradle.org/m2/" } 180 | + google() 181 | } 182 | 183 | gradlePlugin { 184 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/plugins/config/settings.gradle 185 | --- a/mobile/android/android-components/plugins/config/settings.gradle Mon Oct 21 17:55:50 2024 +0000 186 | +++ b/mobile/android/android-components/plugins/config/settings.gradle Mon Oct 28 08:32:50 2024 -0400 187 | @@ -9,13 +9,8 @@ 188 | } 189 | 190 | repositories { 191 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 192 | - maven { 193 | - url repository 194 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 195 | - allowInsecureProtocol = true 196 | - } 197 | - } 198 | - } 199 | + mavenLocal() 200 | + maven { url "https://plugins.gradle.org/m2/" } 201 | + google() 202 | } 203 | } 204 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/plugins/dependencies/build.gradle 205 | --- a/mobile/android/android-components/plugins/dependencies/build.gradle Mon Oct 21 17:55:50 2024 +0000 206 | +++ b/mobile/android/android-components/plugins/dependencies/build.gradle Mon Oct 28 08:32:50 2024 -0400 207 | @@ -7,14 +7,9 @@ 208 | } 209 | 210 | repositories { 211 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 212 | - maven { 213 | - url repository 214 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 215 | - allowInsecureProtocol = true 216 | - } 217 | - } 218 | - } 219 | + mavenLocal() 220 | + maven { url "https://plugins.gradle.org/m2/" } 221 | + google() 222 | } 223 | 224 | gradlePlugin { 225 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/plugins/dependencies/settings.gradle 226 | --- a/mobile/android/android-components/plugins/dependencies/settings.gradle Mon Oct 21 17:55:50 2024 +0000 227 | +++ b/mobile/android/android-components/plugins/dependencies/settings.gradle Mon Oct 28 08:32:50 2024 -0400 228 | @@ -9,13 +9,8 @@ 229 | } 230 | 231 | repositories { 232 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 233 | - maven { 234 | - url repository 235 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 236 | - allowInsecureProtocol = true 237 | - } 238 | - } 239 | - } 240 | + mavenLocal() 241 | + maven { url "https://plugins.gradle.org/m2/" } 242 | + google() 243 | } 244 | } 245 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/plugins/publicsuffixlist/build.gradle 246 | --- a/mobile/android/android-components/plugins/publicsuffixlist/build.gradle Mon Oct 21 17:55:50 2024 +0000 247 | +++ b/mobile/android/android-components/plugins/publicsuffixlist/build.gradle Mon Oct 28 08:32:50 2024 -0400 248 | @@ -7,14 +7,9 @@ 249 | } 250 | 251 | repositories { 252 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 253 | - maven { 254 | - url repository 255 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 256 | - allowInsecureProtocol = true 257 | - } 258 | - } 259 | - } 260 | + mavenLocal() 261 | + maven { url "https://plugins.gradle.org/m2/" } 262 | + google() 263 | } 264 | 265 | dependencies { 266 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/plugins/publicsuffixlist/settings.gradle 267 | --- a/mobile/android/android-components/plugins/publicsuffixlist/settings.gradle Mon Oct 21 17:55:50 2024 +0000 268 | +++ b/mobile/android/android-components/plugins/publicsuffixlist/settings.gradle Mon Oct 28 08:32:50 2024 -0400 269 | @@ -10,14 +10,9 @@ 270 | } 271 | 272 | repositories { 273 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 274 | - maven { 275 | - url repository 276 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 277 | - allowInsecureProtocol = true 278 | - } 279 | - } 280 | - } 281 | + mavenLocal() 282 | + maven { url "https://plugins.gradle.org/m2/" } 283 | + google() 284 | } 285 | 286 | includeBuild("../dependencies") 287 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/samples/glean/build.gradle 288 | --- a/mobile/android/android-components/samples/glean/build.gradle Mon Oct 21 17:55:50 2024 +0000 289 | +++ b/mobile/android/android-components/samples/glean/build.gradle Mon Oct 28 08:32:50 2024 -0400 290 | @@ -4,14 +4,9 @@ 291 | 292 | buildscript { 293 | repositories { 294 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 295 | - maven { 296 | - url repository 297 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 298 | - allowInsecureProtocol = true 299 | - } 300 | - } 301 | - } 302 | + mavenLocal() 303 | + maven { url "https://plugins.gradle.org/m2/" } 304 | + google() 305 | 306 | dependencies { 307 | classpath "org.mozilla.telemetry:glean-gradle-plugin:${Versions.mozilla_glean}" 308 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/samples/glean/samples-glean-library/build.gradle 309 | --- a/mobile/android/android-components/samples/glean/samples-glean-library/build.gradle Mon Oct 21 17:55:50 2024 +0000 310 | +++ b/mobile/android/android-components/samples/glean/samples-glean-library/build.gradle Mon Oct 28 08:32:50 2024 -0400 311 | @@ -4,14 +4,9 @@ 312 | 313 | buildscript { 314 | repositories { 315 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 316 | - maven { 317 | - url repository 318 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 319 | - allowInsecureProtocol = true 320 | - } 321 | - } 322 | - } 323 | + mavenLocal() 324 | + maven { url "https://plugins.gradle.org/m2/" } 325 | + google() 326 | 327 | dependencies { 328 | classpath "org.mozilla.telemetry:glean-gradle-plugin:${Versions.mozilla_glean}" 329 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/android-components/settings.gradle 330 | --- a/mobile/android/android-components/settings.gradle Mon Oct 21 17:55:50 2024 +0000 331 | +++ b/mobile/android/android-components/settings.gradle Mon Oct 28 08:32:50 2024 -0400 332 | @@ -8,14 +8,9 @@ 333 | } 334 | 335 | repositories { 336 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 337 | - maven { 338 | - url repository 339 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 340 | - allowInsecureProtocol = true 341 | - } 342 | - } 343 | - } 344 | + mavenLocal() 345 | + maven { url "https://plugins.gradle.org/m2/" } 346 | + google() 347 | } 348 | 349 | includeBuild("plugins/dependencies") 350 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/fenix/app/build.gradle 351 | --- a/mobile/android/fenix/app/build.gradle Mon Oct 21 17:55:50 2024 +0000 352 | +++ b/mobile/android/fenix/app/build.gradle Mon Oct 28 08:32:50 2024 -0400 353 | @@ -3,14 +3,9 @@ 354 | 355 | buildscript { 356 | repositories { 357 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 358 | - maven { 359 | - url repository 360 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 361 | - allowInsecureProtocol = true 362 | - } 363 | - } 364 | - } 365 | + mavenLocal() 366 | + maven { url "https://plugins.gradle.org/m2/" } 367 | + google() 368 | } 369 | 370 | dependencies { 371 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/fenix/build.gradle 372 | --- a/mobile/android/fenix/build.gradle Mon Oct 21 17:55:50 2024 +0000 373 | +++ b/mobile/android/fenix/build.gradle Mon Oct 28 08:32:50 2024 -0400 374 | @@ -10,14 +10,9 @@ 375 | buildscript { 376 | // This logic is duplicated in the allprojects block: I don't know how to fix that. 377 | repositories { 378 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 379 | - maven { 380 | - url repository 381 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 382 | - allowInsecureProtocol = true 383 | - } 384 | - } 385 | - } 386 | + mavenLocal() 387 | + maven { url "https://plugins.gradle.org/m2/" } 388 | + google() 389 | } 390 | 391 | dependencies { 392 | @@ -51,14 +46,9 @@ 393 | allprojects { 394 | // This logic is duplicated in the buildscript block: I don't know how to fix that. 395 | repositories { 396 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 397 | - maven { 398 | - url repository 399 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 400 | - allowInsecureProtocol = true 401 | - } 402 | - } 403 | - } 404 | + mavenLocal() 405 | + maven { url "https://plugins.gradle.org/m2/" } 406 | + google() 407 | 408 | maven { 409 | url "${gradle.mozconfig.topobjdir}/gradle/maven" 410 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/fenix/mozilla-lint-rules/build.gradle 411 | --- a/mobile/android/fenix/mozilla-lint-rules/build.gradle Mon Oct 21 17:55:50 2024 +0000 412 | +++ b/mobile/android/fenix/mozilla-lint-rules/build.gradle Mon Oct 28 08:32:50 2024 -0400 413 | @@ -6,14 +6,9 @@ 414 | apply plugin: 'kotlin' 415 | 416 | repositories { 417 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 418 | - maven { 419 | - url repository 420 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 421 | - allowInsecureProtocol = true 422 | - } 423 | - } 424 | - } 425 | + mavenLocal() 426 | + maven { url "https://plugins.gradle.org/m2/" } 427 | + google() 428 | } 429 | 430 | dependencies { 431 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/fenix/plugins/apksize/build.gradle 432 | --- a/mobile/android/fenix/plugins/apksize/build.gradle Mon Oct 21 17:55:50 2024 +0000 433 | +++ b/mobile/android/fenix/plugins/apksize/build.gradle Mon Oct 28 08:32:50 2024 -0400 434 | @@ -7,14 +7,9 @@ 435 | } 436 | 437 | repositories { 438 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 439 | - maven { 440 | - url repository 441 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 442 | - allowInsecureProtocol = true 443 | - } 444 | - } 445 | - } 446 | + mavenLocal() 447 | + maven { url "https://plugins.gradle.org/m2/" } 448 | + google() 449 | } 450 | 451 | dependencies { 452 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/fenix/plugins/apksize/settings.gradle 453 | --- a/mobile/android/fenix/plugins/apksize/settings.gradle Mon Oct 21 17:55:50 2024 +0000 454 | +++ b/mobile/android/fenix/plugins/apksize/settings.gradle Mon Oct 28 08:32:50 2024 -0400 455 | @@ -9,13 +9,8 @@ 456 | } 457 | 458 | repositories { 459 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 460 | - maven { 461 | - url repository 462 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 463 | - allowInsecureProtocol = true 464 | - } 465 | - } 466 | - } 467 | + mavenLocal() 468 | + maven { url "https://plugins.gradle.org/m2/" } 469 | + google() 470 | } 471 | } 472 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/fenix/plugins/fenixdependencies/build.gradle 473 | --- a/mobile/android/fenix/plugins/fenixdependencies/build.gradle Mon Oct 21 17:55:50 2024 +0000 474 | +++ b/mobile/android/fenix/plugins/fenixdependencies/build.gradle Mon Oct 28 08:32:50 2024 -0400 475 | @@ -7,14 +7,9 @@ 476 | } 477 | 478 | repositories { 479 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 480 | - maven { 481 | - url repository 482 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 483 | - allowInsecureProtocol = true 484 | - } 485 | - } 486 | - } 487 | + mavenLocal() 488 | + maven { url "https://plugins.gradle.org/m2/" } 489 | + google() 490 | } 491 | 492 | gradlePlugin { 493 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/fenix/plugins/fenixdependencies/settings.gradle 494 | --- a/mobile/android/fenix/plugins/fenixdependencies/settings.gradle Mon Oct 21 17:55:50 2024 +0000 495 | +++ b/mobile/android/fenix/plugins/fenixdependencies/settings.gradle Mon Oct 28 08:32:50 2024 -0400 496 | @@ -9,13 +9,8 @@ 497 | } 498 | 499 | repositories { 500 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 501 | - maven { 502 | - url repository 503 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 504 | - allowInsecureProtocol = true 505 | - } 506 | - } 507 | - } 508 | + mavenLocal() 509 | + maven { url "https://plugins.gradle.org/m2/" } 510 | + google() 511 | } 512 | } 513 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/fenix/settings.gradle 514 | --- a/mobile/android/fenix/settings.gradle Mon Oct 21 17:55:50 2024 +0000 515 | +++ b/mobile/android/fenix/settings.gradle Mon Oct 28 08:32:50 2024 -0400 516 | @@ -8,14 +8,9 @@ 517 | } 518 | 519 | repositories { 520 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 521 | - maven { 522 | - url repository 523 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 524 | - allowInsecureProtocol = true 525 | - } 526 | - } 527 | - } 528 | + mavenLocal() 529 | + maven { url "https://plugins.gradle.org/m2/" } 530 | + google() 531 | } 532 | 533 | includeBuild("../android-components/plugins/publicsuffixlist") 534 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/focus-android/build.gradle 535 | --- a/mobile/android/focus-android/build.gradle Mon Oct 21 17:55:50 2024 +0000 536 | +++ b/mobile/android/focus-android/build.gradle Mon Oct 28 08:32:50 2024 -0400 537 | @@ -7,14 +7,9 @@ 538 | 539 | buildscript { 540 | repositories { 541 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 542 | - maven { 543 | - url repository 544 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 545 | - allowInsecureProtocol = true 546 | - } 547 | - } 548 | - } 549 | + mavenLocal() 550 | + maven { url "https://plugins.gradle.org/m2/" } 551 | + google() 552 | } 553 | 554 | dependencies { 555 | @@ -82,14 +77,9 @@ 556 | 557 | allprojects { 558 | repositories { 559 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 560 | - maven { 561 | - url repository 562 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 563 | - allowInsecureProtocol = true 564 | - } 565 | - } 566 | - } 567 | + mavenLocal() 568 | + maven { url "https://plugins.gradle.org/m2/" } 569 | + google() 570 | 571 | maven { 572 | url "${gradle.mozconfig.topobjdir}/gradle/maven" 573 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/focus-android/plugins/focusdependencies/build.gradle 574 | --- a/mobile/android/focus-android/plugins/focusdependencies/build.gradle Mon Oct 21 17:55:50 2024 +0000 575 | +++ b/mobile/android/focus-android/plugins/focusdependencies/build.gradle Mon Oct 28 08:32:50 2024 -0400 576 | @@ -7,14 +7,9 @@ 577 | } 578 | 579 | repositories { 580 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 581 | - maven { 582 | - url repository 583 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 584 | - allowInsecureProtocol = true 585 | - } 586 | - } 587 | - } 588 | + mavenLocal() 589 | + maven { url "https://plugins.gradle.org/m2/" } 590 | + google() 591 | } 592 | 593 | gradlePlugin { 594 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/focus-android/plugins/focusdependencies/settings.gradle 595 | --- a/mobile/android/focus-android/plugins/focusdependencies/settings.gradle Mon Oct 21 17:55:50 2024 +0000 596 | +++ b/mobile/android/focus-android/plugins/focusdependencies/settings.gradle Mon Oct 28 08:32:50 2024 -0400 597 | @@ -9,13 +9,8 @@ 598 | } 599 | 600 | repositories { 601 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 602 | - maven { 603 | - url repository 604 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 605 | - allowInsecureProtocol = true 606 | - } 607 | - } 608 | - } 609 | + mavenLocal() 610 | + maven { url "https://plugins.gradle.org/m2/" } 611 | + google() 612 | } 613 | } 614 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/focus-android/settings.gradle 615 | --- a/mobile/android/focus-android/settings.gradle Mon Oct 21 17:55:50 2024 +0000 616 | +++ b/mobile/android/focus-android/settings.gradle Mon Oct 28 08:32:50 2024 -0400 617 | @@ -8,14 +8,9 @@ 618 | } 619 | 620 | repositories { 621 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 622 | - maven { 623 | - url repository 624 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 625 | - allowInsecureProtocol = true 626 | - } 627 | - } 628 | - } 629 | + mavenLocal() 630 | + maven { url "https://plugins.gradle.org/m2/" } 631 | + google() 632 | } 633 | 634 | includeBuild("../android-components/plugins/publicsuffixlist") 635 | diff -r 0e15e2edd460 -r c45f2c445215 mobile/android/shared-settings.gradle 636 | --- a/mobile/android/shared-settings.gradle Mon Oct 21 17:55:50 2024 +0000 637 | +++ b/mobile/android/shared-settings.gradle Mon Oct 28 08:32:50 2024 -0400 638 | @@ -10,14 +10,9 @@ 639 | } 640 | 641 | repositories { 642 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 643 | - maven { 644 | - url repository 645 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 646 | - allowInsecureProtocol = true 647 | - } 648 | - } 649 | - } 650 | + mavenLocal() 651 | + maven { url "https://plugins.gradle.org/m2/" } 652 | + google() 653 | } 654 | 655 | dependencies { 656 | diff -r 0e15e2edd460 -r c45f2c445215 settings.gradle 657 | --- a/settings.gradle Mon Oct 21 17:55:50 2024 +0000 658 | +++ b/settings.gradle Mon Oct 28 08:32:50 2024 -0400 659 | @@ -4,14 +4,9 @@ 660 | } 661 | 662 | repositories { 663 | - gradle.mozconfig.substs.GRADLE_MAVEN_REPOSITORIES.each { repository -> 664 | - maven { 665 | - url repository 666 | - if (gradle.mozconfig.substs.ALLOW_INSECURE_GRADLE_REPOSITORIES) { 667 | - allowInsecureProtocol = true 668 | - } 669 | - } 670 | - } 671 | + mavenLocal() 672 | + maven { url "https://plugins.gradle.org/m2/" } 673 | + google() 674 | } 675 | 676 | includeBuild("${rootProject.projectDir.absolutePath}/mobile/android/android-components/plugins/config") 677 | -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/search/list.json: -------------------------------------------------------------------------------- 1 | { 2 | "default": { 3 | "searchDefault": "DuckDuckGo", 4 | "searchOrder": ["Bing", "Brave", "DuckDuckGo", "DuckDuckGo HTML", "DuckDuckGo Lite", "Ecosia", "Google", "Metager", "Mojeek", "Qwant", "Qwant Lite", "Startpage", "Wikipedia"], 5 | "visibleDefaultEngines": [ 6 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" 7 | ] 8 | }, 9 | "regionOverrides": { 10 | }, 11 | "locales": { 12 | "ach": { 13 | "default": { 14 | "visibleDefaultEngines": [ 15 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" 16 | ] 17 | } 18 | }, 19 | "an": { 20 | "default": { 21 | "visibleDefaultEngines": [ 22 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-an" 23 | ] 24 | } 25 | }, 26 | "ar": { 27 | "default": { 28 | "visibleDefaultEngines": [ 29 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ar" 30 | ] 31 | } 32 | }, 33 | "as": { 34 | "default": { 35 | "visibleDefaultEngines": [ 36 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-as" 37 | ] 38 | } 39 | }, 40 | "ast": { 41 | "default": { 42 | "visibleDefaultEngines": [ 43 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ast" 44 | ] 45 | } 46 | }, 47 | "az": { 48 | "default": { 49 | "visibleDefaultEngines": [ 50 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-az" 51 | ] 52 | } 53 | }, 54 | "be": { 55 | "default": { 56 | "visibleDefaultEngines": [ 57 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-be" 58 | ] 59 | } 60 | }, 61 | "bg": { 62 | "default": { 63 | "visibleDefaultEngines": [ 64 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bg" 65 | ] 66 | } 67 | }, 68 | "bn": { 69 | "default": { 70 | "visibleDefaultEngines": [ 71 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bn" 72 | ] 73 | } 74 | }, 75 | "bn-BD": { 76 | "default": { 77 | "visibleDefaultEngines": [ 78 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bn" 79 | ] 80 | } 81 | }, 82 | "bn-IN": { 83 | "default": { 84 | "visibleDefaultEngines": [ 85 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bn" 86 | ] 87 | } 88 | }, 89 | "br": { 90 | "default": { 91 | "visibleDefaultEngines": [ 92 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-br" 93 | ] 94 | } 95 | }, 96 | "bs": { 97 | "default": { 98 | "visibleDefaultEngines": [ 99 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-bs" 100 | ] 101 | } 102 | }, 103 | "ca": { 104 | "default": { 105 | "visibleDefaultEngines": [ 106 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ca" 107 | ] 108 | } 109 | }, 110 | "cak": { 111 | "default": { 112 | "visibleDefaultEngines": [ 113 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" 114 | ] 115 | } 116 | }, 117 | "cs": { 118 | "default": { 119 | "visibleDefaultEngines": [ 120 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-cz" 121 | ] 122 | } 123 | }, 124 | "cy": { 125 | "default": { 126 | "visibleDefaultEngines": [ 127 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-cy" 128 | ] 129 | } 130 | }, 131 | "da": { 132 | "default": { 133 | "visibleDefaultEngines": [ 134 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-da" 135 | ] 136 | } 137 | }, 138 | "de": { 139 | "default": { 140 | "visibleDefaultEngines": [ 141 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-de" 142 | ] 143 | } 144 | }, 145 | "de-AT": { 146 | "default": { 147 | "visibleDefaultEngines": [ 148 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-de" 149 | ] 150 | } 151 | }, 152 | "dsb": { 153 | "default": { 154 | "visibleDefaultEngines": [ 155 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-dsb" 156 | ] 157 | } 158 | }, 159 | "el": { 160 | "default": { 161 | "visibleDefaultEngines": [ 162 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-el" 163 | ] 164 | } 165 | }, 166 | "en-AU": { 167 | "default": { 168 | "visibleDefaultEngines": [ 169 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" 170 | ] 171 | } 172 | }, 173 | "en-CA": { 174 | "default": { 175 | "visibleDefaultEngines": [ 176 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" 177 | ] 178 | } 179 | }, 180 | "en-IE": { 181 | "default": { 182 | "visibleDefaultEngines": [ 183 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" 184 | ] 185 | } 186 | }, 187 | "en-GB": { 188 | "default": { 189 | "visibleDefaultEngines": [ 190 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" 191 | ] 192 | } 193 | }, 194 | "en-US": { 195 | "default": { 196 | "visibleDefaultEngines": [ 197 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" 198 | ] 199 | } 200 | }, 201 | "en-ZA": { 202 | "default": { 203 | "visibleDefaultEngines": [ 204 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia" 205 | ] 206 | } 207 | }, 208 | "eo": { 209 | "default": { 210 | "visibleDefaultEngines": [ 211 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-eo" 212 | ] 213 | } 214 | }, 215 | "es-AR": { 216 | "default": { 217 | "visibleDefaultEngines": [ 218 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" 219 | ] 220 | } 221 | }, 222 | "es-CL": { 223 | "default": { 224 | "visibleDefaultEngines": [ 225 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" 226 | ] 227 | } 228 | }, 229 | "es-ES": { 230 | "default": { 231 | "visibleDefaultEngines": [ 232 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" 233 | ] 234 | } 235 | }, 236 | "es-MX": { 237 | "default": { 238 | "visibleDefaultEngines": [ 239 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" 240 | ] 241 | } 242 | }, 243 | "et": { 244 | "default": { 245 | "visibleDefaultEngines": [ 246 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-et" 247 | ] 248 | } 249 | }, 250 | "eu": { 251 | "default": { 252 | "visibleDefaultEngines": [ 253 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-eu" 254 | ] 255 | } 256 | }, 257 | "fa": { 258 | "default": { 259 | "visibleDefaultEngines": [ 260 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fa" 261 | ] 262 | } 263 | }, 264 | "ff": { 265 | "default": { 266 | "visibleDefaultEngines": [ 267 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" 268 | ] 269 | } 270 | }, 271 | "fi": { 272 | "default": { 273 | "visibleDefaultEngines": [ 274 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fi" 275 | ] 276 | } 277 | }, 278 | "fr-BE": { 279 | "default": { 280 | "visibleDefaultEngines": [ 281 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" 282 | ] 283 | } 284 | }, 285 | "fr-CA": { 286 | "default": { 287 | "visibleDefaultEngines": [ 288 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" 289 | ] 290 | } 291 | }, 292 | "fr-FR": { 293 | "default": { 294 | "visibleDefaultEngines": [ 295 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" 296 | ] 297 | } 298 | }, 299 | "fr": { 300 | "default": { 301 | "visibleDefaultEngines": [ 302 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" 303 | ] 304 | } 305 | }, 306 | "fy-NL": { 307 | "default": { 308 | "visibleDefaultEngines": [ 309 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fy-NL" 310 | ] 311 | } 312 | }, 313 | "ga-IE": { 314 | "default": { 315 | "visibleDefaultEngines": [ 316 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ga-IE" 317 | ] 318 | } 319 | }, 320 | "gd": { 321 | "default": { 322 | "visibleDefaultEngines": [ 323 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gd" 324 | ] 325 | } 326 | }, 327 | "gl": { 328 | "default": { 329 | "visibleDefaultEngines": [ 330 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gl" 331 | ] 332 | } 333 | }, 334 | "gn": { 335 | "default": { 336 | "visibleDefaultEngines": [ 337 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gn" 338 | ] 339 | } 340 | }, 341 | "gu-IN": { 342 | "default": { 343 | "visibleDefaultEngines": [ 344 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-gu" 345 | ] 346 | } 347 | }, 348 | "he": { 349 | "default": { 350 | "visibleDefaultEngines": [ 351 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-he" 352 | ] 353 | } 354 | }, 355 | "hi-IN": { 356 | "default": { 357 | "visibleDefaultEngines": [ 358 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hi" 359 | ] 360 | } 361 | }, 362 | "hr": { 363 | "default": { 364 | "visibleDefaultEngines": [ 365 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hr" 366 | ] 367 | } 368 | }, 369 | "hsb": { 370 | "default": { 371 | "visibleDefaultEngines": [ 372 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hsb" 373 | ] 374 | } 375 | }, 376 | "hu": { 377 | "default": { 378 | "visibleDefaultEngines": [ 379 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hu" 380 | ] 381 | } 382 | }, 383 | "hy-AM": { 384 | "default": { 385 | "visibleDefaultEngines": [ 386 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hy-AM" 387 | ] 388 | } 389 | }, 390 | "ia": { 391 | "default": { 392 | "visibleDefaultEngines": [ 393 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ia" 394 | ] 395 | } 396 | }, 397 | "id": { 398 | "default": { 399 | "visibleDefaultEngines": [ 400 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-id" 401 | ] 402 | } 403 | }, 404 | "is": { 405 | "default": { 406 | "visibleDefaultEngines": [ 407 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-is" 408 | ] 409 | } 410 | }, 411 | "it": { 412 | "default": { 413 | "visibleDefaultEngines": [ 414 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-it" 415 | ] 416 | } 417 | }, 418 | "ja": { 419 | "default": { 420 | "visibleDefaultEngines": [ 421 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ja" 422 | ] 423 | } 424 | }, 425 | "ka": { 426 | "default": { 427 | "visibleDefaultEngines": [ 428 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ka" 429 | ] 430 | } 431 | }, 432 | "kab": { 433 | "default": { 434 | "visibleDefaultEngines": [ 435 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-kab" 436 | ] 437 | } 438 | }, 439 | "kk": { 440 | "default": { 441 | "visibleDefaultEngines": [ 442 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-kk" 443 | ] 444 | } 445 | }, 446 | "km": { 447 | "default": { 448 | "visibleDefaultEngines": [ 449 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-km" 450 | ] 451 | } 452 | }, 453 | "kn": { 454 | "default": { 455 | "visibleDefaultEngines": [ 456 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-kn" 457 | ] 458 | } 459 | }, 460 | "ko": { 461 | "default": { 462 | "visibleDefaultEngines": [ 463 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ko" 464 | ] 465 | } 466 | }, 467 | "lij": { 468 | "default": { 469 | "visibleDefaultEngines": [ 470 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lij" 471 | ] 472 | } 473 | }, 474 | "lo": { 475 | "default": { 476 | "visibleDefaultEngines": [ 477 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lo" 478 | ] 479 | } 480 | }, 481 | "lt": { 482 | "default": { 483 | "visibleDefaultEngines": [ 484 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lt" 485 | ] 486 | } 487 | }, 488 | "ltg": { 489 | "default": { 490 | "visibleDefaultEngines": [ 491 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ltg" 492 | ] 493 | } 494 | }, 495 | "lv": { 496 | "default": { 497 | "visibleDefaultEngines": [ 498 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-lv" 499 | ] 500 | } 501 | }, 502 | "mai": { 503 | "default": { 504 | "visibleDefaultEngines": [ 505 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-hi" 506 | ] 507 | } 508 | }, 509 | "meh": { 510 | "default": { 511 | "visibleDefaultEngines": [ 512 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" 513 | ] 514 | } 515 | }, 516 | "mix": { 517 | "default": { 518 | "visibleDefaultEngines": [ 519 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" 520 | ] 521 | } 522 | }, 523 | "ml": { 524 | "default": { 525 | "visibleDefaultEngines": [ 526 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ml" 527 | ] 528 | } 529 | }, 530 | "mr": { 531 | "default": { 532 | "visibleDefaultEngines": [ 533 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-mr" 534 | ] 535 | } 536 | }, 537 | "ms": { 538 | "default": { 539 | "visibleDefaultEngines": [ 540 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ms" 541 | ] 542 | } 543 | }, 544 | "my": { 545 | "default": { 546 | "visibleDefaultEngines": [ 547 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-my" 548 | ] 549 | } 550 | }, 551 | "nb-NO": { 552 | "default": { 553 | "visibleDefaultEngines": [ 554 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-NO" 555 | ] 556 | } 557 | }, 558 | "ne-NP": { 559 | "default": { 560 | "visibleDefaultEngines": [ 561 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ne" 562 | ] 563 | } 564 | }, 565 | "nl-NL": { 566 | "default": { 567 | "visibleDefaultEngines": [ 568 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-nl" 569 | ] 570 | } 571 | }, 572 | "nl": { 573 | "default": { 574 | "visibleDefaultEngines": [ 575 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-nl" 576 | ] 577 | } 578 | }, 579 | "nn-NO": { 580 | "default": { 581 | "visibleDefaultEngines": [ 582 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-NN" 583 | ] 584 | } 585 | }, 586 | "oc": { 587 | "default": { 588 | "visibleDefaultEngines": [ 589 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-oc" 590 | ] 591 | } 592 | }, 593 | "or": { 594 | "default": { 595 | "visibleDefaultEngines": [ 596 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-or" 597 | ] 598 | } 599 | }, 600 | "pa-IN": { 601 | "default": { 602 | "visibleDefaultEngines": [ 603 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pa" 604 | ] 605 | } 606 | }, 607 | "pl": { 608 | "default": { 609 | "visibleDefaultEngines": [ 610 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pl" 611 | ] 612 | } 613 | }, 614 | "pt-BR": { 615 | "default": { 616 | "visibleDefaultEngines": [ 617 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pt" 618 | ] 619 | } 620 | }, 621 | "pt-PT": { 622 | "default": { 623 | "visibleDefaultEngines": [ 624 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-pt" 625 | ] 626 | } 627 | }, 628 | "rm": { 629 | "default": { 630 | "visibleDefaultEngines": [ 631 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-rm" 632 | ] 633 | } 634 | }, 635 | "ro": { 636 | "default": { 637 | "visibleDefaultEngines": [ 638 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ro" 639 | ] 640 | } 641 | }, 642 | "ru": { 643 | "default": { 644 | "visibleDefaultEngines": [ 645 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ru" 646 | ] 647 | } 648 | }, 649 | "sk": { 650 | "default": { 651 | "visibleDefaultEngines": [ 652 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sk" 653 | ] 654 | } 655 | }, 656 | "sl": { 657 | "default": { 658 | "visibleDefaultEngines": [ 659 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sl" 660 | ] 661 | } 662 | }, 663 | "son": { 664 | "default": { 665 | "visibleDefaultEngines": [ 666 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-fr" 667 | ] 668 | } 669 | }, 670 | "sq": { 671 | "default": { 672 | "visibleDefaultEngines": [ 673 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sq" 674 | ] 675 | } 676 | }, 677 | "sr": { 678 | "default": { 679 | "visibleDefaultEngines": [ 680 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sr" 681 | ] 682 | } 683 | }, 684 | "sv-SE": { 685 | "default": { 686 | "visibleDefaultEngines": [ 687 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-sv-SE" 688 | ] 689 | } 690 | }, 691 | "ta": { 692 | "default": { 693 | "visibleDefaultEngines": [ 694 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ta" 695 | ] 696 | } 697 | }, 698 | "te": { 699 | "default": { 700 | "visibleDefaultEngines": [ 701 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-te" 702 | ] 703 | } 704 | }, 705 | "th": { 706 | "default": { 707 | "visibleDefaultEngines": [ 708 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-th" 709 | ] 710 | } 711 | }, 712 | "tl": { 713 | "default": { 714 | "visibleDefaultEngines": [ 715 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-tl" 716 | ] 717 | } 718 | }, 719 | "tr": { 720 | "default": { 721 | "visibleDefaultEngines": [ 722 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-tr" 723 | ] 724 | } 725 | }, 726 | "trs": { 727 | "default": { 728 | "visibleDefaultEngines": [ 729 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" 730 | ] 731 | } 732 | }, 733 | "uk": { 734 | "default": { 735 | "visibleDefaultEngines": [ 736 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-uk" 737 | ] 738 | } 739 | }, 740 | "ur": { 741 | "default": { 742 | "visibleDefaultEngines": [ 743 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-ur" 744 | ] 745 | } 746 | }, 747 | "uz": { 748 | "default": { 749 | "visibleDefaultEngines": [ 750 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-uz" 751 | ] 752 | } 753 | }, 754 | "vi": { 755 | "default": { 756 | "visibleDefaultEngines": [ 757 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-vi" 758 | ] 759 | } 760 | }, 761 | "wo": { 762 | "default": { 763 | "visibleDefaultEngines": [ 764 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-wo" 765 | ] 766 | } 767 | }, 768 | "xh": { 769 | "default": { 770 | "visibleDefaultEngines": [ 771 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-xh" 772 | ] 773 | } 774 | }, 775 | "zam": { 776 | "default": { 777 | "visibleDefaultEngines": [ 778 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-es" 779 | ] 780 | } 781 | }, 782 | "zh-CN": { 783 | "default": { 784 | "visibleDefaultEngines": [ 785 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-zh-CN" 786 | ] 787 | } 788 | }, 789 | "zh-TW": { 790 | "default": { 791 | "visibleDefaultEngines": [ 792 | "bing", "brave", "ddg", "ddghtml", "ddglite", "ecosia", "google", "metager", "mojeek", "qwant", "qwantlite", "startpage", "wikipedia-zh-TW" 793 | ] 794 | } 795 | } 796 | } 797 | } 798 | -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- 1 | GNU AFFERO GENERAL PUBLIC LICENSE 2 | Version 3, 19 November 2007 3 | 4 | Copyright (C) 2007 Free Software Foundation, Inc. 5 | Everyone is permitted to copy and distribute verbatim copies 6 | of this license document, but changing it is not allowed. 7 | 8 | Preamble 9 | 10 | The GNU Affero General Public License is a free, copyleft license for 11 | software and other kinds of works, specifically designed to ensure 12 | cooperation with the community in the case of network server software. 13 | 14 | The licenses for most software and other practical works are designed 15 | to take away your freedom to share and change the works. By contrast, 16 | our General Public Licenses are intended to guarantee your freedom to 17 | share and change all versions of a program--to make sure it remains free 18 | software for all its users. 19 | 20 | When we speak of free software, we are referring to freedom, not 21 | price. Our General Public Licenses are designed to make sure that you 22 | have the freedom to distribute copies of free software (and charge for 23 | them if you wish), that you receive source code or can get it if you 24 | want it, that you can change the software or use pieces of it in new 25 | free programs, and that you know you can do these things. 26 | 27 | Developers that use our General Public Licenses protect your rights 28 | with two steps: (1) assert copyright on the software, and (2) offer 29 | you this License which gives you legal permission to copy, distribute 30 | and/or modify the software. 31 | 32 | A secondary benefit of defending all users' freedom is that 33 | improvements made in alternate versions of the program, if they 34 | receive widespread use, become available for other developers to 35 | incorporate. Many developers of free software are heartened and 36 | encouraged by the resulting cooperation. However, in the case of 37 | software used on network servers, this result may fail to come about. 38 | The GNU General Public License permits making a modified version and 39 | letting the public access it on a server without ever releasing its 40 | source code to the public. 41 | 42 | The GNU Affero General Public License is designed specifically to 43 | ensure that, in such cases, the modified source code becomes available 44 | to the community. It requires the operator of a network server to 45 | provide the source code of the modified version running there to the 46 | users of that server. Therefore, public use of a modified version, on 47 | a publicly accessible server, gives the public access to the source 48 | code of the modified version. 49 | 50 | An older license, called the Affero General Public License and 51 | published by Affero, was designed to accomplish similar goals. This is 52 | a different license, not a version of the Affero GPL, but Affero has 53 | released a new version of the Affero GPL which permits relicensing under 54 | this license. 55 | 56 | The precise terms and conditions for copying, distribution and 57 | modification follow. 58 | 59 | TERMS AND CONDITIONS 60 | 61 | 0. Definitions. 62 | 63 | "This License" refers to version 3 of the GNU Affero General Public License. 64 | 65 | "Copyright" also means copyright-like laws that apply to other kinds of 66 | works, such as semiconductor masks. 67 | 68 | "The Program" refers to any copyrightable work licensed under this 69 | License. Each licensee is addressed as "you". "Licensees" and 70 | "recipients" may be individuals or organizations. 71 | 72 | To "modify" a work means to copy from or adapt all or part of the work 73 | in a fashion requiring copyright permission, other than the making of an 74 | exact copy. The resulting work is called a "modified version" of the 75 | earlier work or a work "based on" the earlier work. 76 | 77 | A "covered work" means either the unmodified Program or a work based 78 | on the Program. 79 | 80 | To "propagate" a work means to do anything with it that, without 81 | permission, would make you directly or secondarily liable for 82 | infringement under applicable copyright law, except executing it on a 83 | computer or modifying a private copy. Propagation includes copying, 84 | distribution (with or without modification), making available to the 85 | public, and in some countries other activities as well. 86 | 87 | To "convey" a work means any kind of propagation that enables other 88 | parties to make or receive copies. Mere interaction with a user through 89 | a computer network, with no transfer of a copy, is not conveying. 90 | 91 | An interactive user interface displays "Appropriate Legal Notices" 92 | to the extent that it includes a convenient and prominently visible 93 | feature that (1) displays an appropriate copyright notice, and (2) 94 | tells the user that there is no warranty for the work (except to the 95 | extent that warranties are provided), that licensees may convey the 96 | work under this License, and how to view a copy of this License. If 97 | the interface presents a list of user commands or options, such as a 98 | menu, a prominent item in the list meets this criterion. 99 | 100 | 1. Source Code. 101 | 102 | The "source code" for a work means the preferred form of the work 103 | for making modifications to it. "Object code" means any non-source 104 | form of a work. 105 | 106 | A "Standard Interface" means an interface that either is an official 107 | standard defined by a recognized standards body, or, in the case of 108 | interfaces specified for a particular programming language, one that 109 | is widely used among developers working in that language. 110 | 111 | The "System Libraries" of an executable work include anything, other 112 | than the work as a whole, that (a) is included in the normal form of 113 | packaging a Major Component, but which is not part of that Major 114 | Component, and (b) serves only to enable use of the work with that 115 | Major Component, or to implement a Standard Interface for which an 116 | implementation is available to the public in source code form. A 117 | "Major Component", in this context, means a major essential component 118 | (kernel, window system, and so on) of the specific operating system 119 | (if any) on which the executable work runs, or a compiler used to 120 | produce the work, or an object code interpreter used to run it. 121 | 122 | The "Corresponding Source" for a work in object code form means all 123 | the source code needed to generate, install, and (for an executable 124 | work) run the object code and to modify the work, including scripts to 125 | control those activities. However, it does not include the work's 126 | System Libraries, or general-purpose tools or generally available free 127 | programs which are used unmodified in performing those activities but 128 | which are not part of the work. For example, Corresponding Source 129 | includes interface definition files associated with source files for 130 | the work, and the source code for shared libraries and dynamically 131 | linked subprograms that the work is specifically designed to require, 132 | such as by intimate data communication or control flow between those 133 | subprograms and other parts of the work. 134 | 135 | The Corresponding Source need not include anything that users 136 | can regenerate automatically from other parts of the Corresponding 137 | Source. 138 | 139 | The Corresponding Source for a work in source code form is that 140 | same work. 141 | 142 | 2. Basic Permissions. 143 | 144 | All rights granted under this License are granted for the term of 145 | copyright on the Program, and are irrevocable provided the stated 146 | conditions are met. This License explicitly affirms your unlimited 147 | permission to run the unmodified Program. The output from running a 148 | covered work is covered by this License only if the output, given its 149 | content, constitutes a covered work. This License acknowledges your 150 | rights of fair use or other equivalent, as provided by copyright law. 151 | 152 | You may make, run and propagate covered works that you do not 153 | convey, without conditions so long as your license otherwise remains 154 | in force. You may convey covered works to others for the sole purpose 155 | of having them make modifications exclusively for you, or provide you 156 | with facilities for running those works, provided that you comply with 157 | the terms of this License in conveying all material for which you do 158 | not control copyright. Those thus making or running the covered works 159 | for you must do so exclusively on your behalf, under your direction 160 | and control, on terms that prohibit them from making any copies of 161 | your copyrighted material outside their relationship with you. 162 | 163 | Conveying under any other circumstances is permitted solely under 164 | the conditions stated below. Sublicensing is not allowed; section 10 165 | makes it unnecessary. 166 | 167 | 3. Protecting Users' Legal Rights From Anti-Circumvention Law. 168 | 169 | No covered work shall be deemed part of an effective technological 170 | measure under any applicable law fulfilling obligations under article 171 | 11 of the WIPO copyright treaty adopted on 20 December 1996, or 172 | similar laws prohibiting or restricting circumvention of such 173 | measures. 174 | 175 | When you convey a covered work, you waive any legal power to forbid 176 | circumvention of technological measures to the extent such circumvention 177 | is effected by exercising rights under this License with respect to 178 | the covered work, and you disclaim any intention to limit operation or 179 | modification of the work as a means of enforcing, against the work's 180 | users, your or third parties' legal rights to forbid circumvention of 181 | technological measures. 182 | 183 | 4. Conveying Verbatim Copies. 184 | 185 | You may convey verbatim copies of the Program's source code as you 186 | receive it, in any medium, provided that you conspicuously and 187 | appropriately publish on each copy an appropriate copyright notice; 188 | keep intact all notices stating that this License and any 189 | non-permissive terms added in accord with section 7 apply to the code; 190 | keep intact all notices of the absence of any warranty; and give all 191 | recipients a copy of this License along with the Program. 192 | 193 | You may charge any price or no price for each copy that you convey, 194 | and you may offer support or warranty protection for a fee. 195 | 196 | 5. Conveying Modified Source Versions. 197 | 198 | You may convey a work based on the Program, or the modifications to 199 | produce it from the Program, in the form of source code under the 200 | terms of section 4, provided that you also meet all of these conditions: 201 | 202 | a) The work must carry prominent notices stating that you modified 203 | it, and giving a relevant date. 204 | 205 | b) The work must carry prominent notices stating that it is 206 | released under this License and any conditions added under section 207 | 7. This requirement modifies the requirement in section 4 to 208 | "keep intact all notices". 209 | 210 | c) You must license the entire work, as a whole, under this 211 | License to anyone who comes into possession of a copy. This 212 | License will therefore apply, along with any applicable section 7 213 | additional terms, to the whole of the work, and all its parts, 214 | regardless of how they are packaged. This License gives no 215 | permission to license the work in any other way, but it does not 216 | invalidate such permission if you have separately received it. 217 | 218 | d) If the work has interactive user interfaces, each must display 219 | Appropriate Legal Notices; however, if the Program has interactive 220 | interfaces that do not display Appropriate Legal Notices, your 221 | work need not make them do so. 222 | 223 | A compilation of a covered work with other separate and independent 224 | works, which are not by their nature extensions of the covered work, 225 | and which are not combined with it such as to form a larger program, 226 | in or on a volume of a storage or distribution medium, is called an 227 | "aggregate" if the compilation and its resulting copyright are not 228 | used to limit the access or legal rights of the compilation's users 229 | beyond what the individual works permit. Inclusion of a covered work 230 | in an aggregate does not cause this License to apply to the other 231 | parts of the aggregate. 232 | 233 | 6. Conveying Non-Source Forms. 234 | 235 | You may convey a covered work in object code form under the terms 236 | of sections 4 and 5, provided that you also convey the 237 | machine-readable Corresponding Source under the terms of this License, 238 | in one of these ways: 239 | 240 | a) Convey the object code in, or embodied in, a physical product 241 | (including a physical distribution medium), accompanied by the 242 | Corresponding Source fixed on a durable physical medium 243 | customarily used for software interchange. 244 | 245 | b) Convey the object code in, or embodied in, a physical product 246 | (including a physical distribution medium), accompanied by a 247 | written offer, valid for at least three years and valid for as 248 | long as you offer spare parts or customer support for that product 249 | model, to give anyone who possesses the object code either (1) a 250 | copy of the Corresponding Source for all the software in the 251 | product that is covered by this License, on a durable physical 252 | medium customarily used for software interchange, for a price no 253 | more than your reasonable cost of physically performing this 254 | conveying of source, or (2) access to copy the 255 | Corresponding Source from a network server at no charge. 256 | 257 | c) Convey individual copies of the object code with a copy of the 258 | written offer to provide the Corresponding Source. This 259 | alternative is allowed only occasionally and noncommercially, and 260 | only if you received the object code with such an offer, in accord 261 | with subsection 6b. 262 | 263 | d) Convey the object code by offering access from a designated 264 | place (gratis or for a charge), and offer equivalent access to the 265 | Corresponding Source in the same way through the same place at no 266 | further charge. You need not require recipients to copy the 267 | Corresponding Source along with the object code. If the place to 268 | copy the object code is a network server, the Corresponding Source 269 | may be on a different server (operated by you or a third party) 270 | that supports equivalent copying facilities, provided you maintain 271 | clear directions next to the object code saying where to find the 272 | Corresponding Source. Regardless of what server hosts the 273 | Corresponding Source, you remain obligated to ensure that it is 274 | available for as long as needed to satisfy these requirements. 275 | 276 | e) Convey the object code using peer-to-peer transmission, provided 277 | you inform other peers where the object code and Corresponding 278 | Source of the work are being offered to the general public at no 279 | charge under subsection 6d. 280 | 281 | A separable portion of the object code, whose source code is excluded 282 | from the Corresponding Source as a System Library, need not be 283 | included in conveying the object code work. 284 | 285 | A "User Product" is either (1) a "consumer product", which means any 286 | tangible personal property which is normally used for personal, family, 287 | or household purposes, or (2) anything designed or sold for incorporation 288 | into a dwelling. In determining whether a product is a consumer product, 289 | doubtful cases shall be resolved in favor of coverage. For a particular 290 | product received by a particular user, "normally used" refers to a 291 | typical or common use of that class of product, regardless of the status 292 | of the particular user or of the way in which the particular user 293 | actually uses, or expects or is expected to use, the product. A product 294 | is a consumer product regardless of whether the product has substantial 295 | commercial, industrial or non-consumer uses, unless such uses represent 296 | the only significant mode of use of the product. 297 | 298 | "Installation Information" for a User Product means any methods, 299 | procedures, authorization keys, or other information required to install 300 | and execute modified versions of a covered work in that User Product from 301 | a modified version of its Corresponding Source. The information must 302 | suffice to ensure that the continued functioning of the modified object 303 | code is in no case prevented or interfered with solely because 304 | modification has been made. 305 | 306 | If you convey an object code work under this section in, or with, or 307 | specifically for use in, a User Product, and the conveying occurs as 308 | part of a transaction in which the right of possession and use of the 309 | User Product is transferred to the recipient in perpetuity or for a 310 | fixed term (regardless of how the transaction is characterized), the 311 | Corresponding Source conveyed under this section must be accompanied 312 | by the Installation Information. But this requirement does not apply 313 | if neither you nor any third party retains the ability to install 314 | modified object code on the User Product (for example, the work has 315 | been installed in ROM). 316 | 317 | The requirement to provide Installation Information does not include a 318 | requirement to continue to provide support service, warranty, or updates 319 | for a work that has been modified or installed by the recipient, or for 320 | the User Product in which it has been modified or installed. Access to a 321 | network may be denied when the modification itself materially and 322 | adversely affects the operation of the network or violates the rules and 323 | protocols for communication across the network. 324 | 325 | Corresponding Source conveyed, and Installation Information provided, 326 | in accord with this section must be in a format that is publicly 327 | documented (and with an implementation available to the public in 328 | source code form), and must require no special password or key for 329 | unpacking, reading or copying. 330 | 331 | 7. Additional Terms. 332 | 333 | "Additional permissions" are terms that supplement the terms of this 334 | License by making exceptions from one or more of its conditions. 335 | Additional permissions that are applicable to the entire Program shall 336 | be treated as though they were included in this License, to the extent 337 | that they are valid under applicable law. If additional permissions 338 | apply only to part of the Program, that part may be used separately 339 | under those permissions, but the entire Program remains governed by 340 | this License without regard to the additional permissions. 341 | 342 | When you convey a copy of a covered work, you may at your option 343 | remove any additional permissions from that copy, or from any part of 344 | it. (Additional permissions may be written to require their own 345 | removal in certain cases when you modify the work.) You may place 346 | additional permissions on material, added by you to a covered work, 347 | for which you have or can give appropriate copyright permission. 348 | 349 | Notwithstanding any other provision of this License, for material you 350 | add to a covered work, you may (if authorized by the copyright holders of 351 | that material) supplement the terms of this License with terms: 352 | 353 | a) Disclaiming warranty or limiting liability differently from the 354 | terms of sections 15 and 16 of this License; or 355 | 356 | b) Requiring preservation of specified reasonable legal notices or 357 | author attributions in that material or in the Appropriate Legal 358 | Notices displayed by works containing it; or 359 | 360 | c) Prohibiting misrepresentation of the origin of that material, or 361 | requiring that modified versions of such material be marked in 362 | reasonable ways as different from the original version; or 363 | 364 | d) Limiting the use for publicity purposes of names of licensors or 365 | authors of the material; or 366 | 367 | e) Declining to grant rights under trademark law for use of some 368 | trade names, trademarks, or service marks; or 369 | 370 | f) Requiring indemnification of licensors and authors of that 371 | material by anyone who conveys the material (or modified versions of 372 | it) with contractual assumptions of liability to the recipient, for 373 | any liability that these contractual assumptions directly impose on 374 | those licensors and authors. 375 | 376 | All other non-permissive additional terms are considered "further 377 | restrictions" within the meaning of section 10. If the Program as you 378 | received it, or any part of it, contains a notice stating that it is 379 | governed by this License along with a term that is a further 380 | restriction, you may remove that term. If a license document contains 381 | a further restriction but permits relicensing or conveying under this 382 | License, you may add to a covered work material governed by the terms 383 | of that license document, provided that the further restriction does 384 | not survive such relicensing or conveying. 385 | 386 | If you add terms to a covered work in accord with this section, you 387 | must place, in the relevant source files, a statement of the 388 | additional terms that apply to those files, or a notice indicating 389 | where to find the applicable terms. 390 | 391 | Additional terms, permissive or non-permissive, may be stated in the 392 | form of a separately written license, or stated as exceptions; 393 | the above requirements apply either way. 394 | 395 | 8. Termination. 396 | 397 | You may not propagate or modify a covered work except as expressly 398 | provided under this License. Any attempt otherwise to propagate or 399 | modify it is void, and will automatically terminate your rights under 400 | this License (including any patent licenses granted under the third 401 | paragraph of section 11). 402 | 403 | However, if you cease all violation of this License, then your 404 | license from a particular copyright holder is reinstated (a) 405 | provisionally, unless and until the copyright holder explicitly and 406 | finally terminates your license, and (b) permanently, if the copyright 407 | holder fails to notify you of the violation by some reasonable means 408 | prior to 60 days after the cessation. 409 | 410 | Moreover, your license from a particular copyright holder is 411 | reinstated permanently if the copyright holder notifies you of the 412 | violation by some reasonable means, this is the first time you have 413 | received notice of violation of this License (for any work) from that 414 | copyright holder, and you cure the violation prior to 30 days after 415 | your receipt of the notice. 416 | 417 | Termination of your rights under this section does not terminate the 418 | licenses of parties who have received copies or rights from you under 419 | this License. If your rights have been terminated and not permanently 420 | reinstated, you do not qualify to receive new licenses for the same 421 | material under section 10. 422 | 423 | 9. Acceptance Not Required for Having Copies. 424 | 425 | You are not required to accept this License in order to receive or 426 | run a copy of the Program. Ancillary propagation of a covered work 427 | occurring solely as a consequence of using peer-to-peer transmission 428 | to receive a copy likewise does not require acceptance. However, 429 | nothing other than this License grants you permission to propagate or 430 | modify any covered work. These actions infringe copyright if you do 431 | not accept this License. Therefore, by modifying or propagating a 432 | covered work, you indicate your acceptance of this License to do so. 433 | 434 | 10. Automatic Licensing of Downstream Recipients. 435 | 436 | Each time you convey a covered work, the recipient automatically 437 | receives a license from the original licensors, to run, modify and 438 | propagate that work, subject to this License. You are not responsible 439 | for enforcing compliance by third parties with this License. 440 | 441 | An "entity transaction" is a transaction transferring control of an 442 | organization, or substantially all assets of one, or subdividing an 443 | organization, or merging organizations. If propagation of a covered 444 | work results from an entity transaction, each party to that 445 | transaction who receives a copy of the work also receives whatever 446 | licenses to the work the party's predecessor in interest had or could 447 | give under the previous paragraph, plus a right to possession of the 448 | Corresponding Source of the work from the predecessor in interest, if 449 | the predecessor has it or can get it with reasonable efforts. 450 | 451 | You may not impose any further restrictions on the exercise of the 452 | rights granted or affirmed under this License. For example, you may 453 | not impose a license fee, royalty, or other charge for exercise of 454 | rights granted under this License, and you may not initiate litigation 455 | (including a cross-claim or counterclaim in a lawsuit) alleging that 456 | any patent claim is infringed by making, using, selling, offering for 457 | sale, or importing the Program or any portion of it. 458 | 459 | 11. Patents. 460 | 461 | A "contributor" is a copyright holder who authorizes use under this 462 | License of the Program or a work on which the Program is based. The 463 | work thus licensed is called the contributor's "contributor version". 464 | 465 | A contributor's "essential patent claims" are all patent claims 466 | owned or controlled by the contributor, whether already acquired or 467 | hereafter acquired, that would be infringed by some manner, permitted 468 | by this License, of making, using, or selling its contributor version, 469 | but do not include claims that would be infringed only as a 470 | consequence of further modification of the contributor version. For 471 | purposes of this definition, "control" includes the right to grant 472 | patent sublicenses in a manner consistent with the requirements of 473 | this License. 474 | 475 | Each contributor grants you a non-exclusive, worldwide, royalty-free 476 | patent license under the contributor's essential patent claims, to 477 | make, use, sell, offer for sale, import and otherwise run, modify and 478 | propagate the contents of its contributor version. 479 | 480 | In the following three paragraphs, a "patent license" is any express 481 | agreement or commitment, however denominated, not to enforce a patent 482 | (such as an express permission to practice a patent or covenant not to 483 | sue for patent infringement). To "grant" such a patent license to a 484 | party means to make such an agreement or commitment not to enforce a 485 | patent against the party. 486 | 487 | If you convey a covered work, knowingly relying on a patent license, 488 | and the Corresponding Source of the work is not available for anyone 489 | to copy, free of charge and under the terms of this License, through a 490 | publicly available network server or other readily accessible means, 491 | then you must either (1) cause the Corresponding Source to be so 492 | available, or (2) arrange to deprive yourself of the benefit of the 493 | patent license for this particular work, or (3) arrange, in a manner 494 | consistent with the requirements of this License, to extend the patent 495 | license to downstream recipients. "Knowingly relying" means you have 496 | actual knowledge that, but for the patent license, your conveying the 497 | covered work in a country, or your recipient's use of the covered work 498 | in a country, would infringe one or more identifiable patents in that 499 | country that you have reason to believe are valid. 500 | 501 | If, pursuant to or in connection with a single transaction or 502 | arrangement, you convey, or propagate by procuring conveyance of, a 503 | covered work, and grant a patent license to some of the parties 504 | receiving the covered work authorizing them to use, propagate, modify 505 | or convey a specific copy of the covered work, then the patent license 506 | you grant is automatically extended to all recipients of the covered 507 | work and works based on it. 508 | 509 | A patent license is "discriminatory" if it does not include within 510 | the scope of its coverage, prohibits the exercise of, or is 511 | conditioned on the non-exercise of one or more of the rights that are 512 | specifically granted under this License. You may not convey a covered 513 | work if you are a party to an arrangement with a third party that is 514 | in the business of distributing software, under which you make payment 515 | to the third party based on the extent of your activity of conveying 516 | the work, and under which the third party grants, to any of the 517 | parties who would receive the covered work from you, a discriminatory 518 | patent license (a) in connection with copies of the covered work 519 | conveyed by you (or copies made from those copies), or (b) primarily 520 | for and in connection with specific products or compilations that 521 | contain the covered work, unless you entered into that arrangement, 522 | or that patent license was granted, prior to 28 March 2007. 523 | 524 | Nothing in this License shall be construed as excluding or limiting 525 | any implied license or other defenses to infringement that may 526 | otherwise be available to you under applicable patent law. 527 | 528 | 12. No Surrender of Others' Freedom. 529 | 530 | If conditions are imposed on you (whether by court order, agreement or 531 | otherwise) that contradict the conditions of this License, they do not 532 | excuse you from the conditions of this License. If you cannot convey a 533 | covered work so as to satisfy simultaneously your obligations under this 534 | License and any other pertinent obligations, then as a consequence you may 535 | not convey it at all. For example, if you agree to terms that obligate you 536 | to collect a royalty for further conveying from those to whom you convey 537 | the Program, the only way you could satisfy both those terms and this 538 | License would be to refrain entirely from conveying the Program. 539 | 540 | 13. Remote Network Interaction; Use with the GNU General Public License. 541 | 542 | Notwithstanding any other provision of this License, if you modify the 543 | Program, your modified version must prominently offer all users 544 | interacting with it remotely through a computer network (if your version 545 | supports such interaction) an opportunity to receive the Corresponding 546 | Source of your version by providing access to the Corresponding Source 547 | from a network server at no charge, through some standard or customary 548 | means of facilitating copying of software. This Corresponding Source 549 | shall include the Corresponding Source for any work covered by version 3 550 | of the GNU General Public License that is incorporated pursuant to the 551 | following paragraph. 552 | 553 | Notwithstanding any other provision of this License, you have 554 | permission to link or combine any covered work with a work licensed 555 | under version 3 of the GNU General Public License into a single 556 | combined work, and to convey the resulting work. The terms of this 557 | License will continue to apply to the part which is the covered work, 558 | but the work with which it is combined will remain governed by version 559 | 3 of the GNU General Public License. 560 | 561 | 14. Revised Versions of this License. 562 | 563 | The Free Software Foundation may publish revised and/or new versions of 564 | the GNU Affero General Public License from time to time. Such new versions 565 | will be similar in spirit to the present version, but may differ in detail to 566 | address new problems or concerns. 567 | 568 | Each version is given a distinguishing version number. If the 569 | Program specifies that a certain numbered version of the GNU Affero General 570 | Public License "or any later version" applies to it, you have the 571 | option of following the terms and conditions either of that numbered 572 | version or of any later version published by the Free Software 573 | Foundation. If the Program does not specify a version number of the 574 | GNU Affero General Public License, you may choose any version ever published 575 | by the Free Software Foundation. 576 | 577 | If the Program specifies that a proxy can decide which future 578 | versions of the GNU Affero General Public License can be used, that proxy's 579 | public statement of acceptance of a version permanently authorizes you 580 | to choose that version for the Program. 581 | 582 | Later license versions may give you additional or different 583 | permissions. However, no additional obligations are imposed on any 584 | author or copyright holder as a result of your choosing to follow a 585 | later version. 586 | 587 | 15. Disclaimer of Warranty. 588 | 589 | THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY 590 | APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT 591 | HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY 592 | OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, 593 | THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR 594 | PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM 595 | IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF 596 | ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 597 | 598 | 16. Limitation of Liability. 599 | 600 | IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING 601 | WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS 602 | THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY 603 | GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE 604 | USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF 605 | DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD 606 | PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), 607 | EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF 608 | SUCH DAMAGES. 609 | 610 | 17. Interpretation of Sections 15 and 16. 611 | 612 | If the disclaimer of warranty and limitation of liability provided 613 | above cannot be given local legal effect according to their terms, 614 | reviewing courts shall apply local law that most closely approximates 615 | an absolute waiver of all civil liability in connection with the 616 | Program, unless a warranty or assumption of liability accompanies a 617 | copy of the Program in return for a fee. 618 | 619 | END OF TERMS AND CONDITIONS 620 | 621 | How to Apply These Terms to Your New Programs 622 | 623 | If you develop a new program, and you want it to be of the greatest 624 | possible use to the public, the best way to achieve this is to make it 625 | free software which everyone can redistribute and change under these terms. 626 | 627 | To do so, attach the following notices to the program. It is safest 628 | to attach them to the start of each source file to most effectively 629 | state the exclusion of warranty; and each file should have at least 630 | the "copyright" line and a pointer to where the full notice is found. 631 | 632 | 633 | Copyright (C) 634 | 635 | This program is free software: you can redistribute it and/or modify 636 | it under the terms of the GNU Affero General Public License as published by 637 | the Free Software Foundation, either version 3 of the License, or 638 | (at your option) any later version. 639 | 640 | This program is distributed in the hope that it will be useful, 641 | but WITHOUT ANY WARRANTY; without even the implied warranty of 642 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 643 | GNU Affero General Public License for more details. 644 | 645 | You should have received a copy of the GNU Affero General Public License 646 | along with this program. If not, see . 647 | 648 | Also add information on how to contact you by electronic and paper mail. 649 | 650 | If your software can interact with users remotely through a computer 651 | network, you should also make sure that it provides a way for users to 652 | get its source. For example, if your program is a web application, its 653 | interface could display a "Source" link that leads users to an archive 654 | of the code. There are many ways you could offer source, and different 655 | solutions will be better for different programs; see section 13 for the 656 | specific requirements. 657 | 658 | You should also get your employer (if you work as a programmer) or school, 659 | if any, to sign a "copyright disclaimer" for the program, if necessary. 660 | For more information on this, and how to apply and follow the GNU AGPL, see 661 | . 662 | --------------------------------------------------------------------------------