ma1 pushed to branch tor-browser-102.12.0esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
a6db7b91 by hackademix at 2023-06-12T10:35:40+02:00
fixup! Bug 32308: use direct browser sizing for letterboxing.
- - - - -
1 changed file:
- toolkit/components/resistfingerprinting/RFPHelper.jsm
Changes:
=====================================
toolkit/components/resistfingerprinting/RFPHelper.jsm
=====================================
@@ -51,7 +51,7 @@ function forEachWindow(callback) {
async function windowResizeHandler(aEvent) {
- if (RFPHelper.letterboxingEnabled) {
+ if (RFPHelper.letterboxingEnabled || !RFPHelper.rfpEnabled) {
return;
}
if (Services.prefs.getIntPref(kPrefResizeWarnings) <= 0) {
@@ -250,7 +250,9 @@ class _RFPHelper {
}
_handleResistFingerprintingChanged() {
- if (Services.prefs.getBoolPref(kPrefResistFingerprinting)) {
+ if (
+ (this.rfpEnabled = Services.prefs.getBoolPref(kPrefResistFingerprinting))
+ ) {
this._addRFPObservers();
Services.ww.registerNotification(this);
forEachWindow(win => this._attachWindow(win));
@@ -397,7 +399,9 @@ class _RFPHelper {
kPrefLetterboxing,
false
);
- forEachWindow(win => this._updateSizeForTabsInWindow(win));
+ if (this.rfpEnabled) {
+ forEachWindow(win => this._updateSizeForTabsInWindow(win));
+ }
}
// The function to parse the dimension set from the pref value. The pref value
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a6db7b9…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/a6db7b9…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch base-browser-102.12.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
c8ea1c20 by hackademix at 2023-06-12T10:30:29+02:00
fixup! Bug 32308: use direct browser sizing for letterboxing.
- - - - -
1 changed file:
- toolkit/components/resistfingerprinting/RFPHelper.jsm
Changes:
=====================================
toolkit/components/resistfingerprinting/RFPHelper.jsm
=====================================
@@ -51,7 +51,7 @@ function forEachWindow(callback) {
async function windowResizeHandler(aEvent) {
- if (RFPHelper.letterboxingEnabled) {
+ if (RFPHelper.letterboxingEnabled || !RFPHelper.rfpEnabled) {
return;
}
if (Services.prefs.getIntPref(kPrefResizeWarnings) <= 0) {
@@ -250,7 +250,9 @@ class _RFPHelper {
}
_handleResistFingerprintingChanged() {
- if (Services.prefs.getBoolPref(kPrefResistFingerprinting)) {
+ if (
+ (this.rfpEnabled = Services.prefs.getBoolPref(kPrefResistFingerprinting))
+ ) {
this._addRFPObservers();
Services.ww.registerNotification(this);
forEachWindow(win => this._attachWindow(win));
@@ -397,7 +399,9 @@ class _RFPHelper {
kPrefLetterboxing,
false
);
- forEachWindow(win => this._updateSizeForTabsInWindow(win));
+ if (this.rfpEnabled) {
+ forEachWindow(win => this._updateSizeForTabsInWindow(win));
+ }
}
// The function to parse the dimension set from the pref value. The pref value
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c8ea1c2…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c8ea1c2…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch tor-browser-102.12.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
1fac685b by hackademix at 2023-06-12T09:22:03+02:00
fixup! Bug 32308: use direct browser sizing for letterboxing.
- - - - -
1 changed file:
- toolkit/components/resistfingerprinting/RFPHelper.jsm
Changes:
=====================================
toolkit/components/resistfingerprinting/RFPHelper.jsm
=====================================
@@ -51,7 +51,7 @@ function forEachWindow(callback) {
async function windowResizeHandler(aEvent) {
- if (RFPHelper.letterboxingEnabled) {
+ if (RFPHelper.letterboxingEnabled || !RFPHelper.rfpEnabled) {
return;
}
if (Services.prefs.getIntPref(kPrefResizeWarnings) <= 0) {
@@ -250,7 +250,9 @@ class _RFPHelper {
}
_handleResistFingerprintingChanged() {
- if (Services.prefs.getBoolPref(kPrefResistFingerprinting)) {
+ if (
+ (this.rfpEnabled = Services.prefs.getBoolPref(kPrefResistFingerprinting))
+ ) {
this._addRFPObservers();
Services.ww.registerNotification(this);
forEachWindow(win => this._attachWindow(win));
@@ -397,7 +399,9 @@ class _RFPHelper {
kPrefLetterboxing,
false
);
- forEachWindow(win => this._updateSizeForTabsInWindow(win));
+ if (this.rfpEnabled) {
+ forEachWindow(win => this._updateSizeForTabsInWindow(win));
+ }
}
// The function to parse the dimension set from the pref value. The pref value
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1fac685…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1fac685…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch tor-browser-102.12.0esr-12.5-1 at The Tor Project / Applications / Tor Browser
Commits:
1ebff487 by Dan Ballard at 2023-06-10T12:26:20+00:00
fixup! TB3: Tor Browser's official .mozconfigs.
Bug 41828: Remove --with-tor-browser-version from tor-browser-android mozconfig
- - - - -
1 changed file:
- browser/config/mozconfigs/tor-browser-android
Changes:
=====================================
browser/config/mozconfigs/tor-browser-android
=====================================
@@ -1,7 +1,3 @@
. $topsrcdir/browser/config/mozconfigs/base-browser-android
mk_add_options MOZ_APP_DISPLAYNAME="Tor Browser"
-
-if test ! -z "$LOCAL_DEV_BUILD"; then
- ac_add_options --with-tor-browser-version=dev-build
-fi
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1ebff48…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/1ebff48…
You're receiving this email because of your account on gitlab.torproject.org.