add logo
This commit is contained in:
parent
bc7ebefe61
commit
f7bb266cac
@ -8,6 +8,7 @@
|
|||||||
|
|
||||||
## 0.2.3 - [09/04/2022]
|
## 0.2.3 - [09/04/2022]
|
||||||
- ♻️ - Password outdated date change to 3 month
|
- ♻️ - Password outdated date change to 3 month
|
||||||
|
- ➕ - Added `pmng` logo
|
||||||
|
|
||||||
## 0.2.2 - [08/04/2022]
|
## 0.2.2 - [08/04/2022]
|
||||||
- ➕ - Added check permissions for password file
|
- ➕ - 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
|
name: pmng
|
||||||
version: 0.2.2
|
version: 0.2.3
|
||||||
|
|
||||||
authors:
|
authors:
|
||||||
- Alexander Popov <iiiypuk@iiiypuk.me>
|
- Alexander Popov <iiiypuk@iiiypuk.me>
|
||||||
|
13
src/pmng.cr
13
src/pmng.cr
@ -22,7 +22,16 @@ class Password
|
|||||||
property update : Int32
|
property update : Int32
|
||||||
end
|
end
|
||||||
|
|
||||||
VERSION = "0.2.2"
|
VERSION = "0.2.3b"
|
||||||
|
|
||||||
|
ASCII_LOGO = "
|
||||||
|
██████╗ ███╗ ███╗███╗ ██╗ ██████╗
|
||||||
|
██╔══██╗████╗ ████║████╗ ██║██╔════╝
|
||||||
|
██████╔╝██╔████╔██║██╔██╗ ██║██║ ███╗
|
||||||
|
██╔═══╝ ██║╚██╔╝██║██║╚██╗██║██║ ██║
|
||||||
|
██║ ██║ ╚═╝ ██║██║ ╚████║╚██████╔╝
|
||||||
|
╚═╝ ╚═╝ ╚═╝╚═╝ ╚═══╝ ╚═════╝
|
||||||
|
"
|
||||||
|
|
||||||
# program options
|
# program options
|
||||||
begin
|
begin
|
||||||
@ -30,6 +39,7 @@ begin
|
|||||||
parser.banner = "The very simple password manager for humans\n"
|
parser.banner = "The very simple password manager for humans\n"
|
||||||
|
|
||||||
parser.on "-v", "--version", "Show version" do
|
parser.on "-v", "--version", "Show version" do
|
||||||
|
puts ASCII_LOGO
|
||||||
puts "The very simple password manager for humans."
|
puts "The very simple password manager for humans."
|
||||||
puts "Version #{VERSION}"
|
puts "Version #{VERSION}"
|
||||||
exit(0)
|
exit(0)
|
||||||
@ -91,6 +101,7 @@ end
|
|||||||
|
|
||||||
# pmng title
|
# pmng title
|
||||||
system "clear"
|
system "clear"
|
||||||
|
puts ASCII_LOGO.colorize(:yellow)
|
||||||
puts "The very simple password manager for humans".colorize(:yellow).mode(:bold)
|
puts "The very simple password manager for humans".colorize(:yellow).mode(:bold)
|
||||||
puts "-------------------------------------------".colorize(:yellow).mode(:bold)
|
puts "-------------------------------------------".colorize(:yellow).mode(:bold)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user