Allow unsigned addons to be installed (closes https://github.com/zen-browser/desktop/issues/2258)

This commit is contained in:
mr. M
2024-10-30 08:52:48 +01:00
parent 0552c2f245
commit 10cd70e858
2 changed files with 12 additions and 2 deletions

View File

@@ -170,7 +170,8 @@ pref('browser.migrate.opera.enabled', true);
// DNS
// pref('network.trr.mode', 5);
pref('xpinstall.signatures.required', false);
// security: They must enable this themselves, to avoid people downloading malware
//pref('xpinstall.signatures.required', false);
// Experimental Zen Features
// Strategy to use for bytecode cache (Thanks https://github.com/gunir)

View File

@@ -1,5 +1,5 @@
diff --git a/toolkit/moz.configure b/toolkit/moz.configure
index 011eee093dcf77c3c8ad3cd20188b61457d8dc09..d6ffe47cf4d1dfe7a49d7e5f5d84c162b8589cc7 100644
index 06281a55f43ddff4f4d4a09ba05e9a830a221415..269728dccdd8a286b563a5d20da5280b7b3b1639 100644
--- a/toolkit/moz.configure
+++ b/toolkit/moz.configure
@@ -81,6 +81,9 @@ option(
@@ -25,3 +25,12 @@ index 011eee093dcf77c3c8ad3cd20188b61457d8dc09..d6ffe47cf4d1dfe7a49d7e5f5d84c162
return True
@@ -2036,7 +2039,7 @@ set_define("A11Y_LOG", True, when=a11y_log)
# ==============================================================
@depends(milestone)
def require_signing(milestone):
- return milestone.is_release_or_beta and not milestone.is_esr
+ return False
option(