Added new progress bar and some formating

Changes:
- added simple progress bar when checking/updating plugins
- misc code cleanup
- changed logo
This commit is contained in:
Neocky
2021-03-18 23:42:02 +01:00
parent d478432396
commit 01465eb769
3 changed files with 16 additions and 16 deletions

View File

@@ -18,6 +18,7 @@ class oColors:
brightRed = "\033[91m"
brightGreen = "\033[92m"
darkMagenta = "\033[35m"
brightBlack = "\033[90m"
def printLogo():
@@ -72,9 +73,12 @@ def printLogo():
oColors.standardWhite)
print()
print()
print(oColors.brightYellow + " [" + oColors.darkMagenta + "By Neocky" +
oColors.brightYellow + "] " + oColors.standardWhite)
print()
print(oColors.brightBlack + " ┌────────────────────────────────────┐" + oColors.standardWhite)
print(oColors.brightBlack + " [" + oColors.brightMagenta + "By Neocky" +oColors.brightBlack +
"] │ " + oColors.standardWhite)
print(oColors.brightBlack + "" + oColors.brightMagenta + "https://github.com/Neocky/pluGET" + oColors.brightBlack +
"" + oColors.standardWhite)
print(oColors.brightBlack + " └────────────────────────────────────┘" + oColors.standardWhite)
def printHorizontalLine():