This commit is contained in:
Alexander Popov 2022-05-02 10:41:31 +03:00
parent bc7ebefe61
commit f7bb266cac
Signed by: iiiypuk
GPG Key ID: 3F76816AEE08F908
4 changed files with 24 additions and 4 deletions

View File

@ -8,6 +8,7 @@
## 0.2.3 - [09/04/2022]
- ♻️ - Password outdated date change to 3 month
- - Added `pmng` logo
## 0.2.2 - [08/04/2022]
- - Added check permissions for password file

View File

@ -1,2 +1,10 @@
# pmng
The very simple password manager for humans
# The very simple password manager for humans
```
██████╗ ███╗ ███╗███╗ ██╗ ██████╗
██╔══██╗████╗ ████║████╗ ██║██╔════╝
██████╔╝██╔████╔██║██╔██╗ ██║██║ ███╗
██╔═══╝ ██║╚██╔╝██║██║╚██╗██║██║ ██║
██║ ██║ ╚═╝ ██║██║ ╚████║╚██████╔╝
╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝
```

View File

@ -1,5 +1,5 @@
name: pmng
version: 0.2.2
version: 0.2.3
authors:
- Alexander Popov <iiiypuk@iiiypuk.me>

View File

@ -22,7 +22,16 @@ class Password
property update : Int32
end
VERSION = "0.2.2"
VERSION = "0.2.3b"
ASCII_LOGO = "
"
# program options
begin
@ -30,6 +39,7 @@ begin
parser.banner = "The very simple password manager for humans\n"
parser.on "-v", "--version", "Show version" do
puts ASCII_LOGO
puts "The very simple password manager for humans."
puts "Version #{VERSION}"
exit(0)
@ -91,6 +101,7 @@ end
# pmng title
system "clear"
puts ASCII_LOGO.colorize(:yellow)
puts "The very simple password manager for humans".colorize(:yellow).mode(:bold)
puts "-------------------------------------------".colorize(:yellow).mode(:bold)