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

Commit a0ad5d29 authored by csagan5's avatar csagan5
Browse files

Release 90.0.4430.92

parent ad010db0
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
# 90.0.4430.92
* restore horizontal tab switcher feature (fixes https://github.com/bromite/bromite/issues/1077)
* fix a couple of bugs in proxy saving UI (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/1072)
* disable feeds V2 toggle (fixes https://github.com/bromite/bromite/issues/1070)
* allow fetching field trials from flags (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/1021)
* add AllowUserCertificates flag (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/921)
* add IsCleartextPermitted flag (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/1068)

# 90.0.4430.74
* re-added patch for User agent customization (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/1049)
+2 −2
Original line number Diff line number Diff line
@@ -146,6 +146,6 @@ Make-all-favicon-requests-on-demand.patch
Add-Alt-D-hotkey-to-focus-address-bar.patch
Remove-offline-measurement-background-task.patch
User-agent-customization.patch
Add-a-flag-to-disallow-user-certificates.patch
Add-a-flag-to-disallow-connections-over-HTTP.patch
Add-AllowUserCertificates-flag.patch
Add-IsCleartextPermitted-flag.patch
Automated-domain-substitution.patch
+4 −4
Original line number Diff line number Diff line
From: uazo <uazo@users.noreply.github.com>
Date: Mon, 26 Apr 2021 13:28:24 +0000
Subject: Add a flag AllowUserCertificates default false
Subject: Add AllowUserCertificates flag

---
 .../src/org/chromium/chrome/browser/app/ChromeActivity.java  | 3 +++
@@ -49,7 +49,7 @@ diff --git a/chrome/android/java/src/org/chromium/chrome/browser/app/flags/Chrom
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -2755,6 +2755,10 @@ const FeatureEntry kFeatureEntries[] = {
@@ -2759,6 +2759,10 @@ const FeatureEntry kFeatureEntries[] = {
      flag_descriptions::kCOLRV1FontsDescription, kOsAll,
      FEATURE_VALUE_TYPE(blink::features::kCOLRV1Fonts)},
 #if defined(OS_ANDROID)
@@ -69,7 +69,7 @@ diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descripti
 
+const char kAllowUserCertificatesName[] = "Allow user certificates";
+const char kAllowUserCertificatesDescription[] =
+    "Enables the use of user CA certificates during the "
+    "Allow user CA certificates during "
+    "validation of the certificate chain";
+
 const char kAccelerated2dCanvasName[] = "Accelerated 2D canvas";
@@ -99,7 +99,7 @@ diff --git a/chrome/browser/flags/android/chrome_feature_list.cc b/chrome/browse
     &kAdjustWebApkInstallationSpace,
     &kAllowNewIncognitoTabIntents,
     &kAllowRemoteContextForNotifications,
@@ -331,6 +332,9 @@ const base::Feature* FindFeatureExposedToJava(const std::string& feature_name) {
@@ -333,6 +334,9 @@ const base::Feature* FindFeatureExposedToJava(const std::string& feature_name) {
 }  // namespace
 
 // Alphabetical:
+4 −4
Original line number Diff line number Diff line
From: uazo <uazo@users.noreply.github.com>
Date: Mon, 26 Apr 2021 15:04:11 +0000
Subject: Add flag IsCleartextPermitted default true
Subject: Add IsCleartextPermitted flag

---
 chrome/browser/about_flags.cc           | 5 +++++
@@ -14,7 +14,7 @@ Subject: Add flag IsCleartextPermitted default true
diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
--- a/chrome/browser/about_flags.cc
+++ b/chrome/browser/about_flags.cc
@@ -7362,6 +7362,11 @@ const FeatureEntry kFeatureEntries[] = {
@@ -7367,6 +7367,11 @@ const FeatureEntry kFeatureEntries[] = {
      FEATURE_VALUE_TYPE(
          chrome::android::kBookmarksExportUseSaf)},
 
@@ -29,7 +29,7 @@ diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descriptions.cc
--- a/chrome/browser/flag_descriptions.cc
+++ b/chrome/browser/flag_descriptions.cc
@@ -1363,6 +1363,10 @@ const char kHostedAppShimCreationName[] =
@@ -1369,6 +1369,10 @@ const char kHostedAppShimCreationName[] =
 const char kHostedAppShimCreationDescription[] =
     "Create app shims on Mac when creating a hosted app.";
 
@@ -43,7 +43,7 @@ diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descripti
diff --git a/chrome/browser/flag_descriptions.h b/chrome/browser/flag_descriptions.h
--- a/chrome/browser/flag_descriptions.h
+++ b/chrome/browser/flag_descriptions.h
@@ -810,6 +810,9 @@ extern const char kHostedAppQuitNotificationDescription[];
@@ -813,6 +813,9 @@ extern const char kHostedAppQuitNotificationDescription[];
 extern const char kHostedAppShimCreationName[];
 extern const char kHostedAppShimCreationDescription[];
 
+4 −4
Original line number Diff line number Diff line
@@ -4020,7 +4020,7 @@ diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
 
 const FeatureEntry::Choice kPassiveListenersChoices[] = {
     {flags_ui::kGenericExperimentChoiceDefault, "", ""},
@@ -3612,7 +3612,7 @@ const FeatureEntry kFeatureEntries[] = {
@@ -3616,7 +3616,7 @@ const FeatureEntry kFeatureEntries[] = {
      flag_descriptions::kSyncSandboxDescription, kOsAll,
      SINGLE_VALUE_TYPE_AND_VALUE(
          switches::kSyncServiceURL,
@@ -4029,7 +4029,7 @@ diff --git a/chrome/browser/about_flags.cc b/chrome/browser/about_flags.cc
 #if !defined(OS_ANDROID)
     {"load-media-router-component-extension",
      flag_descriptions::kLoadMediaRouterComponentExtensionName,
@@ -3858,7 +3858,7 @@ const FeatureEntry kFeatureEntries[] = {
@@ -3862,7 +3862,7 @@ const FeatureEntry kFeatureEntries[] = {
      flag_descriptions::kSetMarketUrlForTestingName,
      flag_descriptions::kSetMarketUrlForTestingDescription, kOsAndroid,
      SINGLE_VALUE_TYPE_AND_VALUE(switches::kMarketUrlForTesting,
@@ -4991,7 +4991,7 @@ diff --git a/chrome/browser/feedback/feedback_uploader_chrome.cc b/chrome/browse
diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descriptions.cc
--- a/chrome/browser/flag_descriptions.cc
+++ b/chrome/browser/flag_descriptions.cc
@@ -539,7 +539,7 @@ const char kDetectTargetEmbeddingLookalikesName[] =
@@ -544,7 +544,7 @@ const char kDetectTargetEmbeddingLookalikesName[] =
     "Detect target embedding domains as lookalikes.";
 const char kDetectTargetEmbeddingLookalikesDescription[] =
     "Shows a lookalike interstitial when navigating to target embedding domains"
@@ -5000,7 +5000,7 @@ diff --git a/chrome/browser/flag_descriptions.cc b/chrome/browser/flag_descripti
 
 const char kDeviceDiscoveryNotificationsName[] =
     "Device Discovery Notifications";
@@ -2127,7 +2127,7 @@ const char kIntensiveWakeUpThrottlingName[] =
@@ -2136,7 +2136,7 @@ const char kIntensiveWakeUpThrottlingName[] =
 const char kIntensiveWakeUpThrottlingDescription[] =
     "When enabled, wake ups from DOM Timers are limited to 1 per minute in a "
     "page that has been hidden for 5 minutes. For additional details, see "
Loading