├── -fdroiddata └── metadata │ └── us.spotco.fennec_dos.yml ├── .gitlab-ci.yml ├── COPYING ├── README.md ├── a-c-overlay └── components │ └── feature │ └── search │ └── src │ └── main │ └── assets │ ├── search │ └── list.json │ └── searchplugins │ ├── alexandria.xml │ ├── brave.xml │ ├── ddghtml.xml │ ├── ddglite.xml │ ├── google.xml │ ├── metager.xml │ ├── mojeek.xml │ ├── qwantlite.xml │ └── startpage.xml ├── fastlane └── metadata │ └── android │ ├── ar │ └── short_description.txt │ ├── cs │ └── short_description.txt │ ├── de │ └── short_description.txt │ ├── en-US │ ├── full_description.txt │ ├── images │ │ ├── featureGraphic.png │ │ ├── icon.png │ │ └── phoneScreenshots │ │ │ └── Mull.png │ ├── short_description.txt │ └── title.txt │ ├── es │ └── short_description.txt │ ├── et │ └── short_description.txt │ ├── fi │ └── short_description.txt │ ├── fr │ └── short_description.txt │ ├── he │ └── short_description.txt │ ├── is │ └── short_description.txt │ ├── it │ └── short_description.txt │ ├── ja │ └── short_description.txt │ ├── pl │ └── short_description.txt │ ├── pt-BR │ └── short_description.txt │ ├── pt-PT │ └── short_description.txt │ ├── pt │ └── short_description.txt │ ├── ro │ └── short_description.txt │ ├── ru │ └── short_description.txt │ ├── sq │ └── short_description.txt │ ├── sw │ └── short_description.txt │ ├── tr │ └── short_description.txt │ ├── uk │ └── short_description.txt │ └── zh-CN │ └── short_description.txt ├── fenix-liberate.patch ├── fenix-overlay ├── ic_launcher-web.webp ├── ic_launcher_private-web.webp └── res │ ├── drawable-hdpi │ ├── fenix_search_widget.webp │ ├── ic_logo_wordmark_normal.webp │ ├── ic_logo_wordmark_private.webp │ ├── ic_wordmark_logo.webp │ ├── ic_wordmark_text_normal.webp │ └── ic_wordmark_text_private.webp │ ├── drawable-mdpi │ ├── ic_logo_wordmark_normal.webp │ ├── ic_logo_wordmark_private.webp │ ├── ic_wordmark_logo.webp │ ├── ic_wordmark_text_normal.webp │ └── ic_wordmark_text_private.webp │ ├── drawable-xhdpi │ ├── ic_logo_wordmark_normal.webp │ ├── ic_logo_wordmark_private.webp │ ├── ic_wordmark_logo.webp │ ├── ic_wordmark_text_normal.webp │ └── ic_wordmark_text_private.webp │ ├── drawable-xxhdpi │ ├── ic_logo_wordmark_normal.webp │ ├── ic_logo_wordmark_private.webp │ ├── ic_wordmark_logo.webp │ ├── ic_wordmark_text_normal.webp │ └── ic_wordmark_text_private.webp │ ├── drawable-xxxhdpi │ ├── ic_logo_wordmark_normal.webp │ ├── ic_logo_wordmark_private.webp │ ├── ic_wordmark_logo.webp │ ├── ic_wordmark_text_normal.webp │ └── ic_wordmark_text_private.webp │ ├── drawable │ ├── ic_eff.webp │ ├── ic_fdroid.webp │ ├── ic_launcher_foreground.xml │ ├── ic_launcher_monochrome.xml │ └── ic_launcher_private_foreground.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ ├── ic_launcher_private.xml │ ├── ic_launcher_private_round.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ ├── ic_launcher_private.webp │ ├── ic_launcher_private_round.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ ├── ic_launcher_private.webp │ ├── ic_launcher_private_round.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_private.webp │ ├── ic_launcher_private_round.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_private.webp │ ├── ic_launcher_private_round.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ ├── ic_launcher_private.webp │ ├── ic_launcher_private_round.webp │ └── ic_launcher_round.webp │ └── values │ ├── ic_launcher_background.xml │ └── ic_launcher_private_background.xml ├── gecko-fix-125-compile.patch ├── gecko-liberate.patch ├── gecko-localize_maven.patch ├── gen_wordmark.sh ├── https_only.patch ├── locales ├── paths.sh ├── prebuild.sh ├── preferences ├── LICENSE-arkenfox ├── userjs-arkenfox.js └── userjs-brace.js └── strict_etp.patch /-fdroiddata/metadata/us.spotco.fennec_dos.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/-fdroiddata/metadata/us.spotco.fennec_dos.yml -------------------------------------------------------------------------------- /.gitlab-ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/.gitlab-ci.yml -------------------------------------------------------------------------------- /COPYING: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/COPYING -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/README.md -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/search/list.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/search/list.json -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/alexandria.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/searchplugins/alexandria.xml -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/brave.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/searchplugins/brave.xml -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/ddghtml.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/searchplugins/ddghtml.xml -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/ddglite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/searchplugins/ddglite.xml -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/google.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/searchplugins/google.xml -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/metager.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/searchplugins/metager.xml -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/mojeek.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/searchplugins/mojeek.xml -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/qwantlite.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/searchplugins/qwantlite.xml -------------------------------------------------------------------------------- /a-c-overlay/components/feature/search/src/main/assets/searchplugins/startpage.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/a-c-overlay/components/feature/search/src/main/assets/searchplugins/startpage.xml -------------------------------------------------------------------------------- /fastlane/metadata/android/ar/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/ar/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/cs/short_description.txt: -------------------------------------------------------------------------------- 1 | Webový prohlížeč zaměřený na ochranu soukromí 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/de/short_description.txt: -------------------------------------------------------------------------------- 1 | Datenschutzorientierter Webbrowser 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/full_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/en-US/full_description.txt -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/short_description.txt: -------------------------------------------------------------------------------- 1 | Privacy oriented web browser 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/en-US/title.txt: -------------------------------------------------------------------------------- 1 | Mull 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/es/short_description.txt: -------------------------------------------------------------------------------- 1 | Navegador web orientado a la privacidad 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/et/short_description.txt: -------------------------------------------------------------------------------- 1 | Privaatsuskeskne veebibrauser 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fi/short_description.txt: -------------------------------------------------------------------------------- 1 | Yksityisyyttä korostava nettiselain 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/fr/short_description.txt: -------------------------------------------------------------------------------- 1 | Navigateur Web axé sur la confidentialité 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/he/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/he/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/is/short_description.txt: -------------------------------------------------------------------------------- 1 | Vafri með áherslu á gagnaleynd 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/it/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/it/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/ja/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/ja/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pl/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/pl/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/pt-BR/short_description.txt: -------------------------------------------------------------------------------- 1 | Navegador web focado em privacidade 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/ro/short_description.txt: -------------------------------------------------------------------------------- 1 | Navigator web orientat spre confidențialitate 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/ru/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/ru/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/sq/short_description.txt: -------------------------------------------------------------------------------- 1 | Shfletues i orientuar nga privatësia 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/sw/short_description.txt: -------------------------------------------------------------------------------- 1 | Kivinjari cha wavuti kinachoelekezwa na faragha 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/tr/short_description.txt: -------------------------------------------------------------------------------- 1 | Gizlilik odaklı web tarayıcısı 2 | -------------------------------------------------------------------------------- /fastlane/metadata/android/uk/short_description.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fastlane/metadata/android/uk/short_description.txt -------------------------------------------------------------------------------- /fastlane/metadata/android/zh-CN/short_description.txt: -------------------------------------------------------------------------------- 1 | 隐私导向的网页浏览器 2 | -------------------------------------------------------------------------------- /fenix-liberate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-liberate.patch -------------------------------------------------------------------------------- /fenix-overlay/ic_launcher-web.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/ic_launcher-web.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-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-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_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_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-hdpi/ic_wordmark_logo.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-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_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_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_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-mdpi/ic_wordmark_logo.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/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_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xhdpi/ic_wordmark_logo.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_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxhdpi/ic_wordmark_logo.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_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_logo.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable-xxxhdpi/ic_wordmark_logo.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/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/drawable/ic_eff.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable/ic_eff.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable/ic_fdroid.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable/ic_fdroid.webp -------------------------------------------------------------------------------- /fenix-overlay/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /fenix-overlay/res/drawable/ic_launcher_monochrome.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable/ic_launcher_monochrome.xml -------------------------------------------------------------------------------- /fenix-overlay/res/drawable/ic_launcher_private_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/drawable/ic_launcher_private_foreground.xml -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-anydpi-v26/ic_launcher_private.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-anydpi-v26/ic_launcher_private.xml -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-anydpi-v26/ic_launcher_private_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-anydpi-v26/ic_launcher_private_round.xml -------------------------------------------------------------------------------- /fenix-overlay/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /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-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-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-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.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-mdpi/ic_launcher.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-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/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.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xhdpi/ic_launcher.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-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-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/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-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-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-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.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/mipmap-xxxhdpi/ic_launcher.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/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 -------------------------------------------------------------------------------- /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 -------------------------------------------------------------------------------- /fenix-overlay/res/values/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/values/ic_launcher_background.xml -------------------------------------------------------------------------------- /fenix-overlay/res/values/ic_launcher_private_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/fenix-overlay/res/values/ic_launcher_private_background.xml -------------------------------------------------------------------------------- /gecko-fix-125-compile.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/gecko-fix-125-compile.patch -------------------------------------------------------------------------------- /gecko-liberate.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/gecko-liberate.patch -------------------------------------------------------------------------------- /gecko-localize_maven.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/gecko-localize_maven.patch -------------------------------------------------------------------------------- /gen_wordmark.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/gen_wordmark.sh -------------------------------------------------------------------------------- /https_only.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/https_only.patch -------------------------------------------------------------------------------- /locales: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/locales -------------------------------------------------------------------------------- /paths.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/paths.sh -------------------------------------------------------------------------------- /prebuild.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/prebuild.sh -------------------------------------------------------------------------------- /preferences/LICENSE-arkenfox: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/preferences/LICENSE-arkenfox -------------------------------------------------------------------------------- /preferences/userjs-arkenfox.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/preferences/userjs-arkenfox.js -------------------------------------------------------------------------------- /preferences/userjs-brace.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/preferences/userjs-brace.js -------------------------------------------------------------------------------- /strict_etp.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Divested-Mobile/Mull-Fenix/HEAD/strict_etp.patch --------------------------------------------------------------------------------