summaryrefslogtreecommitdiff
path: root/data/patches/dont-pin-search-engines-to-top-sites.patch
diff options
context:
space:
mode:
authorMark H Weaver <mhw@netris.org>2020-08-17 02:32:09 -0400
committerMark H Weaver <mhw@netris.org>2020-09-06 13:17:46 -0400
commit1fffb85edab4533b87b34dd24c5144d6748cb594 (patch)
tree1811c36439167b211125e39541ac95e1117939c5 /data/patches/dont-pin-search-engines-to-top-sites.patch
parent15a7c3d991a670b6489d4f432b52a188358f4ca5 (diff)
Preliminary update to 78.2.0.
* data/branding/icecat-wordmark.svg: Move to ... * data/branding/icecat/content/icecat-wordmark.svg: ... here. * data/branding/icecat/content/jar.mn: Add icecat-wordmark.svg. * data/buildscripts/mozconfig-common: Add system directories to the set of addon scopes that need not be signed by Mozilla, and allow addon sideloading as well. Remove --disable-mainenance-service build option, which is no longer accepted. * data/buildscripts/mozconfig-gnulinux: Remove --disable-gconf build option, which is no longer accepted. * data/patches/default-search-duckduckgo.patch, dont-pin-search-engines-to-top-sites.patch, data/patches/duckduckgo-no-params.patch, data/patches/fix-data-reporting-check.patch, data/patches/icecat-about-dialog.patch: Adapt to apply cleanly to v78. * data/patches/moz-configure-changes.patch: Disable MOZ_NORMANDY. * data/patches/icecat-preferences.patch: Remove, pending rewrite. * data/settings.js: Add several new IceCat-specific default settings. * makeicecat: Adapt to v78.
Diffstat (limited to 'data/patches/dont-pin-search-engines-to-top-sites.patch')
-rw-r--r--data/patches/dont-pin-search-engines-to-top-sites.patch29
1 files changed, 0 insertions, 29 deletions
diff --git a/data/patches/dont-pin-search-engines-to-top-sites.patch b/data/patches/dont-pin-search-engines-to-top-sites.patch
deleted file mode 100644
index 762a240..0000000
--- a/data/patches/dont-pin-search-engines-to-top-sites.patch
+++ /dev/null
@@ -1,29 +0,0 @@
---- a/browser/components/newtab/lib/ActivityStream.jsm.orig 1980-01-01 18:59:51.000000000 -0500
-+++ b/browser/components/newtab/lib/ActivityStream.jsm 2019-11-17 01:16:54.431504079 -0500
-@@ -155,24 +155,8 @@
- }],
- ["improvesearch.topSiteSearchShortcuts.searchEngines", {
- title: "An ordered, comma-delimited list of search shortcuts that we should try and pin",
-- // This pref is dynamic as the shortcuts vary depending on the region
-- getValue: ({geo}) => {
-- if (!geo) {
-- return "";
-- }
-- const searchShortcuts = [];
-- if (geo === "CN") {
-- searchShortcuts.push("baidu");
-- } else if (["BY", "KZ", "RU", "TR"].includes(geo)) {
-- searchShortcuts.push("yandex");
-- } else {
-- searchShortcuts.push("google");
-- }
-- if (["DE", "FR", "GB", "IT", "JP", "US"].includes(geo)) {
-- searchShortcuts.push("amazon");
-- }
-- return searchShortcuts.join(",");
-- },
-+ // This pref is dynamic as the shortcuts could vary depending on the region
-+ getValue: ({geo}) => { return ""; },
- }],
- ["improvesearch.topSiteSearchShortcuts.havePinned", {
- title: "A comma-delimited list of search shortcuts that have previously been pinned",