mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2026-02-08 13:22:31 -05:00
ironfox-oss/IronFox!80 ____ ## Changes - [Fixed an issue that caused the browser to always attempt to install uBlock Origin, even if deselected on the onboarding](https://gitlab.com/ironfox-oss/IronFox/-/issues/180). - [Fixed and added back the `Debug Drawer` secret setting](c6e1c4cd68). - [Glean](https://github.com/mozilla/glean) is now built with [Tor Browser's no-op UniFFI binding generator](766e179979). - Prevented the browser from initializing the [Nimbus *(Experimentation)* library](https://experimenter.info/getting-started/engineers/getting-started-for-android-engineers/). - Rebased onto Application Services [`v143.0`](https://github.com/mozilla/application-services/releases/tag/v143.0). - Rebased onto Firefox [`143.0`](https://firefox.com/firefox/android/143.0/releasenotes/). - Rebased onto Glean [`v64.5.5`](https://github.com/mozilla/glean/releases/tag/v64.5.5). - Removed additional unwanted/unnecessary components used for data collection and marketing. - Removed [Glean](https://github.com/mozilla/glean) from Mozilla's [Android Components](https://searchfox.org/firefox-main/source/mobile/android/android-components/README.md). - Removed [Glean](https://github.com/mozilla/glean) from [Application Services](https://github.com/mozilla/application-services). - Removed the `Enable disk cache for secure webpages` UI setting toggle. Note that the `Enable disk cache` toggle is a master-switch, it disables disk cache for *both* insecure *and* secure websites, and it remains off by default. - Removed the `Hard-fail OCSP revocation checks` UI setting toggle, as we no longer enable or use OCSP by default, in favor of CRLite *([See details](e599bd459e))*. - Removed [Nimbus](https://experimenter.info/getting-started/engineers/getting-started-for-android-engineers/) from the [`engine-gecko` Android component](https://searchfox.org/firefox-main/source/mobile/android/android-components/components/browser/engine-gecko/README.md). - [Stubbed `PlayStoreReviewPromptController`, and removed the now-unnecessary microG `Tasks` library](52791d3500). - Updated the default Rust version [for **Gecko** and **Glean**](ec6ee31f83) to [`1.89.0`](https://doc.rust-lang.org/stable/releases.html#version-1890-2025-08-07). - Updated Phoenix to [`2025.09.07.1`](https://codeberg.org/celenity/Phoenix/releases/tag/2025.09.07.1). - [Other tweaks, refinements, and minor enhancements](https://gitlab.com/ironfox-oss/IronFox/-/merge_requests/80/diffs). MR-author: celenity <celenity@celenity.dev> Co-authored-by: Weblate <hosted@weblate.org> 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>
46 lines
1.3 KiB
Bash
46 lines
1.3 KiB
Bash
#!/bin/bash
|
|
# shellcheck disable=SC2034
|
|
|
|
# Sources
|
|
FIREFOX_VERSION="143.0"
|
|
IRONFOX_VERSION="${FIREFOX_VERSION}"
|
|
FIREFOX_RELEASE_TAG="FIREFOX-ANDROID_${FIREFOX_VERSION//./_}_RELEASE"
|
|
#FIREFOX_RELEASE_TAG="FIREFOX-ANDROID_${FIREFOX_VERSION//./_}_BUILD1"
|
|
FIREFOX_RELEASE_PATH="releases/${FIREFOX_VERSION}"
|
|
WASI_TAG="wasi-sdk-20"
|
|
GLEAN_VERSION="64.5.5"
|
|
GLEAN_TAG="v${GLEAN_VERSION}"
|
|
GMSCORE_TAG="v0.3.9.250932"
|
|
PHOENIX_TAG="2025.09.07.1"
|
|
APPSERVICES_BRANCH="release-v143"
|
|
|
|
# Tools
|
|
BUNDLETOOL_TAG="1.18.1"
|
|
RUST_MAJOR_VERSION="1.89"
|
|
RUST_VERSION="${RUST_MAJOR_VERSION}.0"
|
|
CBINDGEN_VERSION="0.29.0"
|
|
UNIFFI_VERSION="0.29.0"
|
|
UNIFFI_REVISION="${UNIFFI_VERSION}-047359"
|
|
|
|
# Configuration
|
|
ROOTDIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
ENV_SH="${ROOTDIR}/scripts/env_local.sh"
|
|
BUILDDIR="${ROOTDIR}/build"
|
|
PATCHDIR="${ROOTDIR}/patches"
|
|
GECKODIR="${ROOTDIR}/gecko"
|
|
GLEANDIR="${ROOTDIR}/glean"
|
|
APPSERVICESDIR="${ROOTDIR}/application-services"
|
|
BUNDLETOOLDIR="$BUILDDIR/bundletool"
|
|
GMSCOREDIR="${ROOTDIR}/gmscore"
|
|
WASISDKDIR="${ROOTDIR}/wasi-sdk"
|
|
UNIFFIDIR="${ROOTDIR}/uniffi"
|
|
ANDROID_COMPONENTS="${GECKODIR}/mobile/android/android-components"
|
|
FENIX="${GECKODIR}/mobile/android/fenix"
|
|
|
|
# Use GNU Sed on macOS instead of the built-in sed, due to differences in syntax
|
|
if [[ "$OSTYPE" == "darwin"* ]]; then
|
|
SED=gsed
|
|
else
|
|
SED=sed
|
|
fi
|