lists.torproject.org
Sign In Sign Up
Manage this list Sign In Sign Up

Keyboard Shortcuts

Thread View

  • j: Next unread message
  • k: Previous unread message
  • j a: Jump to all threads
  • j l: Jump to MailingList overview

tbb-commits

Thread Start a new thread
Threads by month
  • ----- 2025 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2024 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2023 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2022 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2021 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2020 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2019 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2018 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2017 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2016 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2015 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
  • January
  • ----- 2014 -----
  • December
  • November
  • October
  • September
  • August
  • July
  • June
  • May
  • April
  • March
  • February
tbb-commits@lists.torproject.org

October 2025

  • 1 participants
  • 213 discussions
[Git][tpo/applications/tor-browser][tor-browser-140.4.0esr-15.0-1] fixup! [android] Disable features and functionality
by clairehurst (@clairehurst) 23 Oct '25

23 Oct '25
clairehurst pushed to branch tor-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 3195d965 by Dan Ballard at 2025-10-23T11:53:51-06:00 fixup! [android] Disable features and functionality Bug 43757: Disable setting for trending search - - - - - 1 changed file: - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt Changes: ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/utils/Settings.kt ===================================== @@ -2098,7 +2098,7 @@ class Settings(private val appContext: Context) : PreferencesHolder { */ var isTrendingSearchesVisible by lazyFeatureFlagPreference( key = appContext.getPreferenceKey(R.string.pref_key_enable_trending_searches), - default = { FxNimbus.features.trendingSearches.value().enabled }, + default = { false }, featureFlag = true, ) View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3195d96… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3195d96… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-140.4.0esr-15.0-1] [android] bug_44196 Persistent notification sometimes does not clear
by Dan Ballard (@dan) 23 Oct '25

