-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
60 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -693,7 +693,7 @@ See a list of compatible `pass` clients [here][pass-compatible-clients]. | |
``` | ||
$ prs help | ||
prs 0.4.1 | ||
prs 0.5.0 | ||
Tim Visee <[email protected]> | ||
Secure, fast & convenient password manager CLI with GPG & git sync | ||
|
@@ -714,7 +714,7 @@ Commands: | |
init Initialize new password store | ||
clone Clone existing password store | ||
sync Sync password store | ||
slam Aggresively lock password store & keys preventing access (emergency) | ||
slam Aggressively lock password store & keys preventing access (emergency) | ||
totp Manage TOTP tokens | ||
recipients Manage store recipients | ||
git Invoke git command in password store | ||
|
@@ -723,15 +723,15 @@ Commands: | |
help Print this message or the help of the given subcommand(s) | ||
Options: | ||
-f, --force Force the action, ignore warnings | ||
-I, --no-interact Not interactive, do not prompt | ||
-y, --yes Assume yes for prompts | ||
-q, --quiet Produce output suitable for logging and automation | ||
-v, --verbose... Enable verbose information and logging | ||
--gpg-tty Instruct GPG to ask passphrase in TTY rather than pinentry | ||
-s, --store <PATH> Password store to use [env: PASSWORD_STORE_DIR] | ||
-h, --help Print help information | ||
-V, --version Print version information | ||
-f, --force Force the action, ignore warnings | ||
-I, --no-interact Not interactive, do not prompt | ||
-y, --yes Assume yes for prompts | ||
-q, --quiet Produce output suitable for logging and automation | ||
-v, --verbose... Enable verbose information and logging | ||
-s, --store <PATH> Password store to use [env: PASSWORD_STORE_DIR=] | ||
--gpg-tty Instruct GPG to ask passphrase in TTY rather than pinentry | ||
-h, --help Print help | ||
-V, --version Print version | ||
``` | ||
## License | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "prs-cli" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
authors = ["Tim Visee <[email protected]>"] | ||
license = "GPL-3.0" | ||
readme = "../README.md" | ||
|
@@ -71,7 +71,7 @@ derive_builder = "0.12" | |
edit = "0.1" | ||
indicatif = "0.17" | ||
lazy_static = "1.4" | ||
prs-lib = { version = "0.4.1", path = "../lib", default-features = false } | ||
prs-lib = { version = "=0.5.0", path = "../lib", default-features = false } | ||
rand = { version = "0.8", default-features = false, features = ["std"] } | ||
regex = { version = "1.7", default-features = false, features = ["std", "unicode-perl"] } | ||
shellexpand = "3.0" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "prs-gtk3" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
authors = ["Tim Visee <[email protected]>"] | ||
license = "GPL-3.0" | ||
readme = "../README.md" | ||
|
@@ -40,7 +40,7 @@ gdk = "0.16" | |
gio = { version = "0.16", features = ["v2_58"] } | ||
glib = "0.16" | ||
gtk = { version = "0.16", features = ["v3_24"] } | ||
prs-lib = { version = "0.4.1", path = "../lib", default-features = false } | ||
prs-lib = { version = "=0.5.0", path = "../lib", default-features = false } | ||
thiserror = "1.0" | ||
|
||
# Notification support | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "prs-lib" | ||
version = "0.4.1" | ||
version = "0.5.0" | ||
authors = ["Tim Visee <[email protected]>"] | ||
license = "LGPL-3.0" | ||
readme = "../README.md" | ||
|