mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-04-19 14:40:21 -04:00
ironfox-oss/IronFox!109 ____ ## Changes - [Added missing Gecko icons/branding assets](90e371ec7c). - Added a toggle in settings that forces the browser to *always* use private mode *(similar to Firefox on Desktop)*. The setting is *disabled* by default, and is located at `Settings` -> `IronFox` -> `IronFox settings` -> `Privacy` -> **`Always use private browsing`**. - [Disabled Mozilla's new `Unified Trust Panel` by default](2eaa0c7c9a), as it prevents users from being able to control the cookie banner blocker on a per-site basis. - [Enabled Mozilla's new redesign for private browsing mode](43661d10a7) by default. - Fixed [an issue with `BankID` authentication](https://gitlab.com/ironfox-oss/IronFox/-/issues/213) on certain websites *(Thanks to [rajtsic](https://gitlab.com/rajtsic)!)*. - [Removed Mozilla's new `Clear Key` CDM](f9a0a07793). - Updated cbindgen to [`0.29.2`](https://docs.rs/crate/cbindgen/0.29.2). - Updated to Firefox [`146.0`](https://firefox.com/firefox/android/146.0/releasenotes/). - [Various tweaks to improve and refine the build process, as well as other minor changes, tweaks, and fixes](https://gitlab.com/ironfox-oss/IronFox/-/merge_requests/109/diffs). MR-author: celenity <celenity@celenity.dev> Co-authored-by: Weblate <hosted@weblate.org> Co-authored-by: techaddict <20232669-techaddict@users.noreply.gitlab.com> Co-authored-by: user <user@localhost.localdomain> Co-authored-by: Akash Yadav <itsaky01@gmail.com> Approved-by: Akash Yadav <itsaky01@gmail.com> Merged-by: celenity <celenity@celenity.dev>
35 lines
1.5 KiB
Diff
35 lines
1.5 KiB
Diff
diff --git a/mobile/android/gradle.configure b/mobile/android/gradle.configure
|
|
index d04eb85ad0..701953a1f5 100644
|
|
--- a/mobile/android/gradle.configure
|
|
+++ b/mobile/android/gradle.configure
|
|
@@ -377,19 +377,19 @@ def gradle_android_archive_geckoview_tasks(build_config):
|
|
"geckoview:assemble{geckoview.variant.name}".format(
|
|
geckoview=build_config.geckoview
|
|
),
|
|
- "geckoview:assemble{geckoview.variant.name}AndroidTest".format(
|
|
- geckoview=build_config.geckoview
|
|
- ),
|
|
- "messaging_example:assemble{geckoview_example.variant.name}".format(
|
|
- geckoview_example=build_config.geckoview_example
|
|
- ),
|
|
- "port_messaging_example:assemble{geckoview_example.variant.name}".format(
|
|
- geckoview_example=build_config.geckoview_example
|
|
- ),
|
|
+# "geckoview:assemble{geckoview.variant.name}AndroidTest".format(
|
|
+# geckoview=build_config.geckoview
|
|
+# ),
|
|
+# "messaging_example:assemble{geckoview_example.variant.name}".format(
|
|
+# geckoview_example=build_config.geckoview_example
|
|
+# ),
|
|
+# "port_messaging_example:assemble{geckoview_example.variant.name}".format(
|
|
+# geckoview_example=build_config.geckoview_example
|
|
+# ),
|
|
"geckoview:publish{geckoview.variant.name}PublicationToMavenRepository".format(
|
|
geckoview=build_config.geckoview
|
|
),
|
|
- "exoplayer2:publishDebugPublicationToMavenRepository",
|
|
+# "exoplayer2:publishDebugPublicationToMavenRepository",
|
|
]
|
|
return tasks
|
|
|