23 Oct '25
Dan Ballard pushed to branch tor-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 2c2a065e by clairehurst at 2025-10-23T10:48:15-07:00 [android] bug_44196 Persistent notification sometimes does not clear - - - - - 1 changed file: - mobile/android/fenix/app/src/main/java/org/mozilla/fenix/HomeActivity.kt Changes: ===================================== mobile/android/fenix/app/src/main/java/org/mozilla/fenix/HomeActivity.kt ===================================== @@ -1583,6 +1583,8 @@ open class HomeActivity : LocaleAwareAppCompatActivity(), NavHostActivity, TorAn } fun shutDown() : Nothing { + // If we don't manually stop the service, the persistent "close tabs" notification sometimes does not clear + applicationContext.stopService(Intent(applicationContext, PrivateNotificationService::class.java)) finishAndRemoveTask() exitProcess(0) } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/2c2a065… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/2c2a065… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] Bug 41614: Update tools/signing/linux-signer-gpg-sign to sign aab files
by boklm (@boklm) 23 Oct '25

23 Oct '25
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 99bc1230 by Nicolas Vigier at 2025-10-23T12:56:20+02:00 Bug 41614: Update tools/signing/linux-signer-gpg-sign to sign aab files - - - - - 1 changed file: - tools/signing/linux-signer-gpg-sign Changes: ===================================== tools/signing/linux-signer-gpg-sign ===================================== @@ -11,7 +11,7 @@ test -n "$GPG_PASS" || read -sp "Enter gpg passphrase: " GPG_PASS currentdir=$(pwd) for i in `find . -name "*.dmg" -o -name "*.exe" -o -name "*.tar.xz" \ -o -name "*.txt" -o -name "*.zip" -o -name "*.tar.gz" -o -name "*.apk" \ - -o -name "*.deb" -o -name "*.rpm" | sort` + -o -name "*.deb" -o -name "*.rpm" -o -name "*.aab" | sort` do if test -f "$i.asc" then View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-15.0] MB 466: Automate the release process / replace the new build email
by ma1 (@ma1) 23 Oct '25

23 Oct '25
ma1 pushed to branch maint-15.0 at The Tor Project / Applications / tor-browser-build Commits: 2f4e7f76 by hackademix at 2025-10-23T11:59:47+02:00 MB 466: Automate the release process / replace the new build email - - - - - 3 changed files: - .gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md - .gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md - tools/signing/publish-github.mullvadbrowser Changes: ===================================== .gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md ===================================== @@ -168,6 +168,7 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch ``` ### mullvad-browser (GitHub): https://github.com/mullvad/mullvad-browser/ +This step will send the relevant branches, tags (including a tag named after the release version, e.g. `16.0a1`) and the signed build for QA to Mullvad's github repository. - [ ] Assign this issue to someone with mullvad commit access, one of: - boklm - ma1 @@ -177,40 +178,10 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch ```bash cd tor-browser-build/tools/signing/ && ./publish-github.mullvadbrowser ``` - </details> <details> <summary>Communications</summary> - -### Mullvad -- [ ] Email Mullvad with release information: - - **Recipients** - - Mullvad support alias: support(a)mullvadvpn.net - - Rui Hildt: rui(a)mullvad.net - ``` - support(a)mullvadvpn.net, rui(a)mullvad.net, - ``` - - **Subject** - ``` - New build: Mullvad Browser ${MULLVAD_BROWSER_VERSION} (signed) - ``` - - **Body** - ``` - Hello, - - Branch+Tags have been pushed to Mullvad's GitHub repo. - - - signed builds: https://dist.torproject.org/mullvadbrowser/${MULLVAD_BROWSER_VERSION} - - update_response hashes: ${MULLVAD_UPDATE_RESPONSES_HASH} - - * https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… - - changelog: - # paste changelog as quote here - ... - ``` - ### packagers - [ ] **(Optional, Once Packages are pushed to GitHub)** - **NOTE**: This is an optional step and only necessary close a major release/transition from alpha to stable, or if there are major packing changes these developers need to be aware of ===================================== .gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md ===================================== @@ -171,6 +171,7 @@ Mullvad Browser Stable is on the `maint-${MULLVAD_BROWSER_MAJOR}.${MULLVAD_BROWS ``` ### mullvad-browser (GitHub): https://github.com/mullvad/mullvad-browser/ +This step will send the relevant branches, tags (including a tag named after the release version, e.g. `15.0`) and the signed build for QA to Mullvad's github repository. - [ ] Assign this issue to someone with mullvad commit access, one of: - boklm - ma1 @@ -180,40 +181,14 @@ Mullvad Browser Stable is on the `maint-${MULLVAD_BROWSER_MAJOR}.${MULLVAD_BROWS ```bash cd tor-browser-build/tools/signing/ && ./publish-github.mullvadbrowser ``` - + - **NOTE**: if you need the release version tag to be suffixed someway, e.g. because it's a release candidate (`15.0rc1` instead of `15.0`), just add the fix as the first argument of the script: + ```bash + ./publish-github.mullvadbrowser rc1 + ``` </details> <details> <summary>Communications</summary> - -### Mullvad -- [ ] Email Mullvad with release information: - - **Recipients** - - Mullvad support alias: support(a)mullvadvpn.net - - Rui Hildt: rui(a)mullvad.net - ``` - support(a)mullvadvpn.net, rui(a)mullvad.net - ``` - - **Subject** - ``` - New build: Mullvad Browser ${MULLVAD_BROWSER_VERSION} (signed) - ``` - - **Body** - ``` - Hello, - - Branch+Tags have been pushed to Mullvad's GitHub repo. - - - signed builds: https://dist.torproject.org/mullvadbrowser/${MULLVAD_BROWSER_VERSION} - - update_response hashes: ${MULLVAD_UPDATE_RESPONSES_HASH}* - - * https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… - - changelog: - # paste changelog as quote here - ... - ``` - ### packagers - [ ] **(Once Packages are pushed to GitHub)** - **Recipients** ===================================== tools/signing/publish-github.mullvadbrowser ===================================== @@ -4,6 +4,17 @@ TBB_DIR="$SCRIPT_DIR/../.." function showconf { "$TBB_DIR/rbm/rbm" showconf $@ } + +# we may want to add a suffix to the release tag, e.g. rc1 +mbrtag_suffix="$1" +github_token=$(showconf release buildconf/devmole_auth_token2 2>/dev/null) +if ! [[ $github_token ]]; then + echo >&2 "Github token (buildconf/devmole_auth_token) missing!" + exit 1 +fi + +set -e + GL_REMOTE=git@gitlab.torproject.org:tpo/applications/mullvad-browser.git GH_REMOTE=git@github.com:mullvad/mullvad-browser.git CLONE_DIR="$TBB_DIR/git_clones/firefox" @@ -13,17 +24,19 @@ MB_TAG=$(showconf firefox git_hash $TARGET) MB_BRANCH=${MB_TAG//-build[0-9]*/} BB_BRANCH=${MB_BRANCH//mullvad-/base-} ESR_VERSION=$(showconf firefox var/firefox_version $TARGET) -RELEASE_VERSION=$(showconf release var/torbrowser_version $TARGET) +BASE_VERSION=$(showconf release var/torbrowser_version $TARGET) +RELEASE_VERSION="${BASE_VERSION}${mbrtag_suffix}" pushd >/dev/null ../../git_clones/firefox echo "Fetching $MB_BRANCH and tags..." git fetch --tags "$GL_REMOTE" "$MB_BRANCH" BB_TAG=$(git tag -l "$BB_BRANCH-build*" | tail -n1) FX_TAG=$(git tag -l "FIREFOX_${ESR_VERSION//\./_}*" | tail -n1) +echo "QA build version: $BASE_VERSION" echo "MB tag: $MB_TAG" echo "BB tag: $BB_TAG" echo "FX tag: $FX_TAG" echo "Mullvad release tag: $RELEASE_VERSION" -read -p "Do you want to tag mullvad $RELEASE_VERSION and push everything to ${GH_REMOTE}? (y/N) " -n 1 -r +read -p "Do you want to tag mullvad $RELEASE_VERSION and push tags/branches/QA build to ${GH_REMOTE}? (y/N) " -n 1 -r echo if ! [[ $REPLY =~ ^[Yy]$ ]]; then echo >&2 "Operation cancelled" @@ -37,3 +50,22 @@ git push "$GH_REMOTE" "$FX_TAG" git push "$GH_REMOTE" "$BB_TAG" git push "$GH_REMOTE" "$RELEASE_VERSION" popd >/dev/null + +# Call Mullvad's github workflow for new releases (mullvad-browser#466) + +version=$BASE_VERSION +response=$(curl -L \ + -X POST \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer $github_token" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + "https://api.github.com/repos/mullvad/mullvad-browser/actions/workflows/new_…" \ + -d "{\"ref\":\"main\",\"inputs\":{\"version\":\"$version\"}}") + +if ! [ $response ]; then + echo "Build $BASE_VERSION submitted." +else + echo >&2 "Something went wrong with build submission:" + echo >&2 $response + exit 3 +fi View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/2… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][main] MB 466: Automate the release process / replace the new build email
by ma1 (@ma1) 23 Oct '25

23 Oct '25
ma1 pushed to branch main at The Tor Project / Applications / tor-browser-build Commits: 48420e15 by hackademix at 2025-10-23T11:55:15+02:00 MB 466: Automate the release process / replace the new build email - - - - - 3 changed files: - .gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md - .gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md - tools/signing/publish-github.mullvadbrowser Changes: ===================================== .gitlab/issue_templates/Release Prep - Mullvad Browser Alpha.md ===================================== @@ -168,6 +168,7 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch ``` ### mullvad-browser (GitHub): https://github.com/mullvad/mullvad-browser/ +This step will send the relevant branches, tags (including a tag named after the release version, e.g. `16.0a1`) and the signed build for QA to Mullvad's github repository. - [ ] Assign this issue to someone with mullvad commit access, one of: - boklm - ma1 @@ -177,40 +178,10 @@ Mullvad Browser Alpha (and Nightly) are on the `main` branch ```bash cd tor-browser-build/tools/signing/ && ./publish-github.mullvadbrowser ``` - </details> <details> <summary>Communications</summary> - -### Mullvad -- [ ] Email Mullvad with release information: - - **Recipients** - - Mullvad support alias: support(a)mullvadvpn.net - - Rui Hildt: rui(a)mullvad.net - ``` - support(a)mullvadvpn.net, rui(a)mullvad.net, - ``` - - **Subject** - ``` - New build: Mullvad Browser ${MULLVAD_BROWSER_VERSION} (signed) - ``` - - **Body** - ``` - Hello, - - Branch+Tags have been pushed to Mullvad's GitHub repo. - - - signed builds: https://dist.torproject.org/mullvadbrowser/${MULLVAD_BROWSER_VERSION} - - update_response hashes: ${MULLVAD_UPDATE_RESPONSES_HASH} - - * https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… - - changelog: - # paste changelog as quote here - ... - ``` - ### packagers - [ ] **(Optional, Once Packages are pushed to GitHub)** - **NOTE**: This is an optional step and only necessary close a major release/transition from alpha to stable, or if there are major packing changes these developers need to be aware of ===================================== .gitlab/issue_templates/Release Prep - Mullvad Browser Stable.md ===================================== @@ -171,6 +171,7 @@ Mullvad Browser Stable is on the `maint-${MULLVAD_BROWSER_MAJOR}.${MULLVAD_BROWS ``` ### mullvad-browser (GitHub): https://github.com/mullvad/mullvad-browser/ +This step will send the relevant branches, tags (including a tag named after the release version, e.g. `15.0`) and the signed build for QA to Mullvad's github repository. - [ ] Assign this issue to someone with mullvad commit access, one of: - boklm - ma1 @@ -180,40 +181,14 @@ Mullvad Browser Stable is on the `maint-${MULLVAD_BROWSER_MAJOR}.${MULLVAD_BROWS ```bash cd tor-browser-build/tools/signing/ && ./publish-github.mullvadbrowser ``` - + - **NOTE**: if you need the release version tag to be suffixed someway, e.g. because it's a release candidate (`15.0rc1` instead of `15.0`), just add the fix as the first argument of the script: + ```bash + ./publish-github.mullvadbrowser rc1 + ``` </details> <details> <summary>Communications</summary> - -### Mullvad -- [ ] Email Mullvad with release information: - - **Recipients** - - Mullvad support alias: support(a)mullvadvpn.net - - Rui Hildt: rui(a)mullvad.net - ``` - support(a)mullvadvpn.net, rui(a)mullvad.net - ``` - - **Subject** - ``` - New build: Mullvad Browser ${MULLVAD_BROWSER_VERSION} (signed) - ``` - - **Body** - ``` - Hello, - - Branch+Tags have been pushed to Mullvad's GitHub repo. - - - signed builds: https://dist.torproject.org/mullvadbrowser/${MULLVAD_BROWSER_VERSION} - - update_response hashes: ${MULLVAD_UPDATE_RESPONSES_HASH}* - - * https://gitlab.torproject.org/tpo/applications/mullvad-browser-update-respo… - - changelog: - # paste changelog as quote here - ... - ``` - ### packagers - [ ] **(Once Packages are pushed to GitHub)** - **Recipients** ===================================== tools/signing/publish-github.mullvadbrowser ===================================== @@ -4,6 +4,17 @@ TBB_DIR="$SCRIPT_DIR/../.." function showconf { "$TBB_DIR/rbm/rbm" showconf $@ } + +# we may want to add a suffix to the release tag, e.g. rc1 +mbrtag_suffix="$1" +github_token=$(showconf release buildconf/devmole_auth_token2 2>/dev/null) +if ! [[ $github_token ]]; then + echo >&2 "Github token (buildconf/devmole_auth_token) missing!" + exit 1 +fi + +set -e + GL_REMOTE=git@gitlab.torproject.org:tpo/applications/mullvad-browser.git GH_REMOTE=git@github.com:mullvad/mullvad-browser.git CLONE_DIR="$TBB_DIR/git_clones/firefox" @@ -13,17 +24,19 @@ MB_TAG=$(showconf firefox git_hash $TARGET) MB_BRANCH=${MB_TAG//-build[0-9]*/} BB_BRANCH=${MB_BRANCH//mullvad-/base-} ESR_VERSION=$(showconf firefox var/firefox_version $TARGET) -RELEASE_VERSION=$(showconf release var/torbrowser_version $TARGET) +BASE_VERSION=$(showconf release var/torbrowser_version $TARGET) +RELEASE_VERSION="${BASE_VERSION}${mbrtag_suffix}" pushd >/dev/null ../../git_clones/firefox echo "Fetching $MB_BRANCH and tags..." git fetch --tags "$GL_REMOTE" "$MB_BRANCH" BB_TAG=$(git tag -l "$BB_BRANCH-build*" | tail -n1) FX_TAG=$(git tag -l "FIREFOX_${ESR_VERSION//\./_}*" | tail -n1) +echo "QA build version: $BASE_VERSION" echo "MB tag: $MB_TAG" echo "BB tag: $BB_TAG" echo "FX tag: $FX_TAG" echo "Mullvad release tag: $RELEASE_VERSION" -read -p "Do you want to tag mullvad $RELEASE_VERSION and push everything to ${GH_REMOTE}? (y/N) " -n 1 -r +read -p "Do you want to tag mullvad $RELEASE_VERSION and push tags/branches/QA build to ${GH_REMOTE}? (y/N) " -n 1 -r echo if ! [[ $REPLY =~ ^[Yy]$ ]]; then echo >&2 "Operation cancelled" @@ -37,3 +50,22 @@ git push "$GH_REMOTE" "$FX_TAG" git push "$GH_REMOTE" "$BB_TAG" git push "$GH_REMOTE" "$RELEASE_VERSION" popd >/dev/null + +# Call Mullvad's github workflow for new releases (mullvad-browser#466) + +version=$BASE_VERSION +response=$(curl -L \ + -X POST \ + -H "Accept: application/vnd.github+json" \ + -H "Authorization: Bearer $github_token" \ + -H "X-GitHub-Api-Version: 2022-11-28" \ + "https://api.github.com/repos/mullvad/mullvad-browser/actions/workflows/new_…" \ + -d "{\"ref\":\"main\",\"inputs\":{\"version\":\"$version\"}}") + +if ! [ $response ]; then + echo "Build $BASE_VERSION submitted." +else + echo >&2 "Something went wrong with build submission:" + echo >&2 $response + exit 3 +fi View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/4… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][base-browser-140.4.0esr-15.0-1] fixup! BB 43140: Tighten up fonts on Linux.
by Pier Angelo Vendrame (@pierov) 23 Oct '25

23 Oct '25
Pier Angelo Vendrame pushed to branch base-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 64a7d742 by Pier Angelo Vendrame at 2025-10-23T09:42:28+02:00 fixup! BB 43140: Tighten up fonts on Linux. BB 44286: Hardcode GTK system font. - - - - - 1 changed file: - widget/gtk/nsLookAndFeel.cpp Changes: ===================================== widget/gtk/nsLookAndFeel.cpp ===================================== @@ -1235,6 +1235,13 @@ static void GetSystemFontInfo(GtkStyleContext* aStyle, nsString* aFontName, gfxFontStyle* aFontStyle) { aFontStyle->style = FontSlantStyle::NORMAL; +#ifdef BASE_BROWSER_VERSION + *aFontName = u"\"Arimo\""; + aFontStyle->systemFont = true; + aFontStyle->weight = FontWeight::NORMAL; + aFontStyle->stretch = FontStretch::NORMAL; + aFontStyle->size = 14; +#else // As in // https://git.gnome.org/browse/gtk+/tree/gtk/gtkwidget.c?h=3.22.19#n10333 PangoFontDescription* desc; @@ -1269,6 +1276,7 @@ static void GetSystemFontInfo(GtkStyleContext* aStyle, nsString* aFontName, aFontStyle->size = size; pango_font_description_free(desc); +#endif } bool nsLookAndFeel::NativeGetFont(FontID aID, nsString& aFontName, View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/64a7d74… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/64a7d74… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/mullvad-browser][mullvad-browser-140.4.0esr-15.0-1] fixup! BB 43140: Tighten up fonts on Linux.
by Pier Angelo Vendrame (@pierov) 23 Oct '25

23 Oct '25
Pier Angelo Vendrame pushed to branch mullvad-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Mullvad Browser Commits: 1007972e by Pier Angelo Vendrame at 2025-10-23T09:41:59+02:00 fixup! BB 43140: Tighten up fonts on Linux. BB 44286: Hardcode GTK system font. - - - - - 1 changed file: - widget/gtk/nsLookAndFeel.cpp Changes: ===================================== widget/gtk/nsLookAndFeel.cpp ===================================== @@ -1235,6 +1235,13 @@ static void GetSystemFontInfo(GtkStyleContext* aStyle, nsString* aFontName, gfxFontStyle* aFontStyle) { aFontStyle->style = FontSlantStyle::NORMAL; +#ifdef BASE_BROWSER_VERSION + *aFontName = u"\"Arimo\""; + aFontStyle->systemFont = true; + aFontStyle->weight = FontWeight::NORMAL; + aFontStyle->stretch = FontStretch::NORMAL; + aFontStyle->size = 14; +#else // As in // https://git.gnome.org/browse/gtk+/tree/gtk/gtkwidget.c?h=3.22.19#n10333 PangoFontDescription* desc; @@ -1269,6 +1276,7 @@ static void GetSystemFontInfo(GtkStyleContext* aStyle, nsString* aFontName, aFontStyle->size = size; pango_font_description_free(desc); +#endif } bool nsLookAndFeel::NativeGetFont(FontID aID, nsString& aFontName, View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/100… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/100… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser][tor-browser-140.4.0esr-15.0-1] fixup! BB 43140: Tighten up fonts on Linux.
by Pier Angelo Vendrame (@pierov) 23 Oct '25

23 Oct '25
Pier Angelo Vendrame pushed to branch tor-browser-140.4.0esr-15.0-1 at The Tor Project / Applications / Tor Browser Commits: 3c4a8e9f by Pier Angelo Vendrame at 2025-10-22T19:37:13+02:00 fixup! BB 43140: Tighten up fonts on Linux. BB 44286: Hardcode GTK system font. - - - - - 1 changed file: - widget/gtk/nsLookAndFeel.cpp Changes: ===================================== widget/gtk/nsLookAndFeel.cpp ===================================== @@ -1235,6 +1235,13 @@ static void GetSystemFontInfo(GtkStyleContext* aStyle, nsString* aFontName, gfxFontStyle* aFontStyle) { aFontStyle->style = FontSlantStyle::NORMAL; +#ifdef BASE_BROWSER_VERSION + *aFontName = u"\"Arimo\""; + aFontStyle->systemFont = true; + aFontStyle->weight = FontWeight::NORMAL; + aFontStyle->stretch = FontStretch::NORMAL; + aFontStyle->size = 14; +#else // As in // https://git.gnome.org/browse/gtk+/tree/gtk/gtkwidget.c?h=3.22.19#n10333 PangoFontDescription* desc; @@ -1269,6 +1276,7 @@ static void GetSystemFontInfo(GtkStyleContext* aStyle, nsString* aFontName, aFontStyle->size = size; pango_font_description_free(desc); +#endif } bool nsLookAndFeel::NativeGetFont(FontID aID, nsString& aFontName, View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3c4a8e9… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/3c4a8e9… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-15.0] Bug 41609: Use new CDN77 fronts for snowflake
by morgan (@morgan) 22 Oct '25

22 Oct '25
morgan pushed to branch maint-15.0 at The Tor Project / Applications / tor-browser-build Commits: f318cb64 by Cecylia Bocovich at 2025-10-22T17:27:13+00:00 Bug 41609: Use new CDN77 fronts for snowflake - - - - - 1 changed file: - projects/tor-expert-bundle/pt_config.json Changes: ===================================== projects/tor-expert-bundle/pt_config.json ===================================== @@ -23,8 +23,8 @@ "obfs4 51.222.13.177:80 5EDAC3B810E12B01F6FD8050D2FD3E277B289A08 cert=2uplIpLQ0q9+0qMFrK5pkaYRDOe460LL9WHBvatgkuRr/SL31wBOEupaMMJ6koRE6Ld0ew iat-mode=0" ], "snowflake" : [ - "snowflake 192.0.2.3:80 2B280B23E1107BB62ABFC40DDCC8824814F80A72 fingerprint=2B280B23E1107BB62ABFC40DDCC8824814F80A72 url=https://voluble-torrone-fc39bf.netlify.app/ fronts=vuejs.org ice=stun:stun.epygi.com:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.mixvoip.com:3478,stun:stun.nextcloud.com:3478,stun:stun.bethesda.net:3478,stun:stun.nextcloud.com:443 utls-imitate=hellorandomizedalpn", - "snowflake 192.0.2.4:80 8838024498816A039FCBBAB14E6F40A0843051FA fingerprint=8838024498816A039FCBBAB14E6F40A0843051FA url=https://voluble-torrone-fc39bf.netlify.app/ fronts=vuejs.org ice=stun:stun.epygi.com:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.mixvoip.com:3478,stun:stun.nextcloud.com:3478,stun:stun.bethesda.net:3478,stun:stun.nextcloud.com:443 utls-imitate=hellorandomizedalpn" + "snowflake 192.0.2.3:80 2B280B23E1107BB62ABFC40DDCC8824814F80A72 fingerprint=2B280B23E1107BB62ABFC40DDCC8824814F80A72 url=https://1098762253.rsc.cdn77.org/ fronts=app.datapacket.com,www.datapacket.com ice=stun:stun.epygi.com:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.mixvoip.com:3478,stun:stun.nextcloud.com:3478,stun:stun.bethesda.net:3478,stun:stun.nextcloud.com:443 utls-imitate=hellorandomizedalpn", + "snowflake 192.0.2.4:80 8838024498816A039FCBBAB14E6F40A0843051FA fingerprint=8838024498816A039FCBBAB14E6F40A0843051FA url=https://1098762253.rsc.cdn77.org/ fronts=app.datapacket.com,www.datapacket.com ice=stun:stun.epygi.com:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.mixvoip.com:3478,stun:stun.nextcloud.com:3478,stun:stun.bethesda.net:3478,stun:stun.nextcloud.com:443 utls-imitate=hellorandomizedalpn" ] } } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/f… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
[Git][tpo/applications/tor-browser-build][maint-13.5] Bug 41609: Use new CDN77 fronts for snowflake
by morgan (@morgan) 22 Oct '25

22 Oct '25
morgan pushed to branch maint-13.5 at The Tor Project / Applications / tor-browser-build Commits: 923359a0 by Cecylia Bocovich at 2025-10-22T17:24:54+00:00 Bug 41609: Use new CDN77 fronts for snowflake - - - - - 1 changed file: - projects/tor-expert-bundle/pt_config.json Changes: ===================================== projects/tor-expert-bundle/pt_config.json ===================================== @@ -23,8 +23,8 @@ "obfs4 51.222.13.177:80 5EDAC3B810E12B01F6FD8050D2FD3E277B289A08 cert=2uplIpLQ0q9+0qMFrK5pkaYRDOe460LL9WHBvatgkuRr/SL31wBOEupaMMJ6koRE6Ld0ew iat-mode=0" ], "snowflake" : [ - "snowflake 192.0.2.3:80 2B280B23E1107BB62ABFC40DDCC8824814F80A72 fingerprint=2B280B23E1107BB62ABFC40DDCC8824814F80A72 url=https://voluble-torrone-fc39bf.netlify.app/ fronts=vuejs.org ice=stun:stun.epygi.com:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.mixvoip.com:3478,stun:stun.nextcloud.com:3478,stun:stun.bethesda.net:3478,stun:stun.nextcloud.com:443 utls-imitate=hellorandomizedalpn", - "snowflake 192.0.2.4:80 8838024498816A039FCBBAB14E6F40A0843051FA fingerprint=8838024498816A039FCBBAB14E6F40A0843051FA url=https://voluble-torrone-fc39bf.netlify.app/ fronts=vuejs.org ice=stun:stun.epygi.com:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.mixvoip.com:3478,stun:stun.nextcloud.com:3478,stun:stun.bethesda.net:3478,stun:stun.nextcloud.com:443 utls-imitate=hellorandomizedalpn" + "snowflake 192.0.2.3:80 2B280B23E1107BB62ABFC40DDCC8824814F80A72 fingerprint=2B280B23E1107BB62ABFC40DDCC8824814F80A72 url=https://1098762253.rsc.cdn77.org/ fronts=app.datapacket.com,www.datapacket.com ice=stun:stun.epygi.com:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.mixvoip.com:3478,stun:stun.nextcloud.com:3478,stun:stun.bethesda.net:3478,stun:stun.nextcloud.com:443 utls-imitate=hellorandomizedalpn", + "snowflake 192.0.2.4:80 8838024498816A039FCBBAB14E6F40A0843051FA fingerprint=8838024498816A039FCBBAB14E6F40A0843051FA url=https://1098762253.rsc.cdn77.org/ fronts=app.datapacket.com,www.datapacket.com ice=stun:stun.epygi.com:3478,stun:stun.uls.co.za:3478,stun:stun.voipgate.com:3478,stun:stun.mixvoip.com:3478,stun:stun.nextcloud.com:3478,stun:stun.bethesda.net:3478,stun:stun.nextcloud.com:443 utls-imitate=hellorandomizedalpn" ] } } View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9… -- View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/9… You're receiving this email because of your account on gitlab.torproject.org.
1 0
0 0
  • ← Newer
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • ...
  • 22
  • Older →

HyperKitty Powered by HyperKitty version 1.3.12.