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
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ All notable changes to this project will be documented in this file
- Autofill fast unlocking setup: PIN setting dialog/biometric prompt were not shown after passphrase verification
- Shortcuts on the home screen (pinned passwords) were pointing to the containing folder, not the actual password
- There is now one fast unlocking PIN per PGP ID to prevent password leakage in case of folders that were initialised with different PGP IDs
- Failing SSH connection on Android 17 devices with servers in a local network; `ACCESS_LOCAL_NETWORK` permission added to manifest

## [2.0.0] - 2026-07-26

Expand Down
1 change: 1 addition & 0 deletions app/src/main/AndroidManifest.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
android:installLocation="auto">

<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.ACCESS_LOCAL_NETWORK" />
<uses-permission android:name="android.permission.FOREGROUND_SERVICE" />
<!-- Required by Autofill to verify the certificate hashes of packages -->
<uses-permission
Expand Down
Loading