From e8a37245f35b943ed6716b44157e456e1b4d30cb Mon Sep 17 00:00:00 2001 From: Research Assistant Date: Tue, 21 Apr 2026 21:24:58 +0800 Subject: [PATCH] fix: replace logo with correct PAPERFORGE ASCII art --- scripts/welcome.py | 37 ++++++++++--------------------------- 1 file changed, 10 insertions(+), 27 deletions(-) diff --git a/scripts/welcome.py b/scripts/welcome.py index 3d209754..1d27489b 100644 --- a/scripts/welcome.py +++ b/scripts/welcome.py @@ -67,34 +67,17 @@ def print_slow(text, delay=0.01): def draw_logo(): - """Draw the PaperForge ASCII logo with PAPERFORGE text.""" + """Draw the PaperForge ASCII logo.""" logo = f""" -{Colors.BRIGHT_YELLOW} ▄███████████▄ {Colors.END} -{Colors.BRIGHT_YELLOW} ▄██▀{Colors.BOLD} ▀███▀ {Colors.END}{Colors.BRIGHT_YELLOW}▀██▄ {Colors.END} -{Colors.BRIGHT_YELLOW} █▀{Colors.END} ███ {Colors.BRIGHT_YELLOW}▀█ {Colors.END} -{Colors.BRIGHT_YELLOW} █{Colors.END} ███ ███ ███ {Colors.BRIGHT_YELLOW}█ {Colors.END} -{Colors.BRIGHT_YELLOW} █{Colors.END} ███ ███ ███ {Colors.BRIGHT_YELLOW}█ {Colors.END} -{Colors.BRIGHT_YELLOW} █{Colors.END} ███ ███ ███ {Colors.BRIGHT_YELLOW}█ {Colors.END} -{Colors.BRIGHT_YELLOW} █{Colors.END} █████ {Colors.BRIGHT_YELLOW}█ {Colors.END} -{Colors.BRIGHT_YELLOW} ▀██{Colors.END} █████ {Colors.BRIGHT_YELLOW}▄██▀ {Colors.END} -{Colors.BRIGHT_YELLOW} ▀███████████▀ {Colors.END} -{Colors.BRIGHT_YELLOW} █████ {Colors.END} -{Colors.BRIGHT_YELLOW} ███████ {Colors.END} -{Colors.BRIGHT_YELLOW} ████ ████ {Colors.END} -{Colors.BRIGHT_YELLOW} ████ ████ {Colors.END} -{Colors.BRIGHT_YELLOW} ████ ████ {Colors.END} - -{Colors.BRIGHT_RED}{Colors.BOLD} ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ {Colors.END} -{Colors.BRIGHT_RED}{Colors.BOLD} ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ {Colors.END} -{Colors.BRIGHT_RED}{Colors.BOLD} ▓▓▓▓▓ ▓ ▓ ▓▓▓▓ ▓ ▓ ▓▓▓▓ ▓ ██ ▓ ██ ▓▓▓▓ {Colors.END} -{Colors.BRIGHT_RED}{Colors.BOLD} ▓ ▓ ▓ ▓ ▓ ▓ ▓ ▓ ██ ▓ ██ ▓ {Colors.END} -{Colors.BRIGHT_RED}{Colors.BOLD} ▓ ▓▓▓▓▓ ▓ ▓▓▓▓▓ ▓ ▓▓▓▓▓ ▓▓▓▓▓ ▓▓▓▓▓ {Colors.END} - - {Colors.BRIGHT_CYAN}Forge Your Knowledge Into Power.{Colors.END} - {Colors.DIM}Deep Read. Archive.{Colors.END} - - {Colors.BOLD}[ v1.0 ]{Colors.END} -""" +{Colors.BRIGHT_YELLOW} +______ ___ ______ _________________ ___________ _____ _____ +| ___ \/ _ \ | ___ \ ___| ___ \ ___| _ | ___ \ __ \| ___| +| |_/ / /_\ \| |_/ / |__ | |_/ / |_ | | | | |_/ / | \/| |__ +| __/| _ || __/| __|| /| _| | | | | /| | __ | __| +| | | | | || | | |___| |\ \| | \ \_/ / |\ \| |_/ \| |___ +\_| \_| |_/\_| \____/\_| \_\_| \___/\_| \_\|____/\____/ +{Colors.END} + """ print(logo)