:-[
This commit is contained in:
parent
237b811a80
commit
5009a393c3
@ -7,10 +7,11 @@
|
||||
- ♻️ - Edited
|
||||
|
||||
## 0.2.2 - [08/04/2022]
|
||||
- ➕ - Added clear terminal by close program
|
||||
- ➕ - Add to prompt help helper
|
||||
- ➕ - Added by start&close program clear terminal
|
||||
- ➕ - Added help tooltip to prompt
|
||||
- ➕ - Added emoji to output
|
||||
- ♻️ - Fixed URL color & style output
|
||||
- ✔️ - Fixed BYE emoji color
|
||||
- ♻️ - Edited URL color & style output
|
||||
|
||||
## 0.2.1 - [14/03/2022]
|
||||
- ➕ - prompt '>' set color green
|
||||
|
@ -83,6 +83,11 @@ end
|
||||
# main loop
|
||||
loop = true
|
||||
while loop
|
||||
system "clear"
|
||||
|
||||
# pmng title
|
||||
puts "The very simple password manager for humans\n\n".colorize(:yellow).mode(:bold)
|
||||
|
||||
# shell prompt
|
||||
print "Enter URL (".colorize(:white).mode(:bold)
|
||||
print ":h".colorize(:red).mode(:bold)
|
||||
@ -96,7 +101,7 @@ while loop
|
||||
# if ':q' to close program
|
||||
if password_string.to_s == ":q"
|
||||
system "clear"
|
||||
puts "Bye! 👋🏻"
|
||||
puts "Bye! 👋"
|
||||
exit(0)
|
||||
# if puts empty, retry prompt
|
||||
elsif password_string.to_s.size == 0
|
||||
|
Loading…
Reference in New Issue
Block a user