mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-01-27 15:29:19 -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>
23 lines
1.0 KiB
Diff
23 lines
1.0 KiB
Diff
diff --git a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/components/Components.kt b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/components/Components.kt
|
|
index 5c75c14625..a60b7d744b 100644
|
|
--- a/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/components/Components.kt
|
|
+++ b/mobile/android/fenix/app/src/main/java/org/mozilla/fenix/components/Components.kt
|
|
@@ -172,7 +172,7 @@ class Components(private val context: Context) {
|
|
|
|
@Suppress("MagicNumber")
|
|
val addonUpdater by lazyMonitored {
|
|
- DefaultAddonUpdater(context, Frequency(12, TimeUnit.HOURS), notificationsDelegate)
|
|
+ DefaultAddonUpdater(context, Frequency(1, TimeUnit.HOURS), notificationsDelegate)
|
|
}
|
|
|
|
@Suppress("MagicNumber")
|
|
@@ -187,7 +187,7 @@ class Components(private val context: Context) {
|
|
val remoteSettingsSyncScheduler by lazyMonitored {
|
|
DefaultRemoteSettingsSyncScheduler(
|
|
context,
|
|
- Frequency(24, TimeUnit.HOURS),
|
|
+ Frequency(1, TimeUnit.HOURS),
|
|
)
|
|
}
|
|
|