diff options
author | Ruben Rodriguez <ruben@trisquel.info> | 2022-09-08 20:54:49 -0400 |
---|---|---|
committer | Ruben Rodriguez <ruben@trisquel.info> | 2022-09-08 20:54:49 -0400 |
commit | 0a9e525911bb43257f041d6d21d4789dd30152b2 (patch) | |
tree | 4fddd224263cc4312d15c0875f119cb161da30cb /data/patches | |
parent | c33290316ff738f5d92f8c3755ce1a220e623900 (diff) |
Updated build scripts to match upstream changes
Diffstat (limited to 'data/patches')
-rw-r--r-- | data/patches/disable-settings-services.patch | 16 | ||||
-rw-r--r-- | data/patches/hide-protections-dashboard.patch | 31 |
2 files changed, 0 insertions, 47 deletions
diff --git a/data/patches/disable-settings-services.patch b/data/patches/disable-settings-services.patch deleted file mode 100644 index a79d0e4..0000000 --- a/data/patches/disable-settings-services.patch +++ /dev/null @@ -1,16 +0,0 @@ ---- a/services/settings/Utils.jsm.orig 2021-08-17 16:32:27.475448626 -0400 -+++ b/services/settings/Utils.jsm 2021-08-17 16:32:40.859457980 -0400 -@@ -60,12 +60,7 @@ - ); - const isXpcshell = env.exists("XPCSHELL_TEST_PROFILE_DIR"); - const isNotThunderbird = AppConstants.MOZ_APP_NAME != "thunderbird"; -- return AppConstants.RELEASE_OR_BETA && -- !Cu.isInAutomation && -- !isXpcshell && -- isNotThunderbird -- ? "https://firefox.settings.services.mozilla.com/v1" -- : gServerURL; -+ return gServerURL; - }, - - CHANGES_PATH: "/buckets/monitor/collections/changes/changeset", diff --git a/data/patches/hide-protections-dashboard.patch b/data/patches/hide-protections-dashboard.patch deleted file mode 100644 index d1eb999..0000000 --- a/data/patches/hide-protections-dashboard.patch +++ /dev/null @@ -1,31 +0,0 @@ ---- a/browser/base/content/appmenu-viewcache.inc.xhtml.orig 2021-08-17 16:54:44.323100518 -0400 -+++ b/browser/base/content/appmenu-viewcache.inc.xhtml 2021-08-17 16:55:42.131053772 -0400 -@@ -24,7 +24,7 @@ - oncommand="gSync.toggleAccountPanel(this, event)"/> - </toolbaritem> - <toolbarseparator class="sync-ui-item"/> -- <toolbaritem> -+ <toolbaritem hidden="true"> - <toolbarbutton id="appMenu-protection-report-button" - class="subviewbutton subviewbutton-iconic" - oncommand="gProtectionsHandler.openProtections(); gProtectionsHandler.recordClick('open_full_report', null, 'app_menu');"> -@@ -35,7 +35,7 @@ - </label> - </toolbarbutton> - </toolbaritem> -- <toolbarseparator id="appMenu-tp-separator"/> -+ <toolbarseparator id="appMenu-tp-separator" hidden="true"/> - <toolbarbutton id="appMenu-new-window-button" - class="subviewbutton subviewbutton-iconic" - data-l10n-id="appmenuitem-new-window" ---- a/browser/base/content/browser-siteProtections.js.orig 2021-08-17 16:52:32.107227395 -0400 -+++ b/browser/base/content/browser-siteProtections.js 2021-08-17 16:52:39.303219686 -0400 -@@ -1558,7 +1558,7 @@ - this._trackingProtectionIconContainer.hidden = true; - return; - } -- this._trackingProtectionIconContainer.hidden = false; -+ this._trackingProtectionIconContainer.hidden = true; - - // Check whether the user has added an exception for this site. - this.hasException = ContentBlockingAllowList.includes( |