add logo
This commit is contained in:
parent
bc7ebefe61
commit
f7bb266cac
@ -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
|
||||
|
12
README.md
12
README.md
@ -1,2 +1,10 @@
|
||||
# pmng
|
||||
The very simple password manager for humans
|
||||
# The very simple password manager for humans
|
||||
|
||||
```
|
||||
██████╗ ███╗ ███╗███╗ ██╗ ██████╗
|
||||
██╔══██╗████╗ ████║████╗ ██║██╔════╝
|
||||
██████╔╝██╔████╔██║██╔██╗ ██║██║ ███╗
|
||||
██╔═══╝ ██║╚██╔╝██║██║╚██╗██║██║ ██║
|
||||
██║ ██║ ╚═╝ ██║██║ ╚████║╚██████╔╝
|
||||
╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝
|
||||
```
|
||||
|
@ -1,5 +1,5 @@
|
||||
name: pmng
|
||||
version: 0.2.2
|
||||
version: 0.2.3
|
||||
|
||||
authors:
|
||||
- Alexander Popov <iiiypuk@iiiypuk.me>
|
||||
|
13
src/pmng.cr
13
src/pmng.cr
@ -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)
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user