mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-01-17 18:41:24 -05:00
ironfox-oss/IronFox!100 ____ ## Changes - Added a toggle in settings to control the [media autoplay blocking policy](https://wiki.mozilla.org/Media/block-autoplay#What_strategy_does_Firefox_use_for_blocking_autoplay?) when JIT is otherwise disabled globally *(set to `Transient` by default)*, located at `Settings` -> `IronFox` -> `IronFox settings` -> **`Media autoplay`**. - Fixed [an issue](https://gitlab.com/ironfox-oss/IronFox/-/issues/199) that prevented certain preferences from persisting across restarts. - Updated the default version of Rust to [`1.91.0`](https://releases.rs/docs/1.91.0/). - Updated to Firefox [`145.0`](https://firefox.com/firefox/android/145.0/releasenotes/). - Updated to Phoenix [`2025.11.07.1`](https://codeberg.org/celenity/Phoenix/releases/tag/2025.11.07.1). - [Other minor tweaks and adjustments](https://gitlab.com/ironfox-oss/IronFox/-/merge_requests/100/diffs). MR-author: celenity <celenity@celenity.dev> Co-authored-by: LucasMZ <git@lucasmz.dev> Co-authored-by: Akash Yadav <itsaky01@gmail.com> Approved-by: Akash Yadav <itsaky01@gmail.com> Merged-by: celenity <celenity@celenity.dev>
48 lines
1.7 KiB
Diff
48 lines
1.7 KiB
Diff
diff --git a/docshell/base/nsAboutRedirector.cpp b/docshell/base/nsAboutRedirector.cpp
|
|
index 625640eef4..7622f81a26 100644
|
|
--- a/docshell/base/nsAboutRedirector.cpp
|
|
+++ b/docshell/base/nsAboutRedirector.cpp
|
|
@@ -211,9 +211,9 @@ static const RedirEntry kRedirMap[] = {
|
|
# endif
|
|
nsIAboutModule::ALLOW_SCRIPT},
|
|
#endif
|
|
- {"telemetry", "chrome://global/content/aboutTelemetry.xhtml",
|
|
- nsIAboutModule::ALLOW_SCRIPT | nsIAboutModule::IS_SECURE_CHROME_UI},
|
|
-#ifndef MOZ_WIDGET_ANDROID
|
|
+// {"telemetry", "chrome://global/content/aboutTelemetry.xhtml",
|
|
+// nsIAboutModule::ALLOW_SCRIPT | nsIAboutModule::IS_SECURE_CHROME_UI},
|
|
+#ifdef MOZ_WIDGET_ANDROID
|
|
{"translations",
|
|
"chrome://global/content/translations/about-translations.html",
|
|
nsIAboutModule::ALLOW_SCRIPT |
|
|
diff --git a/docshell/build/components.conf b/docshell/build/components.conf
|
|
index 06f1d0a26e..bb0326a360 100644
|
|
--- a/docshell/build/components.conf
|
|
+++ b/docshell/build/components.conf
|
|
@@ -29,7 +29,7 @@ about_pages = [
|
|
'serviceworkers',
|
|
'srcdoc',
|
|
'support',
|
|
- 'telemetry',
|
|
+# 'telemetry',
|
|
'url-classifier',
|
|
'webrtc',
|
|
]
|
|
diff --git a/toolkit/content/jar.mn b/toolkit/content/jar.mn
|
|
index 75c1c06efe..835ff83cc7 100644
|
|
--- a/toolkit/content/jar.mn
|
|
+++ b/toolkit/content/jar.mn
|
|
@@ -39,9 +39,9 @@ toolkit.jar:
|
|
content/global/aboutGlean.html
|
|
content/global/aboutGlean.css
|
|
#endif
|
|
- content/global/aboutTelemetry.js
|
|
- content/global/aboutTelemetry.xhtml
|
|
- content/global/aboutTelemetry.css
|
|
+# content/global/aboutTelemetry.js
|
|
+# content/global/aboutTelemetry.xhtml
|
|
+# content/global/aboutTelemetry.css
|
|
content/global/aboutUrlClassifier.js
|
|
content/global/aboutUrlClassifier.xhtml
|
|
content/global/aboutUrlClassifier.css
|