Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Unverified Commit b05d50bc authored by csagan5's avatar csagan5
Browse files

Release 76.0.3809.85

parent 07985cf5
Loading
Loading
Loading
Loading
+7 −0
Original line number Diff line number Diff line
# 76.0.3809.85
* add flag to toggle Network Service
* disable Network Service by default
* do not record UMA for network errors
* use fixed User Agent and Android OS version
* dropped patch for history requirement of user gesture

# 75.0.3770.139
* disable media router and remoting by default (fixes https://github.com/bromite/bromite/issues/281)
* enable CFI in builds
+1305 −585

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
@@ -25,7 +25,7 @@ Report AV1 as playable on Android
diff --git a/media/base/mime_util_internal.cc b/media/base/mime_util_internal.cc
--- a/media/base/mime_util_internal.cc
+++ b/media/base/mime_util_internal.cc
@@ -539,9 +539,13 @@ bool MimeUtil::IsCodecSupportedOnAndroid(
@@ -542,9 +542,13 @@ bool MimeUtil::IsCodecSupportedOnAndroid(
     case THEORA:
       return false;
 
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ disable from all its searches RLZ and field experiments querystring parameters.
diff --git a/components/search_engines/prepopulated_engines.json b/components/search_engines/prepopulated_engines.json
--- a/components/search_engines/prepopulated_engines.json
+++ b/components/search_engines/prepopulated_engines.json
@@ -127,6 +127,27 @@
@@ -126,6 +126,27 @@
       "id": 1
     },
 
+8 −17
Original line number Diff line number Diff line
@@ -5,29 +5,20 @@ Subject: Add Qwant search engine
Specify image URL in upstream engine definition
Make search engine selectable in default list
---
 .../search_engines/prepopulated_engines.json       |   3 +-
 .../search_engines/prepopulated_engines.json       |   1 +
 .../template_url_prepopulate_data.cc               | 218 ++++++++++-----------
 2 files changed, 111 insertions(+), 110 deletions(-)
 2 files changed, 110 insertions(+), 109 deletions(-)

diff --git a/components/search_engines/prepopulated_engines.json b/components/search_engines/prepopulated_engines.json
--- a/components/search_engines/prepopulated_engines.json
+++ b/components/search_engines/prepopulated_engines.json
@@ -28,7 +28,7 @@
     // Increment this if you change the data in ways that mean users with
     // existing data should get a new version. Otherwise, existing data may
     // continue to be used and updates made here will not always appear.
-    "kCurrentDataVersion": 113
+    "kCurrentDataVersion": 114
   },
 
   // The following engines are included in country lists and are added to the
@@ -188,6 +188,7 @@
       "favicon_url": "https://www.qwant.com/favicon.ico",
       "search_url": "https://www.qwant.com/?q={searchTerms}&client=opensearch",
       "suggest_url": "https://api.qwant.com/api/suggest/?q={searchTerms}&client=opensearch",
@@ -197,6 +197,7 @@
       "favicon_url": "https://search.seznam.cz/r/img/favicon.ico",
       "search_url": "https://search.seznam.cz/?q={searchTerms}",
       "suggest_url": "https://suggest.fulltext.seznam.cz/fulltext_ff?phrase={searchTerms}",
+      "image_url": "https://www.qwant.com/?t=images&q={searchTerms}",
       "type": "SEARCH_ENGINE_QWANT",
       "id": 94
       "type": "SEARCH_ENGINE_SEZNAM",
       "id": 25
     },
diff --git a/components/search_engines/template_url_prepopulate_data.cc b/components/search_engines/template_url_prepopulate_data.cc
--- a/components/search_engines/template_url_prepopulate_data.cc
Loading