Pier Angelo Vendrame pushed to branch tor-browser-115.9.0esr-13.0-1 at The Tor Project / Applications / Tor Browser
Commits:
d297cb60 by Pier Angelo Vendrame at 2024-03-13T19:16:43+01:00
Bug 42376: Pass the locale list when constructing l10n in datetimebox
The datetime input is inconsistent with other inputs when using spoof
English: its placeholder is not translated, unlike the default values
and texts of all the other inputs.
- - - - -
1 changed file:
- toolkit/content/widgets/datetimebox.js
Changes:
=====================================
toolkit/content/widgets/datetimebox.js
=====================================
@@ -22,7 +22,9 @@ this.DateTimeBoxWidget = class {
// createEditFieldAndAppend() call.
this.l10n = new this.window.DOMLocalization(
["toolkit/global/datetimebox.ftl"],
- /* aSync = */ true
+ /* aSync = */ true,
+ undefined,
+ this.window.getWebExposedLocales()
);
}
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d297cb6…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/d297cb6…
You're receiving this email because of your account on gitlab.torproject.org.
ma1 pushed to branch tor-browser-115.9.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
c99204f2 by hackademix at 2024-03-13T16:39:27+01:00
Bug 42443: Shrink window to match letterboxing size when the emtpy area is clicked.
- - - - -
1 changed file:
- toolkit/components/resistfingerprinting/RFPHelper.sys.mjs
Changes:
=====================================
toolkit/components/resistfingerprinting/RFPHelper.sys.mjs
=====================================
@@ -750,8 +750,27 @@ class _RFPHelper {
});
}
+ // We will attach this method to each browser window. When called
+ // it will instantly resize the window to exactly fit the selected
+ // (possibly letterboxed) browser.
+ shrinkToLetterbox() {
+ let { selectedBrowser } = this.gBrowser;
+ let stack = selectedBrowser.closest(".browserStack");
+ const outer = stack.getBoundingClientRect();
+ const inner = selectedBrowser.getBoundingClientRect();
+ this.resizeBy(inner.width - outer.width, inner.height - outer.height);
+ }
+
+ _onWindowDoubleClick(e) {
+ if (e.target.classList.contains("browserStack")) {
+ e.currentTarget.shrinkToLetterbox();
+ }
+ }
+
_attachWindow(aWindow) {
aWindow.addEventListener("sizemodechange", windowResizeHandler);
+ aWindow.shrinkToLetterbox = this.shrinkToLetterbox;
+ aWindow.addEventListener("dblclick", this._onWindowDoubleClick);
aWindow.gBrowser.addTabsProgressListener(this);
aWindow.addEventListener("TabOpen", this);
const resizeObserver = (aWindow._rfpResizeObserver =
@@ -783,9 +802,12 @@ class _RFPHelper {
let browser = tab.linkedBrowser;
this._resetContentSize(browser);
}
+ aWindow.removeEventListener("dblclick", this._onWindowDoubleClick);
+ delete aWindow.shrinkToLetterbox;
aWindow.removeEventListener("sizemodechange", windowResizeHandler);
}
+
_handleDOMWindowOpened(win) {
let self = this;
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c99204f…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c99204f…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch mullvad-browser-115.9.0esr-13.0-1 at The Tor Project / Applications / Mullvad Browser
Commits:
66e2cdc0 by Pier Angelo Vendrame at 2024-03-13T09:48:25+01:00
MB 38: Mullvad Browser configuration
- - - - -
f6acf62f by Pier Angelo Vendrame at 2024-03-13T09:48:26+01:00
MB 1: Mullvad Browser branding
See also:
mullvad-browser#5: Product name and directory customization
mullvad-browser#12: Create new branding directories and integrate Mullvad icons+branding
mullvad-browser#14: Remove Default Built-in bookmarks
mullvad-browser#35: Add custom PDF icons for Windows builds
mullvad-browser#48: Replace Mozilla copyright and legal trademarks in mullvadbrowser.exe metadata
mullvad-browser#51: Update trademark string
mullvad-browser#104: Update shipped dll metadata copyright/licensing info
mullvad-browser#107: Add alpha and nightly icons
- - - - -
faf7763a by Pier Angelo Vendrame at 2024-03-13T09:48:26+01:00
MB 20: Allow packaged-addons in PBM.
We install a few addons from the distribution directory, but they are
not automatically enabled for PBM mode.
This commit modifies the code that installs them to also add the PBM
permission to the known ones.
- - - - -
2c6c79c3 by Pier Angelo Vendrame at 2024-03-13T09:48:26+01:00
MB 63: Customize some about pages for Mullvad Browser
Also:
mullvad-browser#57: Purge unneeded about: pages
- - - - -
00eb1de9 by Pier Angelo Vendrame at 2024-03-13T09:48:26+01:00
MB 37: Customization for the about dialog
- - - - -
7cef9093 by Pier Angelo Vendrame at 2024-03-13T09:57:43+01:00
fixup! MB 37: Customization for the about dialog
MB 270: Update support email
- - - - -
aa8a1137 by Henry Wilkes at 2024-03-13T09:57:43+01:00
MB 39: Add home page about:mullvad-browser
- - - - -
f7d46ab5 by hackademix at 2024-03-13T09:57:43+01:00
MB 97: Remove UI cues to install new extensions.
- - - - -
c50cbdb3 by hackademix at 2024-03-13T09:57:44+01:00
MB 47: uBlock Origin customization
- - - - -
11c764d8 by Pier Angelo Vendrame at 2024-03-13T09:57:44+01:00
MB 21: Disable the password manager
This commit disables the about:login page and removes the "Login and
Password" section of about:preferences.
We do not do anything to the real password manager of Firefox, that is
in toolkit: it contains C++ parts that make it difficult to actually
prevent it from being built..
Finally, we modify the the function that opens about:login to report an
error in the console so that we can quickly get a backtrace to the code
that tries to use it.
- - - - -
6e5e8ee5 by Pier Angelo Vendrame at 2024-03-13T09:57:44+01:00
MB 87: Disable the default browser box on Windows and Linux
Windows and Linux will be distributed only as portable apps at the
beginning, so they should not be settable as default browsers.
We will need to improve the logic once we decide to ship system-wide
installers, too.
- - - - -
be0f6e42 by Pier Angelo Vendrame at 2024-03-13T09:57:44+01:00
MB 112: Updater customization for Mullvad Browser
MB 71: Set the updater base URL to Mullvad domain
- - - - -
7e3b2112 by Nicolas Vigier at 2024-03-13T09:57:45+01:00
MB 79: Add Mullvad Browser MAR signing keys
MB 256: Add mullvad-browser nightly mar signing key
- - - - -
3869d32b by Pier Angelo Vendrame at 2024-03-13T09:57:49+01:00
MB 34: Hide unsafe and unwanted preferences UI
about:preferences allow to override some of our defaults, that could
be fingeprintable or have some other unwanted consequences.
- - - - -
132ba735 by Pier Angelo Vendrame at 2024-03-13T09:57:49+01:00
MB 160: Disable the cookie exceptions button
Besides disabling the "Delete on close checkbox", disable also the
"Manage Exceptions" button when always using PBM.
- - - - -
a913f7ad by hackademix at 2024-03-13T09:57:49+01:00
MB 163: prevent uBlock Origin from being uninstalled/disabled
- - - - -
e5c543e2 by Richard Pospesel at 2024-03-13T09:57:50+01:00
MB 188: Customize Gitlab Issue and Merge templates
- - - - -
62ecd316 by rui hildt at 2024-03-13T09:57:50+01:00
MB 213: Customize the search engines list
- - - - -
019a2427 by hackademix at 2024-03-13T09:57:50+01:00
MB 214: Enable cross-tab identity leak protection in "quiet" mode
- - - - -
30 changed files:
- + .gitlab/issue_templates/Rebase Browser - Alpha.md
- + .gitlab/issue_templates/Rebase Browser - Stable.md
- .gitlab/merge_request_templates/default.md
- browser/app/Makefile.in
- browser/app/macbuild/Contents/Info.plist.in
- browser/app/module.ver
- browser/app/firefox.exe.manifest → browser/app/mullvadbrowser.exe.manifest
- + browser/app/profile/000-mullvad-browser.js
- browser/app/profile/001-base-profile.js
- browser/base/content/aboutDialog.xhtml
- browser/base/content/appmenu-viewcache.inc.xhtml
- browser/base/content/browser-menubar.inc
- browser/base/content/browser-places.js
- browser/base/content/browser.js
- browser/base/content/default-bookmarks.html
- browser/base/content/nsContextMenu.js
- browser/base/content/overrides/app-license.html
- browser/base/content/pageinfo/pageInfo.xhtml
- browser/base/content/utilityOverlay.js
- browser/branding/branding-common.mozbuild
- + browser/branding/mb-alpha/VisualElements_150.png
- + browser/branding/mb-alpha/VisualElements_70.png
- + browser/branding/mb-alpha/configure.sh
- + browser/branding/mb-alpha/content/about-logo.png
- + browser/branding/mb-alpha/content/about-logo.svg
- + browser/branding/mb-alpha/content/about-logo(a)2x.png
- + browser/branding/mb-alpha/content/about-wordmark.svg
- + browser/branding/mb-alpha/content/about.png
- + browser/branding/mb-alpha/content/aboutDialog.css
- + browser/branding/mb-alpha/content/firefox-wordmark.svg
The diff was not included because it is too large.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/59…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/59…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch mullvad-browser-115.9.0esr-13.5-1 at The Tor Project / Applications / Mullvad Browser
Commits:
60c28c5d by Pier Angelo Vendrame at 2024-03-13T10:04:36+01:00
MB 38: Mullvad Browser configuration
- - - - -
7d51a125 by Pier Angelo Vendrame at 2024-03-13T10:12:07+01:00
fixup! MB 38: Mullvad Browser configuration
s/privacy-browser/mullvad-browser/
- - - - -
cf8fa37d by Pier Angelo Vendrame at 2024-03-13T10:12:07+01:00
fixup! MB 38: Mullvad Browser configuration
MB 80: Enable the default browser agent
- - - - -
11229d78 by Pier Angelo Vendrame at 2024-03-13T10:12:07+01:00
MB 1: Mullvad Browser branding
See also:
mullvad-browser#5: Product name and directory customization
mullvad-browser#12: Create new branding directories and integrate Mullvad icons+branding
mullvad-browser#14: Remove Default Built-in bookmarks
mullvad-browser#35: Add custom PDF icons for Windows builds
mullvad-browser#48: Replace Mozilla copyright and legal trademarks in mullvadbrowser.exe metadata
mullvad-browser#51: Update trademark string
mullvad-browser#104: Update shipped dll metadata copyright/licensing info
mullvad-browser#107: Add alpha and nightly icons
- - - - -
038f7cbc by Pier Angelo Vendrame at 2024-03-13T10:12:07+01:00
fixup! MB 1: Mullvad Browser branding
Bug 42398: Include Alpha and Nightly in MOZ_APP_DISPLAYNAME.
- - - - -
bcbbb369 by Pier Angelo Vendrame at 2024-03-13T10:12:08+01:00
MB 20: Allow packaged-addons in PBM.
We install a few addons from the distribution directory, but they are
not automatically enabled for PBM mode.
This commit modifies the code that installs them to also add the PBM
permission to the known ones.
- - - - -
61274f06 by Pier Angelo Vendrame at 2024-03-13T10:12:08+01:00
MB 63: Customize some about pages for Mullvad Browser
Also:
mullvad-browser#57: Purge unneeded about: pages
- - - - -
fe4634cf by Pier Angelo Vendrame at 2024-03-13T10:12:08+01:00
MB 37: Customization for the about dialog
- - - - -
9e844f94 by Pier Angelo Vendrame at 2024-03-13T10:12:08+01:00
fixup! MB 37: Customization for the about dialog
MB 270: Update support email
- - - - -
8907594d by Henry Wilkes at 2024-03-13T10:12:08+01:00
MB 39: Add home page about:mullvad-browser
- - - - -
53a8508b by Henry Wilkes at 2024-03-13T10:12:09+01:00
fixup! MB 39: Add home page about:mullvad-browser
Bug 271: Show update in about:mullvad-browser
- - - - -
82165ef5 by hackademix at 2024-03-13T10:12:09+01:00
MB 97: Remove UI cues to install new extensions.
- - - - -
3dbce007 by hackademix at 2024-03-13T10:12:09+01:00
MB 47: uBlock Origin customization
- - - - -
73c50462 by Pier Angelo Vendrame at 2024-03-13T10:12:09+01:00
MB 21: Disable the password manager
This commit disables the about:login page and removes the "Login and
Password" section of about:preferences.
We do not do anything to the real password manager of Firefox, that is
in toolkit: it contains C++ parts that make it difficult to actually
prevent it from being built..
Finally, we modify the the function that opens about:login to report an
error in the console so that we can quickly get a backtrace to the code
that tries to use it.
- - - - -
1743fcb4 by Pier Angelo Vendrame at 2024-03-13T10:12:09+01:00
MB 112: Updater customization for Mullvad Browser
MB 71: Set the updater base URL to Mullvad domain
- - - - -
eb9c9173 by Pier Angelo Vendrame at 2024-03-13T10:12:10+01:00
fixup! MB 112: Updater customization for Mullvad Browser
s/privacy-browser/mullvad-browser/
- - - - -
946a2b95 by Henry Wilkes at 2024-03-13T10:12:10+01:00
fixup! MB 112: Updater customization for Mullvad Browser
Bug 271: Do not open update override page in a new tab, and show in
about:mullvad-browser instead.
- - - - -
46b2183d by Nicolas Vigier at 2024-03-13T10:12:10+01:00
MB 79: Add Mullvad Browser MAR signing keys
MB 256: Add mullvad-browser nightly mar signing key
- - - - -
508d9784 by Pier Angelo Vendrame at 2024-03-13T10:12:10+01:00
MB 34: Hide unsafe and unwanted preferences UI
about:preferences allow to override some of our defaults, that could
be fingeprintable or have some other unwanted consequences.
- - - - -
996ce0a4 by Pier Angelo Vendrame at 2024-03-13T10:12:10+01:00
MB 160: Disable the cookie exceptions button
Besides disabling the "Delete on close checkbox", disable also the
"Manage Exceptions" button when always using PBM.
- - - - -
3889ebae by hackademix at 2024-03-13T10:12:11+01:00
MB 163: prevent uBlock Origin from being uninstalled/disabled
- - - - -
a0bafb7f by Richard Pospesel at 2024-03-13T10:12:11+01:00
MB 188: Customize Gitlab Issue and Merge templates
- - - - -
9f4de3f6 by rui hildt at 2024-03-13T10:12:11+01:00
MB 213: Customize the search engines list
- - - - -
11484730 by hackademix at 2024-03-13T10:12:11+01:00
MB 214: Enable cross-tab identity leak protection in "quiet" mode
- - - - -
23f99529 by Pier Angelo Vendrame at 2024-03-13T10:12:11+01:00
MB 234: Disable OS spoofing in HTTP User-Agent.
This commits makes it possible to disable OS spoofing in the HTTP
User-Agent header, to see if matching header and JS property improve
usability.
- - - - -
587a2073 by Pier Angelo Vendrame at 2024-03-13T10:12:12+01:00
MB 80: Enable Mullvad Browser as a default browser
- - - - -
1cb8d16a by Pier Angelo Vendrame at 2024-03-13T10:12:12+01:00
fixup! MB 80: Enable Mullvad Browser as a default browser
Debugging faciliites.
- - - - -
30 changed files:
- + .gitlab/issue_templates/Rebase Browser - Alpha.md
- + .gitlab/issue_templates/Rebase Browser - Stable.md
- .gitlab/merge_request_templates/default.md
- browser/app/Makefile.in
- browser/app/macbuild/Contents/Info.plist.in
- browser/app/module.ver
- browser/app/firefox.exe.manifest → browser/app/mullvadbrowser.exe.manifest
- + browser/app/profile/000-mullvad-browser.js
- browser/app/profile/001-base-profile.js
- browser/base/content/aboutDialog.xhtml
- browser/base/content/appmenu-viewcache.inc.xhtml
- browser/base/content/browser-menubar.inc
- browser/base/content/browser-places.js
- browser/base/content/browser.js
- browser/base/content/default-bookmarks.html
- browser/base/content/nsContextMenu.js
- browser/base/content/overrides/app-license.html
- browser/base/content/pageinfo/pageInfo.xhtml
- browser/base/content/utilityOverlay.js
- browser/branding/branding-common.mozbuild
- + browser/branding/mb-alpha/VisualElements_150.png
- + browser/branding/mb-alpha/VisualElements_70.png
- + browser/branding/mb-alpha/configure.sh
- + browser/branding/mb-alpha/content/about-logo.png
- + browser/branding/mb-alpha/content/about-logo.svg
- + browser/branding/mb-alpha/content/about-logo(a)2x.png
- + browser/branding/mb-alpha/content/about-wordmark.svg
- + browser/branding/mb-alpha/content/about.png
- + browser/branding/mb-alpha/content/aboutDialog.css
- + browser/branding/mb-alpha/content/firefox-wordmark.svg
The diff was not included because it is too large.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/2c…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/2c…
You're receiving this email because of your account on gitlab.torproject.org.