Pier Angelo Vendrame pushed to branch tor-browser-128.0esr-14.0-2 at The Tor Project / Applications / Tor Browser
Commits:
646ee32d by Henry Wilkes at 2024-07-31T14:16:49+01:00
fixup! Bug 40597: Implement TorSettings module
Bug 42622: Send TorConnect "Error" signal before "StateChange".
- - - - -
1 changed file:
- toolkit/modules/TorConnect.sys.mjs
Changes:
=====================================
toolkit/modules/TorConnect.sys.mjs
=====================================
@@ -687,16 +687,7 @@ class ErrorState extends StateCallback {
ErrorState.#hasEverHappened = true;
}
- run(error) {
- if (!(error instanceof TorConnectError)) {
- error = new TorConnectError(TorConnectError.ExternalError, error);
- }
- TorConnect._errorCode = error.code;
- TorConnect._errorDetails = error;
- lazy.logger.error(`Entering error state (${error.code})`, error);
-
- Services.obs.notifyObservers(error, TorConnectTopics.Error);
-
+ run(_error) {
this.changeState(TorConnectState.Configuring);
}
@@ -904,6 +895,23 @@ export const TorConnect = {
// Set our new state first so that state transitions can themselves
// trigger a state transition.
this._stateHandler = this._makeState(newState);
+
+ // Error signal needs to be sent out before we enter the Error state.
+ // Expected on android `onBootstrapError` to set lastKnownError.
+ // Expected in about:torconnect to set the error codes and internet status
+ // *before* the StateChange signal.
+ if (newState === TorConnectState.Error) {
+ let error = args[0];
+ if (!(error instanceof TorConnectError)) {
+ error = new TorConnectError(TorConnectError.ExternalError, error);
+ }
+ TorConnect._errorCode = error.code;
+ TorConnect._errorDetails = error;
+ lazy.logger.error(`Entering error state (${error.code})`, error);
+
+ Services.obs.notifyObservers(error, TorConnectTopics.Error);
+ }
+
Services.obs.notifyObservers(
{ state: newState },
TorConnectTopics.StateChange
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/646ee32…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/646ee32…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
dfac6c0a by Pier Angelo Vendrame at 2024-07-31T08:50:18+02:00
Bug 41201: Require Windows 10 or later in the installer.
Firefox 128 is not compatible with Windows 7, 8, and 8.1 anymore, so we
should notify the users before they start installing it.
- - - - -
3 changed files:
- projects/browser/windows-installer/add-strings.py
- projects/browser/windows-installer/common.nsh
- projects/browser/windows-installer/languages.nsh
Changes:
=====================================
projects/browser/windows-installer/add-strings.py
=====================================
@@ -73,7 +73,7 @@ languages = {
replacements = {
"min_windows_version": {
"program": "${PROJECT_NAME}",
- "version": "7",
+ "version": "10",
},
"welcome_title": ("${DISPLAY_NAME}",),
"mb_intro": ("${PROJECT_NAME}",),
=====================================
projects/browser/windows-installer/common.nsh
=====================================
@@ -61,7 +61,7 @@
;--------------------------------
; Helper functions
Function CheckRequirements
- ${IfNot} ${AtLeastWin7}
+ ${IfNot} ${AtLeastWin10}
MessageBox MB_USERICON|MB_OK "$(min_windows_version)"
SetErrorLevel 1
Quit
=====================================
projects/browser/windows-installer/languages.nsh
=====================================
@@ -6,7 +6,8 @@
LangString add_shortcuts ${LANG_ENGLISH} "&Add Start menu and desktop icons"
; Use %(program)s instead of ${PROJECT_NAME} and %(version)s instead of 7
; when sending the string from localization.
- LangString min_windows_version ${LANG_ENGLISH} "${PROJECT_NAME} requires Windows 7 or later."
+ ; Remember to update also add-strings.py when bumping the Windows version.
+ LangString min_windows_version ${LANG_ENGLISH} "${PROJECT_NAME} requires Windows 10 or later."
LangString destination_exists ${LANG_ENGLISH} "The destination folder already exists. Do you want to continue anyway?"
; Mullvad Browser strings
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/d…
You're receiving this email because of your account on gitlab.torproject.org.
boklm pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
e5560888 by Morgan at 2024-07-30T21:05:34+00:00
Bug 41197: Modify nightly's update-responses to prevent upgrades on unsupported Windows and macOS versions
- - - - -
1 changed file:
- tools/signing/nightly/update-responses-base-config.yml
Changes:
=====================================
tools/signing/nightly/update-responses-base-config.yml
=====================================
@@ -18,14 +18,17 @@ versions:
nightly_version:
platformVersion: 115.1.0
detailsURL: https://nightlies.tbb.torproject.org/
+ # minSupportedOsVersion on macOS corresponds to the Darwin version ( https://en.wikipedia.org/wiki/Darwin_(operating_system) )
macos:
- minSupportedOSVersion: 16.0.0
+ # macOS v10.15.0
+ minSupportedOSVersion: 19.0.0
+ # minSupportedOsVersion on Windows corresponds to the operating system version ( https://docs.microsoft.com/en-us/windows/win32/sysinfo/operating-system-ver… )
windows-i686:
- minSupportedOSVersion: 6.1
- minSupportedInstructionSet: SSE2
+ # Windows 10
+ minSupportedOSVersion: 10.0
windows-x86_64:
- minSupportedOSVersion: 6.1
- minSupportedInstructionSet: SSE2
+ # Windows v10
+ minSupportedOSVersion: 10.0
linux-i686:
minSupportedInstructionSet: SSE2
linux-x86_64:
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/commit/e…
You're receiving this email because of your account on gitlab.torproject.org.
Pier Angelo Vendrame pushed to branch mullvad-browser-128.0esr-14.0-2 at The Tor Project / Applications / Mullvad Browser
Commits:
c973c48c by Pier Angelo Vendrame at 2024-07-30T14:45:53+02:00
MB 38: Mullvad Browser configuration
- - - - -
2462093b by Pier Angelo Vendrame at 2024-07-30T14:45:54+02: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
- - - - -
a0e6251a by Beatriz Rizental at 2024-07-30T15:01:08+02:00
fixup! MB 1: Mullvad Browser branding
- - - - -
8d0e6099 by Pier Angelo Vendrame at 2024-07-30T15:01:09+02: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.
- - - - -
2b1dca6b by Pier Angelo Vendrame at 2024-07-30T15:01:13+02:00
MB 63: Customize some about pages for Mullvad Browser
Also:
mullvad-browser#57: Purge unneeded about: pages
- - - - -
06b2c505 by Beatriz Rizental at 2024-07-30T15:01:19+02:00
fixup! MB 63: Customize some about pages for Mullvad Browser
- - - - -
ece4cf2f by Pier Angelo Vendrame at 2024-07-30T15:01:19+02:00
MB 37: Customization for the about dialog
- - - - -
3816bdc6 by Beatriz Rizental at 2024-07-30T17:51:28+02:00
fixup! MB 37: Customization for the about dialog
- - - - -
802a81b7 by Henry Wilkes at 2024-07-30T17:51:36+02:00
MB 39: Add home page about:mullvad-browser
- - - - -
eb3e9a4c by Beatriz Rizental at 2024-07-30T17:51:37+02:00
fixup! MB 39: Add home page about:mullvad-browser
- - - - -
6c91f268 by hackademix at 2024-07-30T17:51:38+02:00
MB 97: Remove UI cues to install new extensions.
- - - - -
5c428612 by hackademix at 2024-07-30T17:51:38+02:00
MB 47: uBlock Origin customization
- - - - -
978ba4f0 by Beatriz Rizental at 2024-07-30T17:51:39+02:00
fixup! MB 47: uBlock Origin customization
- - - - -
ffc45078 by Pier Angelo Vendrame at 2024-07-30T17:51:40+02: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.
- - - - -
8df34002 by Beatriz Rizental at 2024-07-30T17:51:40+02:00
fixup! MB 21: Disable the password manager
- - - - -
d5685d80 by Pier Angelo Vendrame at 2024-07-30T17:51:41+02:00
MB 112: Updater customization for Mullvad Browser
MB 71: Set the updater base URL to Mullvad domain
- - - - -
4f52e254 by Beatriz Rizental at 2024-07-30T17:51:41+02:00
fixup! MB 112: Updater customization for Mullvad Browser
- - - - -
a72bde96 by Nicolas Vigier at 2024-07-30T17:51:42+02:00
MB 79: Add Mullvad Browser MAR signing keys
MB 256: Add mullvad-browser nightly mar signing key
- - - - -
ac7a0cd1 by Pier Angelo Vendrame at 2024-07-30T17:51:42+02: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.
- - - - -
389150a5 by Pier Angelo Vendrame at 2024-07-30T17:51:43+02: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.
- - - - -
ca83366e by hackademix at 2024-07-30T17:51:44+02:00
MB 163: prevent uBlock Origin from being uninstalled/disabled
- - - - -
ca262991 by Richard Pospesel at 2024-07-30T17:51:44+02:00
MB 188: Customize Gitlab Issue and Merge templates
- - - - -
0b2c6394 by rui hildt at 2024-07-30T17:51:45+02:00
MB 213: Customize the search engines list
- - - - -
8d319f53 by Beatriz Rizental at 2024-07-30T17:51:45+02:00
fixup! MB 213: Customize the search engines list
- - - - -
35d1d01a by hackademix at 2024-07-30T17:51:46+02:00
MB 214: Enable cross-tab identity leak protection in "quiet" mode
- - - - -
ae34c89c by Pier Angelo Vendrame at 2024-07-30T17:51:46+02: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.
- - - - -
85eaf2cc by Pier Angelo Vendrame at 2024-07-30T17:51:47+02:00
MB 80: Enable Mullvad Browser as a default browser
- - - - -
6e132f09 by Beatriz Rizental at 2024-07-30T17:51:48+02:00
fixup! MB 80: Enable Mullvad Browser as a default browser
- - - - -
054003a2 by Pier Angelo Vendrame at 2024-07-30T17:51:48+02:00
MB 320: Temporarily disable WebRTC and WDBA on Windows.
WebRTC should be re-enabled when tor-browser#42758 is resolved, and and
the default browser agent when in general we make this feature work
again.
- - - - -
30 changed files:
- .gitlab/issue_templates/Emergency Security Issue.md
- + .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
The diff was not included because it is too large.
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/b9…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/b9…
You're receiving this email because of your account on gitlab.torproject.org.