Skip to content
Closed
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
5 changes: 4 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file

## [Unreleased]

## [1.16.0] - 2026-02-20

### Added

- PGP key option for authenticating and connecting via SSH. The PGP key does not need to provide a dedicated authentication subkey; the signing subkey and even the primary certification key are equally usable for that purpose. Of course, the authentication key is always picked first, if available, while the signing subkey and the primary key only serve as fallback keys
Expand Down Expand Up @@ -614,7 +616,8 @@ All notable changes to this project will be documented in this file

- Fix elements overlapping.

[unreleased]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.4...HEAD
[unreleased]: https://github.com/agrahn/Android-Password-Store/compare/v1.16.0...HEAD
[1.16.0]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.4...v1.16.0
[1.15.4]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.3...v1.15.4
[1.15.3]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.2...v1.15.3
[1.15.2]: https://github.com/agrahn/Android-Password-Store/compare/v1.15.1...v1.15.2
Expand Down
2 changes: 1 addition & 1 deletion app/version.properties
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
# This file was automatically generated by 'versioning-plugin'. DO NOT EDIT MANUALLY.
#
versioning-plugin.versionCode=11600
versioning-plugin.versionName=1.16.0-SNAPSHOT
versioning-plugin.versionName=1.16.0
14 changes: 14 additions & 0 deletions fastlane/metadata/android/en-US/changelogs/11600.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
Added:

- PGP key option for authenticating and connecting via SSH
- Setting individual subkey passphrases in PGP key manager
- Declare sensitive fields of extra content by adding asterisks around keys or by using `gopass` syntax
- Allow custom port setting for Git via http

Fixed:

- App crash when handling expired PGP keys.
- Handling of password items that were encrypted to multiple subkeys
- Enhanced feedback on encryption/decryption success and PGP key availability
- Extra content formatting
- SSH key parsing and connection failures after a recent system update
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ thirdparty-fastscroll = "me.zhanghai.android.fastscroll:library:1.3.0"
thirdparty-flowbinding-android = { module = "io.github.reactivecircus.flowbinding:flowbinding-android", version.ref = "flowbinding" }
# JGit v7 upgrade also raises its minimum Java runtime requirements that we cannot satisfy on Android
# noinspection GradleDependency
thirdparty-jgit = "org.eclipse.jgit:org.eclipse.jgit:6.2.0.202206071550-r"
thirdparty-jgit = "org.eclipse.jgit:org.eclipse.jgit:7.5.0.202512021534-r"
thirdparty-kotlinResult = { module = "com.michael-bull.kotlin-result:kotlin-result", version.ref = "kotlinResult" }
thirdparty-kotlinResult-coroutines = { module = "com.michael-bull.kotlin-result:kotlin-result-coroutines", version.ref = "kotlinResult" }
thirdparty-leakcanary-plumber = "com.squareup.leakcanary:plumber-android-startup:2.14"
Expand Down
Loading