0
Fork 0
mirror of https://codeberg.org/librewolf/source.git synced 2024-12-22 21:53:31 -05:00

Merge branch 'native-registry-path' into 'main'

add patch to use unique registry path for native messaging hosts

See merge request librewolf-community/browser/source!30
This commit is contained in:
stanzabird 2022-05-03 20:50:10 +00:00
commit 2ab710ed00
2 changed files with 14 additions and 0 deletions

View file

@ -7,6 +7,7 @@ patches/disable-data-reporting-at-compile-time.patch
patches/hide-passwordmgr.patch patches/hide-passwordmgr.patch
patches/librewolf-pref-pane.patch patches/librewolf-pref-pane.patch
patches/mozilla_dirs.patch patches/mozilla_dirs.patch
patches/native-messaging-registry-path.patch
patches/remove_addons.patch patches/remove_addons.patch
patches/sed-patches/allow-searchengines-non-esr.patch patches/sed-patches/allow-searchengines-non-esr.patch
patches/sed-patches/disable-pocket.patch patches/sed-patches/disable-pocket.patch

View file

@ -0,0 +1,13 @@
diff --git a/toolkit/components/extensions/NativeManifests.jsm b/toolkit/components/extensions/NativeManifests.jsm
index 5e8e0dc..a0d4ea5 100644
--- a/toolkit/components/extensions/NativeManifests.jsm
+++ b/toolkit/components/extensions/NativeManifests.jsm
@@ -31,7 +31,7 @@ const TYPES = {
const NATIVE_MANIFEST_SCHEMA =
"chrome://extensions/content/schemas/native_manifest.json";
-const REGPATH = "Software\\Mozilla";
+const REGPATH = "Software\\LibreWolf";
var NativeManifests = {
_initializePromise: null,