Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file

## [Unreleased]

### Fixed

- autofill-parser: on some login forms, the "Create entry" button was not shown in the keyboard's suggestions strip

## [2.0.2] - 2026-09-15

### Added
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -198,7 +198,7 @@ internal data class ClassifiedAutofillScenario<T : Any>(
get() = currentPassword

override val passwordFieldsToFillOnGenerate
get() = newPassword
get() = newPassword.ifEmpty { currentPassword }

override val passwordFieldsToSave
get() = newPassword.ifEmpty { currentPassword }
Expand Down
2 changes: 1 addition & 1 deletion fastlane/metadata/android/en-US/changelogs/20002.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Added
- Sorting autofill suggestions by most recent usage
- App setting "Ask to save passwords"

### Fixed
Fixed

- Autofill-related issues
- Clipped alert dialogs on short screens, such as front screens of foldables
Expand Down