Skip to content

Commit

Permalink
Update to v1.4.9.5
Browse files Browse the repository at this point in the history
1. Added an Easter egg
  • Loading branch information
rzc0d3r committed Aug 1, 2024
1 parent f014805 commit 31c8890
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@
import os
import re

VERSION = ['v1.4.9.4', 1494]
VERSION = ['v1.4.9.5', 1495]
LOGO = f"""
███████╗███████╗███████╗████████╗ ██╗ ██╗███████╗██╗ ██╗ ██████╗ ███████╗███╗ ██╗
██╔════╝██╔════╝██╔════╝╚══██╔══╝ ██║ ██╔╝██╔════╝╚██╗ ██╔╝██╔════╝ ██╔════╝████╗ ██║
Expand All @@ -37,7 +37,17 @@
"""
if '--no-logo' in sys.argv:
LOGO = f"ESET KeyGen {VERSION[0]} by rzc0d3r\n"

if datetime.datetime.now().day == 6 and datetime.datetime.now().month == 8: # Birthday of rzc0d3r
colored_logo = ''
colors = [getattr(Fore, attr) for attr in dir(Fore) if not attr.startswith('__')]
colors.remove(Fore.BLACK)
for line in LOGO.split('\n'):
for ch in line:
color = random.choice(colors)
colored_logo += (color+ch+Fore.RESET)
colored_logo += '\n'
LOGO = colored_logo[:-1]

# -- Quick settings [for Developers to quickly change behavior without changing all files] --
DEFAULT_EMAIL_API = '1secmail'
AVAILABLE_EMAIL_APIS = ['1secmail', 'hi2in', '10minutemail', 'tempmail', 'guerrillamail', 'developermail']
Expand Down

0 comments on commit 31c8890

Please sign in to comment.