Mark Chrome as reliably fillable and saveable (#1338)
* Mark Chrome as reliably fillable and saveable * Mention Autofill improvements in CHANGELOG
This commit is contained in:
parent
64fbd2ed44
commit
6206850eb2
2 changed files with 2 additions and 1 deletions
|
@ -13,6 +13,7 @@ All notable changes to this project will be documented in this file.
|
||||||
|
|
||||||
### Fixed
|
### Fixed
|
||||||
|
|
||||||
|
- Autofill now works much more reliably in Chrome 89 and later, including support for saving passwords if no accessibility service is enabled.
|
||||||
- Pressing the back button in the navigation bar and the one in the toolbar behaved differently
|
- Pressing the back button in the navigation bar and the one in the toolbar behaved differently
|
||||||
- Editing a password allowed accidentally overwriting an existing one
|
- Editing a password allowed accidentally overwriting an existing one
|
||||||
- App shortcuts would never update once the first 4 were set
|
- App shortcuts would never update once the first 4 were set
|
||||||
|
|
|
@ -146,6 +146,7 @@ private val BROWSER_SAVE_FLAG = mapOf(
|
||||||
|
|
||||||
@RequiresApi(Build.VERSION_CODES.O)
|
@RequiresApi(Build.VERSION_CODES.O)
|
||||||
private val BROWSER_SAVE_FLAG_IF_NO_ACCESSIBILITY = mapOf(
|
private val BROWSER_SAVE_FLAG_IF_NO_ACCESSIBILITY = mapOf(
|
||||||
|
"com.android.chrome" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
|
||||||
"com.chrome.beta" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
|
"com.chrome.beta" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
|
||||||
"com.chrome.canary" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
|
"com.chrome.canary" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
|
||||||
"com.chrome.dev" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
|
"com.chrome.dev" to SaveInfo.FLAG_SAVE_ON_ALL_VIEWS_INVISIBLE,
|
||||||
|
@ -181,7 +182,6 @@ internal fun getBrowserAutofillSupportInfoIfTrusted(
|
||||||
}
|
}
|
||||||
|
|
||||||
private val FLAKY_BROWSERS = listOf(
|
private val FLAKY_BROWSERS = listOf(
|
||||||
"com.android.chrome",
|
|
||||||
"org.bromite.bromite",
|
"org.bromite.bromite",
|
||||||
"org.ungoogled.chromium.stable",
|
"org.ungoogled.chromium.stable",
|
||||||
"com.kiwibrowser.browser",
|
"com.kiwibrowser.browser",
|
||||||
|
|
Loading…
Reference in a new issue