Skip to content

Commit

Permalink
bump patch
Browse files Browse the repository at this point in the history
  • Loading branch information
zahash committed Oct 15, 2023
1 parent 87e3b97 commit 6802b4f
Show file tree
Hide file tree
Showing 4 changed files with 18 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "royalguard"
version = "0.4.2"
version = "0.4.3"
edition = "2021"
authors = ["Zahash <[email protected]>"]
description = "Ergonomic Command Line Password Manager. Forever Free."
Expand Down
9 changes: 8 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@
```sh
Add, Update:
set gmail user = sussolini sensitive pass = 'use single quote for spaces' url = mail.google.sus
set gmail sensitive pass = updatedpassword
set gmail sensitive pass = updatedpassword user = updated_user

Delete whole record:
del gmail
Expand All @@ -42,6 +42,13 @@ History -- show changes made overtime:

Copy field to clipboard:
copy gmail pass

Import:
import 'path/to/file.txt'

Importing requires the below data format. Each line being a new record
'gmail' user = 'joseph ballin' sensitive pass = 'ни шагу назад, товарищи!'
'discord' user = 'pablo susscobar' pass = 'plata o plomo'
```

## Meta
Expand Down
9 changes: 8 additions & 1 deletion src/prompt.rs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const LOGO: &'static str = r#"
const HELP: &'static str = r#"
Add, Update:
set gmail user = sussolini sensitive pass = 'use single quote for spaces' url = mail.google.sus
set gmail sensitive pass = updatedpassword
set gmail sensitive pass = updatedpassword user = updated_user
Delete whole record:
del gmail
Expand All @@ -40,6 +40,13 @@ History -- show changes made overtime:
Copy field to clipboard:
copy gmail pass
Import:
import 'path/to/file.txt'
Importing requires the below data format. Each line being a new record
'gmail' user = 'joseph ballin' sensitive pass = 'ни шагу назад, товарищи!'
'discord' user = 'pablo susscobar' pass = 'plata o plomo'
"#;

/// Royal Guard
Expand Down

0 comments on commit 6802b4f

Please sign in to comment.