Best autofill recognition #1250

This commit is contained in:
J-Jamet
2022-02-26 13:13:07 +01:00
parent f79d32b22b
commit b0e722acce
4 changed files with 10 additions and 5 deletions

View File

@@ -3,6 +3,7 @@ KeePassDX(3.3.1)
* Better OOM management #256
* Fix filters #1249
* Fix temp advanced unlocking #1245
* Best autofill recognition #1250
KeePassDX(3.3.0)
* Quick search and dynamic filters #163 #462 #521

View File

@@ -377,9 +377,11 @@ class StructureParser(private val structure: AssistStructure) {
when {
inputIsVariationType(inputType,
InputType.TYPE_NUMBER_VARIATION_NORMAL) -> {
usernameIdCandidate = autofillId
usernameValueCandidate = node.autofillValue
Log.d(TAG, "Autofill username candidate android number type: ${showHexInputType(inputType)}")
if (usernameIdCandidate == null) {
usernameIdCandidate = autofillId
usernameValueCandidate = node.autofillValue
Log.d(TAG, "Autofill username candidate android number type: ${showHexInputType(inputType)}")
}
}
inputIsVariationType(inputType,
InputType.TYPE_NUMBER_VARIATION_PASSWORD) -> {

View File

@@ -1,4 +1,5 @@
* Fix Japanese keyboard in search #1248
* Better OOM management #256
* Fix filters #1249
* Fix temp advanced unlocking #1245
* Fix temp advanced unlocking #1245
* Best autofill recognition #1250

View File

@@ -1,4 +1,5 @@
* Correction du clavier japonais dans la recherche #1248
* Meilleur gestion d'OOM #256
* Correction des filtres #1249
* Correction du déverouillage avancé temporaire #1245
* Correction du déverouillage avancé temporaire #1245
* Meilleure reconnaissance du remplissage automatique #1250