Pier Angelo Vendrame pushed to branch tor-browser-115.16.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
1982c08d by Pier Angelo Vendrame at 2024-09-30T22:04:35+02:00
fixup! Bug 4234: Use the Firefox Update Process for Base Browser.
Bug 42747: Discard unsupported updates earlier.
Firefox's updater has a function to select updates, which checks mainly
the version number.
Therefore, a more recent update that is unsupported will be chosen over
a compatible one.
We patch this to be able to provide an alternative update path to
Windows 7.
- - - - -
ec92fd57 by Pier Angelo Vendrame at 2024-09-30T22:04:37+02:00
fixup! Bug 19121: reinstate the update.xml hash check
Revert "Bug 19121: reinstate the update.xml hash check"
This reverts commit 39a712fbaf18cb64b6dc601c71bac82718de1a01.
- - - - -
3 changed files:
- toolkit/mozapps/update/UpdateService.sys.mjs
- toolkit/mozapps/update/UpdateTelemetry.sys.mjs
- toolkit/mozapps/update/nsIUpdateService.idl
Changes:
=====================================
toolkit/mozapps/update/UpdateService.sys.mjs
=====================================
@@ -2127,8 +2127,6 @@ function UpdatePatch(patch) {
}
break;
case "finalURL":
- case "hashFunction":
- case "hashValue":
case "state":
case "type":
case "URL":
@@ -2148,8 +2146,6 @@ UpdatePatch.prototype = {
// over writing nsIUpdatePatch attributes.
_attrNames: [
"errorCode",
- "hashFunction",
- "hashValue",
"finalURL",
"selected",
"size",
@@ -2163,8 +2159,6 @@ UpdatePatch.prototype = {
*/
serialize: function UpdatePatch_serialize(updates) {
var patch = updates.createElementNS(URI_UPDATE_NS, "patch");
- patch.setAttribute("hashFunction", this.hashFunction);
- patch.setAttribute("hashValue", this.hashValue);
patch.setAttribute("size", this.size);
patch.setAttribute("type", this.type);
patch.setAttribute("URL", this.URL);
@@ -3737,18 +3731,20 @@ UpdateService.prototype = {
switch (aUpdate.type) {
case "major":
- if (!majorUpdate) {
+ if (!majorUpdate || majorUpdate.unsupported) {
majorUpdate = aUpdate;
} else if (
+ !aUpdate.unsupported &&
vc.compare(majorUpdate.appVersion, aUpdate.appVersion) <= 0
) {
majorUpdate = aUpdate;
}
break;
case "minor":
- if (!minorUpdate) {
+ if (!minorUpdate || minorUpdate.unsupported) {
minorUpdate = aUpdate;
} else if (
+ !aUpdate.unsupported &&
vc.compare(minorUpdate.appVersion, aUpdate.appVersion) <= 0
) {
minorUpdate = aUpdate;
@@ -5792,56 +5788,7 @@ Downloader.prototype = {
}
LOG("Downloader:_verifyDownload downloaded size == expected size.");
- let fileStream = Cc[
- "@mozilla.org/network/file-input-stream;1"
- ].createInstance(Ci.nsIFileInputStream);
- fileStream.init(
- destination,
- FileUtils.MODE_RDONLY,
- FileUtils.PERMS_FILE,
- 0
- );
-
- let digest;
- try {
- let hash = Cc["@mozilla.org/security/hash;1"].createInstance(
- Ci.nsICryptoHash
- );
- var hashFunction =
- Ci.nsICryptoHash[this._patch.hashFunction.toUpperCase()];
- if (hashFunction == undefined) {
- throw Components.Exception("", Cr.NS_ERROR_UNEXPECTED);
- }
- hash.init(hashFunction);
- hash.updateFromStream(fileStream, -1);
- // NOTE: For now, we assume that the format of _patch.hashValue is hex
- // encoded binary (such as what is typically output by programs like
- // sha1sum). In the future, this may change to base64 depending on how
- // we choose to compute these hashes.
- hash = hash.finish(false);
- digest = Array.from(hash, (c, i) =>
- hash.charCodeAt(i).toString(16).padStart(2, "0")
- ).join("");
- } catch (e) {
- LOG(
- "Downloader:_verifyDownload - failed to compute hash of the downloaded update archive"
- );
- digest = "";
- }
-
- fileStream.close();
-
- if (digest == this._patch.hashValue.toLowerCase()) {
- LOG("Downloader:_verifyDownload hashes match.");
- return true;
- }
-
- LOG("Downloader:_verifyDownload hashes do not match. ");
- AUSTLMY.pingDownloadCode(
- this.isCompleteUpdate,
- AUSTLMY.DWNLD_ERR_VERIFY_NO_HASH_MATCH
- );
- return false;
+ return true;
},
/**
@@ -6477,9 +6424,6 @@ Downloader.prototype = {
" is higher than patch size: " +
this._patch.size
);
- // It's important that we use a different code than
- // NS_ERROR_CORRUPTED_CONTENT so that tests can verify the difference
- // between a hash error and a wrong download error.
AUSTLMY.pingDownloadCode(
this.isCompleteUpdate,
AUSTLMY.DWNLD_ERR_PATCH_SIZE_LARGER
@@ -6498,9 +6442,6 @@ Downloader.prototype = {
" is not equal to expected patch size: " +
this._patch.size
);
- // It's important that we use a different code than
- // NS_ERROR_CORRUPTED_CONTENT so that tests can verify the difference
- // between a hash error and a wrong download error.
AUSTLMY.pingDownloadCode(
this.isCompleteUpdate,
AUSTLMY.DWNLD_ERR_PATCH_SIZE_NOT_EQUAL
=====================================
toolkit/mozapps/update/UpdateTelemetry.sys.mjs
=====================================
@@ -190,7 +190,6 @@ export var AUSTLMY = {
DWNLD_ERR_VERIFY_NO_REQUEST: 13,
DWNLD_ERR_VERIFY_PATCH_SIZE_NOT_EQUAL: 14,
DWNLD_ERR_WRITE_FAILURE: 15,
- DWNLD_ERR_VERIFY_NO_HASH_MATCH: 16,
// Temporary failure code to see if there are failures without an update phase
DWNLD_UNKNOWN_PHASE_ERR_WRITE_FAILURE: 40,
=====================================
toolkit/mozapps/update/nsIUpdateService.idl
=====================================
@@ -39,17 +39,6 @@ interface nsIUpdatePatch : nsISupports
*/
attribute AString finalURL;
- /**
- * The hash function to use when determining this file's integrity
- */
- attribute AString hashFunction;
-
- /**
- * The value of the hash function named above that should be computed if
- * this file is not corrupt.
- */
- attribute AString hashValue;
-
/**
* The size of this file, in bytes.
*/
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/ebb976…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/compare/ebb976…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch tor-browser-115.16.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
ebb9762e by Henry Wilkes at 2024-09-30T17:59:03+00:00
fixup! Bug 43098: Year End Campaign 2024.
Bug 43149: Use special YEC 2024 donate url.
- - - - -
1 changed file:
- browser/components/abouttor/content/aboutTor.js
Changes:
=====================================
browser/components/abouttor/content/aboutTor.js
=====================================
@@ -277,8 +277,9 @@ const YecWidget = {
}
const donateLink = document.getElementById("yec-2024-donate-link");
const base = "https://www.torproject.org/donate";
- // TODO: Updated link for YEC (using _locale?).
- donateLink.href = base;
+ donateLink.href = this._locale
+ ? `${base}/donate-${this._locale}-yec2024`
+ : base;
},
/**
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/ebb9762…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/ebb9762…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch tor-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits:
94cc83ed by Henry Wilkes at 2024-09-30T16:33:54+01:00
fixup! Bug 43098: Year End Campaign 2024.
Bug 43149: Use special YEC 2024 donate url.
- - - - -
1 changed file:
- browser/components/abouttor/content/aboutTor.js
Changes:
=====================================
browser/components/abouttor/content/aboutTor.js
=====================================
@@ -286,8 +286,9 @@ const YecWidget = {
}
const donateLink = document.getElementById("yec-2024-donate-link");
const base = "https://www.torproject.org/donate";
- // TODO: Updated link for YEC (using _locale?).
- donateLink.href = base;
+ donateLink.href = this._locale
+ ? `${base}/donate-${this._locale}-yec2024`
+ : base;
},
/**
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/94cc83e…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/94cc83e…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch base-browser-115.16.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
c34335af by hackademix at 2024-09-30T17:13:43+00:00
Bug 42832: Download spam prevention exemption for browser extensions.
- - - - -
1 changed file:
- uriloader/exthandler/nsExternalHelperAppService.cpp
Changes:
=====================================
uriloader/exthandler/nsExternalHelperAppService.cpp
=====================================
@@ -1895,6 +1895,12 @@ bool nsExternalAppHandler::IsDownloadSpam(nsIChannel* aChannel) {
nsCOMPtr<nsIPermissionManager> permissionManager =
mozilla::services::GetPermissionManager();
nsCOMPtr<nsIPrincipal> principal = loadInfo->TriggeringPrincipal();
+
+ // Always allow WebExtensions
+ if (principal && principal->SchemeIs("moz-extension")) {
+ return false;
+ }
+
bool exactHostMatch = false;
constexpr auto type = "automatic-download"_ns;
nsCOMPtr<nsIPermission> permission;
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c34335a…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/c34335a…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch tor-browser-115.16.0esr-13.5-1 at The Tor Project / Applications / Tor Browser
Commits:
9dfb89a9 by hackademix at 2024-09-30T17:12:48+00:00
Bug 42832: Download spam prevention exemption for browser extensions.
- - - - -
1 changed file:
- uriloader/exthandler/nsExternalHelperAppService.cpp
Changes:
=====================================
uriloader/exthandler/nsExternalHelperAppService.cpp
=====================================
@@ -1895,6 +1895,12 @@ bool nsExternalAppHandler::IsDownloadSpam(nsIChannel* aChannel) {
nsCOMPtr<nsIPermissionManager> permissionManager =
mozilla::services::GetPermissionManager();
nsCOMPtr<nsIPrincipal> principal = loadInfo->TriggeringPrincipal();
+
+ // Always allow WebExtensions
+ if (principal && principal->SchemeIs("moz-extension")) {
+ return false;
+ }
+
bool exactHostMatch = false;
constexpr auto type = "automatic-download"_ns;
nsCOMPtr<nsIPermission> permission;
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9dfb89a…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/9dfb89a…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch mullvad-browser-128.3.0esr-14.0-1 at The Tor Project / Applications / Mullvad Browser
Commits:
8fc39062 by Pier Angelo Vendrame at 2024-09-26T23:15:10+02:00
MB 38: Mullvad Browser configuration
- - - - -
a2cba9dd by Morgan at 2024-09-26T23:15:14+02:00
fixup! MB 38: Mullvad Browser configuration
- - - - -
c5afee5d by Richard Pospesel at 2024-09-26T23:15:15+02:00
fixup! MB 38: Mullvad Browser configuration
Bug 222: Hide 'List all tabs' when the tabs don't overflow
- - - - -
2a24e82a by Pier Angelo Vendrame at 2024-09-26T23:15:15+02:00
fixup! MB 38: Mullvad Browser configuration
MB 344: Remove media.navigator.enabled = false on MB.
RFP spoof the values protected by this preference.
We do not do the same on Tor Browser because this functionality depends
on WebRTC, which is disabled at build time on TBB.
- - - - -
23191f67 by Pier Angelo Vendrame at 2024-09-26T23:15:15+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
- - - - -
1d865fd0 by Pier Angelo Vendrame at 2024-09-26T23:15:16+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.
- - - - -
4d3ac4fa by Pier Angelo Vendrame at 2024-09-26T23:15:16+02:00
MB 63: Customize some about pages for Mullvad Browser
Also:
mullvad-browser#57: Purge unneeded about: pages
- - - - -
15b4f467 by Pier Angelo Vendrame at 2024-09-26T23:15:16+02:00
MB 37: Customization for the about dialog
- - - - -
e8e6652d by Henry Wilkes at 2024-09-26T23:15:17+02:00
MB 39: Add home page about:mullvad-browser
- - - - -
45b7ca93 by hackademix at 2024-09-26T23:15:17+02:00
MB 97: Remove UI cues to install new extensions.
- - - - -
00d91791 by hackademix at 2024-09-26T23:15:17+02:00
MB 47: uBlock Origin customization
- - - - -
07bf113a by Pier Angelo Vendrame at 2024-09-26T23:15:18+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.
- - - - -
79a49471 by Pier Angelo Vendrame at 2024-09-26T23:15:18+02:00
MB 112: Updater customization for Mullvad Browser
MB 71: Set the updater base URL to Mullvad domain
- - - - -
94842cc1 by Nicolas Vigier at 2024-09-26T23:15:19+02:00
MB 79: Add Mullvad Browser MAR signing keys
MB 256: Add mullvad-browser nightly mar signing key
- - - - -
dae4c978 by Pier Angelo Vendrame at 2024-09-26T23:15:19+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.
- - - - -
6f59241f by Pier Angelo Vendrame at 2024-09-27T00:00:26+00: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.
- - - - -
e84a20e4 by hackademix at 2024-09-27T00:00:26+00:00
MB 163: prevent uBlock Origin from being uninstalled/disabled
- - - - -
350b19e0 by Richard Pospesel at 2024-09-27T00:00:27+00:00
MB 188: Customize Gitlab Issue and Merge templates
- - - - -
cbec5612 by rui hildt at 2024-09-27T00:00:27+00:00
MB 213: Customize the search engines list
- - - - -
79721f60 by Pier Angelo Vendrame at 2024-09-27T00:00:28+00:00
squash! MB 213: Customize the search engines list
MB 328: Refactor the search engine patch.
Upstream switched to a completely different search engine configuration
between ESR 115 and ESR 128.
We moved our configuration to a couple of JSON files that do not follow
upstream's schemas, as they are overcomplicated for our needs.
Also, we keep the old search engine extensions for now, as upstream
also kept them, and planned of removing them with Bug 1885953.
- - - - -
832f998a by hackademix at 2024-09-27T00:00:28+00:00
MB 214: Enable cross-tab identity leak protection in "quiet" mode
- - - - -
151ac295 by Pier Angelo Vendrame at 2024-09-27T00:00:28+00:00
MB 80: Enable Mullvad Browser as a default browser
- - - - -
57d2cd5a by Pier Angelo Vendrame at 2024-09-27T00:00:29+00: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.
- - - - -
564c9f37 by Henry Wilkes at 2024-09-27T00:00:29+00:00
MB 329: Customize toolbar for mullvad-browser.
- - - - -
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/46…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/46…
You're receiving this email because of your account on gitlab.torproject.org.
morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
d4ed8d75 by Pier Angelo Vendrame at 2024-09-26T20:03:12+02:00
Bug 41248: Updated bundled fonts.
- - - - -
1 changed file:
- projects/fonts/config
Changes:
=====================================
projects/fonts/config
=====================================
@@ -5,8 +5,8 @@ container:
# We just copy files around, no need to use a container.
use_container: 0
var:
- # noto-monthly-release-23.9.1
- noto_git_hash: c890f6fec6fa37740f23fffdd2a28e156f3837a3
+ # noto-monthly-release-24.9.1
+ noto_git_hash: eeb71fdda20300eb0891badeed5e64850e2cbc64
# Use this way so that the script that downloads the fonts can access the
# lists of all the targets.
noto_fonts_common:
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.
morgan pushed to branch maint-13.5a10 at The Tor Project / Applications / tor-browser-build
Commits:
f53f6f22 by Nicolas Vigier at 2024-09-26T17:04:02+02:00
Bug 41244: Update update_responses directory
https://gitlab.torproject.org/tpo/applications/tor-browser-build/-/issues/4…
- - - - -
1 changed file:
- tools/signing/upload-update_responses-to-staticiforme
Changes:
=====================================
tools/signing/upload-update_responses-to-staticiforme
=====================================
@@ -23,7 +23,7 @@ git checkout main
git pull --ff-only
test -n "$(git status --porcelain=v1 | grep -v '^?')" \
&& exit_error 'update_responses_repository_dir has modified files'
-is_project torbrowser && cd update_3
+is_project torbrowser && mkdir -p update_pre13.5a10 && cd update_pre13.5a10
is_project mullvadbrowser && cd update_1
old_ur=$(mktemp -d)
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.
morgan pushed to branch mullvad-browser-115.16.0esr-13.5-1 at The Tor Project / Applications / Mullvad Browser
Commits:
a7f08a59 by Pier Angelo Vendrame at 2024-09-25T22:05:22+02:00
MB 38: Mullvad Browser configuration
- - - - -
893df0db by Pier Angelo Vendrame at 2024-09-25T22:05:27+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
- - - - -
314bdeba by Pier Angelo Vendrame at 2024-09-25T22:05:28+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.
- - - - -
dcddfc59 by Pier Angelo Vendrame at 2024-09-25T22:05:28+02:00
MB 63: Customize some about pages for Mullvad Browser
Also:
mullvad-browser#57: Purge unneeded about: pages
- - - - -
e9b6775e by Pier Angelo Vendrame at 2024-09-25T22:05:29+02:00
MB 37: Customization for the about dialog
- - - - -
9df5c932 by Henry Wilkes at 2024-09-25T22:05:30+02:00
MB 39: Add home page about:mullvad-browser
- - - - -
801f75f4 by hackademix at 2024-09-25T22:05:31+02:00
MB 97: Remove UI cues to install new extensions.
- - - - -
8fdca813 by hackademix at 2024-09-25T22:05:32+02:00
MB 47: uBlock Origin customization
- - - - -
a1228f46 by Pier Angelo Vendrame at 2024-09-25T22:05:34+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.
- - - - -
644ddf98 by Pier Angelo Vendrame at 2024-09-25T22:05:36+02:00
MB 112: Updater customization for Mullvad Browser
MB 71: Set the updater base URL to Mullvad domain
- - - - -
79fb91d8 by Nicolas Vigier at 2024-09-25T22:05:37+02:00
MB 79: Add Mullvad Browser MAR signing keys
MB 256: Add mullvad-browser nightly mar signing key
- - - - -
2c34fb25 by Pier Angelo Vendrame at 2024-09-25T22:05:38+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.
- - - - -
d03f64ff by Pier Angelo Vendrame at 2024-09-25T22:05:40+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.
- - - - -
0ad06a41 by hackademix at 2024-09-25T22:05:41+02:00
MB 163: prevent uBlock Origin from being uninstalled/disabled
- - - - -
b0d9e065 by Richard Pospesel at 2024-09-25T22:05:44+02:00
MB 188: Customize Gitlab Issue and Merge templates
- - - - -
db158a92 by rui hildt at 2024-09-25T22:05:45+02:00
MB 213: Customize the search engines list
- - - - -
60fdb61a by hackademix at 2024-09-25T22:05:47+02:00
MB 214: Enable cross-tab identity leak protection in "quiet" mode
- - - - -
db5a9f1e by Pier Angelo Vendrame at 2024-09-25T22:05:48+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.
- - - - -
f32c051f by Pier Angelo Vendrame at 2024-09-25T22:05:50+02:00
MB 80: Enable Mullvad Browser as a default browser
- - - - -
78dbae29 by Dan Ballard at 2024-09-25T22:05:51+02:00
MB 290: Add default bookmarks in alpha channel for testing
- - - - -
d637f1ef by june wilde at 2024-09-25T22:05:51+02:00
MB 305: Disable setting default browser on Windows
Until we can pull in upstream changes to fix breakage in setting
the Mullvad Browser as default in Windows 10/11 we're disabling
the ability to do so via about:preferences as well as via the
startup query dialog
- - - - -
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/ac…
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/compare/ac…
You're receiving this email because of your account on gitlab.torproject.org.