libre.patch 1.4 KB

12345678910111213141516171819202122232425
  1. --- epiphany.orig/data/org.gnome.epiphany.gschema.xml 2019-04-27 00:17:50.060428000 -0500
  2. +++ epiphany/data/org.gnome.epiphany.gschema.xml 2019-04-27 00:17:50.360428000 -0500
  3. @@ -26,9 +26,7 @@
  4. <default l10n="messages">
  5. <!-- TRANSLATORS: These are the prepopulated search engines. You should
  6. add country-specific URL query parameters if appropriate. -->
  7. - [('DuckDuckGo', 'https://duckduckgo.com/?q=%s&amp;t=epiphany', '!ddg'),
  8. - ('Google', 'https://www.google.com/search?q=%s', '!g'),
  9. - ('Bing', 'https://www.bing.com/search?q=%s', '!b')]
  10. + [('DuckDuckGo', 'https://duckduckgo.com/html/?q=%s&amp;t=epiphany', '!ddg')]
  11. </default>
  12. <summary>Default search engines.</summary>
  13. <description>List of the default search engines. It is an array in which each search engine is described by a name, an address, and a bang (shortcut).</description>
  14. --- epiphany.orig/lib/ephy-search-engine-manager.c 2019-04-27 00:17:49.860428000 -0500
  15. +++ epiphany/lib/ephy-search-engine-manager.c 2019-04-27 00:55:14.840404975 -0500
  16. @@ -27,7 +27,7 @@
  17. #include "ephy-settings.h"
  18. #include "ephy-prefs.h"
  19. -#define FALLBACK_ADDRESS "https://duckduckgo.com/?q=%s&t=epiphany"
  20. +#define FALLBACK_ADDRESS "https://duckduckgo.com/html/?q=%s&t=epiphany"
  21. enum {
  22. SEARCH_ENGINES_CHANGED,