mirror of
https://github.com/ironfox-oss/IronFox.git
synced 2025-12-31 10:10:46 -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>
49 lines
1.7 KiB
Bash
49 lines
1.7 KiB
Bash
#!/bin/bash
|
|
|
|
# Script is used to update the F-Droid
|
|
# This script is expected to be run in a CI environment
|
|
# DO NOT execute this manually!
|
|
|
|
set -eu
|
|
|
|
git clone --recurse-submodules "https://$IF_CI_USERNAME:$GITLAB_CI_PUSH_TOKEN@gitlab.com/$FDROID_REPO_PATH.git" fdroid
|
|
pushd fdroid || { echo "Unable to pushd into 'fdroid'"; exit 1; };
|
|
mkdir -vp "$REPO_DIR_PATH"
|
|
git lfs install
|
|
|
|
# Download all assets from the release
|
|
curl --header "PRIVATE-TOKEN: $GITLAB_CI_API_TOKEN" \
|
|
"${CI_API_V4_URL}/projects/${CI_PROJECT_ID}/releases/${CI_COMMIT_TAG}/assets/links" \
|
|
| jq -c '.[] | select(.name | endswith(".apk"))' \
|
|
| while read -r asset; do
|
|
name=$(echo "$asset" | jq -r '.name')
|
|
url=$(echo "$asset" | jq -r '.direct_asset_url')
|
|
echo "Downloading $name from $url"
|
|
curl -L --header "PRIVATE-TOKEN: $GITLAB_CI_API_TOKEN" "$url" -o "$REPO_DIR_PATH/$name"
|
|
done
|
|
|
|
# shellcheck disable=SC2046
|
|
IFS=":" read -r vercode vername <<< "$("$CI_PROJECT_DIR"/scripts/get_latest_version.py $(ls "$REPO_DIR_PATH"/*.apk))"
|
|
|
|
META_FILE_PATH="$META_DIR_PATH/$META_FILE_NAME"
|
|
|
|
sed -i \
|
|
-e "s/CurrentVersion: .*/CurrentVersion: \"v$vername\"/" \
|
|
-e "s/CurrentVersionCode: .*/CurrentVersionCode: $vercode/" "$META_FILE_PATH"
|
|
|
|
pushd "$META_DIR_PATH" || { echo "Unable to pushd into '$META_DIR_PATH'"; exit 1; }
|
|
|
|
# Update metadata repository
|
|
git add "$META_FILE_NAME"
|
|
git commit -m "feat: update for release ${CI_COMMIT_TAG}"
|
|
git push origin "HEAD:$META_REPO_BRANCH"
|
|
|
|
popd || { echo "Unable to popd from '$META_DIR_PATH'"; exit 1; }
|
|
|
|
# Update F-Droid repository
|
|
git add "$REPO_DIR_PATH" "$META_DIR_PATH"
|
|
git commit -m "feat: update for release ${CI_COMMIT_TAG}"
|
|
git push origin "HEAD:$FDROID_REPO_BRANCH"
|
|
|
|
popd # ignore error
|