-
-
Notifications
You must be signed in to change notification settings - Fork 653
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
41dd9b6
commit 8f7b850
Showing
10 changed files
with
73 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule l10n
updated
11 files
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Submodule zen-components
updated
from 769266 to 64768b
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/toolkit/modules/AppConstants.sys.mjs b/toolkit/modules/AppConstants.sys.mjs | ||
index a20e45c6135d24e42594700fe57184a560facd0f..7650dd88dc67d774c3af05704f2539ff92e21be2 100644 | ||
--- a/toolkit/modules/AppConstants.sys.mjs | ||
+++ b/toolkit/modules/AppConstants.sys.mjs | ||
@@ -338,6 +338,8 @@ export var AppConstants = Object.freeze({ | ||
MOZ_UPDATE_CHANNEL: "@MOZ_UPDATE_CHANNEL@", | ||
MOZ_WIDGET_TOOLKIT: "@MOZ_WIDGET_TOOLKIT@", | ||
|
||
+ ZEN_FIREFOX_VERSION: "@ZEN_FIREFOX_VERSION@", | ||
+ | ||
DEBUG_JS_MODULES: "@DEBUG_JS_MODULES@", | ||
|
||
MOZ_BING_API_CLIENTID: "@MOZ_BING_API_CLIENTID@", |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
diff --git a/toolkit/modules/moz.build b/toolkit/modules/moz.build | ||
index 6ba1e92026f6f1618ce3a477f74bb6d0fa20f7c1..ccf3fa076771da7c9a5cb2bb732558cb73d810af 100644 | ||
--- a/toolkit/modules/moz.build | ||
+++ b/toolkit/modules/moz.build | ||
@@ -281,6 +281,7 @@ for var in ( | ||
"DLL_SUFFIX", | ||
"DEBUG_JS_MODULES", | ||
"OMNIJAR_NAME", | ||
+ "ZEN_FIREFOX_VERSION" | ||
): | ||
DEFINES[var] = CONFIG[var] or "" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
diff --git a/toolkit/mozapps/extensions/AddonManager.sys.mjs b/toolkit/mozapps/extensions/AddonManager.sys.mjs | ||
index 2f855e6e48f420e3782d3be31cfdfa6c40db479b..911a6494812f0496ac928489244f2ac7bf0ed025 100644 | ||
--- a/toolkit/mozapps/extensions/AddonManager.sys.mjs | ||
+++ b/toolkit/mozapps/extensions/AddonManager.sys.mjs | ||
@@ -1214,7 +1214,7 @@ var AddonManagerInternal = { | ||
ITEM_VERSION: aAddon.version, | ||
ITEM_STATUS: addonStatus, | ||
APP_ID: Services.appinfo.ID, | ||
- APP_VERSION: aAppVersion ? aAppVersion : Services.appinfo.version, | ||
+ APP_VERSION: AppConstants.ZEN_FIREFOX_VERSION, | ||
REQ_VERSION: UPDATE_REQUEST_VERSION, | ||
APP_OS: Services.appinfo.OS, | ||
APP_ABI: Services.appinfo.XPCOMABI, |