diff --git a/CHANGELOG.md b/CHANGELOG.md index ddbca946..71775f4f 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# 85.0.4183.94 +* disable the DIAL repeating discovery +* removed patch for session-only cookies support +* add timezone customization patch (thanks to @uazo, fixes https://github.com/bromite/bromite/issues/331) +* fixed bug happening when configuring proxies in incognito mode (thanks to @uazo) + # 85.0.4183.86 * fix LocationBarPhone app crash at startup (fixes https://github.com/bromite/bromite/issues/565) diff --git a/build/RELEASE b/build/RELEASE index 05b8e1a3..89c8323b 100644 --- a/build/RELEASE +++ b/build/RELEASE @@ -1 +1 @@ -85.0.4183.86 +85.0.4183.94 diff --git a/build/patches/Add-a-proxy-configuration-page.patch b/build/patches/Add-a-proxy-configuration-page.patch index 5b72ab75..dbf85d07 100644 --- a/build/patches/Add-a-proxy-configuration-page.patch +++ b/build/patches/Add-a-proxy-configuration-page.patch @@ -1241,3 +1241,6 @@ diff --git a/net/proxy_resolution/proxy_config.h b/net/proxy_resolution/proxy_co // Returns one of {&proxies_for_http, &proxies_for_https, &proxies_for_ftp, // &fallback_proxies}, or NULL if there is no proxy to use. +-- +2.17.1 + diff --git a/build/patches/Timezone-customization.patch b/build/patches/Timezone-customization.patch index 33bab72d..e3013ae4 100644 --- a/build/patches/Timezone-customization.patch +++ b/build/patches/Timezone-customization.patch @@ -607,8 +607,8 @@ diff --git a/components/browser_ui/site_settings/android/java/src/org/chromium/c int BLUETOOTH = 19; int VIRTUAL_REALITY = 20; - int USE_STORAGE = 21; // Always last as it should appear in the UI at the bottom. -+ int USE_STORAGE = 21; -+ int TIMEZONE_OVERRIDE = 22; // Always last as it should appear in the UI at the bottom. ++ int TIMEZONE_OVERRIDE = 21; ++ int USE_STORAGE = 22; // Always last as it should appear in the UI at the bottom. /** * Number of handled categories used for calculating array sizes. */