mirror of
https://codeberg.org/librewolf/source.git
synced 2024-12-22 05:33:03 -05:00
sync up some changes between common and source
This commit is contained in:
parent
d5f033b799
commit
e8aeb1c297
9 changed files with 4461 additions and 87 deletions
4338
patches/deprecated/search-config.patch
Normal file
4338
patches/deprecated/search-config.patch
Normal file
File diff suppressed because it is too large
Load diff
|
@ -13,7 +13,7 @@ index 269dcb2..ed7c31d 100644
|
|||
- "report-site-issue",
|
||||
"pictureinpicture",
|
||||
"proxy-failover",
|
||||
]
|
||||
"search-detection",
|
||||
diff --git a/browser/locales/Makefile.in b/browser/locales/Makefile.in
|
||||
index 496379c..dd6f359 100644
|
||||
--- a/browser/locales/Makefile.in
|
||||
|
|
|
@ -32,7 +32,7 @@
|
|||
+ continue;
|
||||
+ }
|
||||
+
|
||||
if (toolbar.id == "PersonalToolbar" && gBookmarksToolbar2h2020) {
|
||||
if (toolbar.id == "PersonalToolbar") {
|
||||
let menu = BookmarkingUI.buildBookmarksToolbarSubmenu(toolbar);
|
||||
popup.insertBefore(menu, firstMenuItem);
|
||||
--- a/browser/components/places/content/places.xhtml
|
||||
|
@ -5236,7 +5236,7 @@
|
|||
+
|
||||
EXPORTS.mozilla += [
|
||||
"BasicEvents.h",
|
||||
"CommandList.h",
|
||||
"ColorScheme.h",
|
||||
--- /dev/null
|
||||
+++ b/widget/nsINativeMenuService.h
|
||||
@@ -0,0 +1,39 @@
|
||||
|
|
|
@ -76,6 +76,42 @@ async function init(aEvent) {
|
|||
|
||||
await document.l10n.translateElements([versionField]);
|
||||
|
||||
// Show a release notes link if we have a URL.
|
||||
let relNotesLink = document.getElementById("releasenotes");
|
||||
let relNotesPrefType = Services.prefs.getPrefType(
|
||||
"app.releaseNotesURL.aboutDialog"
|
||||
);
|
||||
if (relNotesPrefType != Services.prefs.PREF_INVALID) {
|
||||
let relNotesURL = Services.urlFormatter.formatURLPref(
|
||||
"app.releaseNotesURL.aboutDialog"
|
||||
);
|
||||
if (relNotesURL != "about:blank") {
|
||||
relNotesLink.href = relNotesURL;
|
||||
relNotesLink.hidden = false;
|
||||
}
|
||||
}
|
||||
|
||||
if (AppConstants.MOZ_UPDATER) {
|
||||
gAppUpdater = new appUpdater({ buttonAutoFocus: true });
|
||||
|
||||
let channelLabel = document.getElementById("currentChannel");
|
||||
let currentChannelText = document.getElementById("currentChannelText");
|
||||
channelLabel.value = UpdateUtils.UpdateChannel;
|
||||
let hasWinPackageId = false;
|
||||
try {
|
||||
hasWinPackageId = Services.sysinfo.getProperty("hasWinPackageId");
|
||||
} catch (_ex) {
|
||||
// The hasWinPackageId property doesn't exist; assume it should be false.
|
||||
}
|
||||
if (/^release($|\-)/.test(channelLabel.value) || hasWinPackageId) {
|
||||
currentChannelText.hidden = true;
|
||||
}
|
||||
}
|
||||
|
||||
if (AppConstants.IS_ESR) {
|
||||
document.getElementById("release").hidden = false;
|
||||
}
|
||||
|
||||
window.sizeToContent();
|
||||
|
||||
if (AppConstants.platform == "macosx") {
|
||||
|
@ -85,3 +121,4 @@ async function init(aEvent) {
|
|||
);
|
||||
}
|
||||
}
|
||||
|
|
@ -6,6 +6,7 @@
|
|||
|
||||
<?xml-stylesheet href="chrome://global/skin/global.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://browser/content/aboutDialog.css" type="text/css"?>
|
||||
<?xml-stylesheet href="chrome://branding/content/aboutDialog.css" type="text/css"?>
|
||||
|
||||
<window xmlns:html="http://www.w3.org/1999/xhtml"
|
||||
xmlns="http://www.mozilla.org/keymaster/gatekeeper/there.is.only.xul"
|
||||
|
|
|
@ -12,5 +12,3 @@ browser.jar:
|
|||
content/branding/logo.svg
|
||||
content/branding/identity-icons-brand.svg
|
||||
content/branding/horizontal-lockup.svg
|
||||
content/branding/about-logo.png (../empty.png)
|
||||
content/branding/firefox-wordmark.svg (../empty.svg)
|
||||
|
|
Loading…
Reference in a new issue