From e2d9e701b9ca9a703afaa7afc0d40b120dcf0663 Mon Sep 17 00:00:00 2001 From: librelad Date: Fri, 22 May 2026 00:07:55 +0100 Subject: [PATCH] feat(branding): replace EasyDocker ASCII logo with LibrePortal wordmark MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The startup banner (displayLibrePortalLogo in init.sh/start.sh and the generate_arrays.sh splash) still rendered the old "EASY DOCKER" figlet art. Swap it for a LibrePortal wordmark — Calvin S mixed-case "Libre"/"Portal" with a small framed portal glyph between the two words. Co-Authored-By: Claude Opus 4.7 Signed-off-by: librelad --- init.sh | 6 +++--- scripts/source/files/generate_arrays.sh | 6 +++--- start.sh | 6 +++--- 3 files changed, 9 insertions(+), 9 deletions(-) diff --git a/init.sh b/init.sh index 94531c3..17c1eb1 100755 --- a/init.sh +++ b/init.sh @@ -31,9 +31,9 @@ isQuestion() { echo -e -n "${BLUE}QUESTION:${NC} $1 "; } displayLibrePortalLogo() { echo " -____ ____ ____ _ _ ___ ____ ____ _ _ ____ ____ -|___ |__| [__ \_/ | \ | | | |_/ |___ |__/ -|___ | | ___] | |__/ |__| |___ | \_ |___ | \ " +╦ ┬┌┐ ┬─┐┌─┐ ╭─╮ ╔═╗┌─┐┬─┐┌┬┐┌─┐┬ +║ │├┴┐├┬┘├┤ │◉│ ╠═╝│ │├┬┘ │ ├─┤│ +╩═╝┴└─┘┴└─└─┘ ╰─╯ ╩ └─┘┴└─ ┴ ┴ ┴┴─┘" echo "" } diff --git a/scripts/source/files/generate_arrays.sh b/scripts/source/files/generate_arrays.sh index de820b9..7ef0e94 100755 --- a/scripts/source/files/generate_arrays.sh +++ b/scripts/source/files/generate_arrays.sh @@ -39,9 +39,9 @@ isHeader() { } echo " -____ ____ ____ _ _ ___ ____ ____ _ _ ____ ____ -|___ |__| [__ \_/ | \ | | | |_/ |___ |__/ -|___ | | ___] | |__/ |__| |___ | \_ |___ | \ " +╦ ┬┌┐ ┬─┐┌─┐ ╭─╮ ╔═╗┌─┐┬─┐┌┬┐┌─┐┬ +║ │├┴┐├┬┘├┤ │◉│ ╠═╝│ │├┬┘ │ ├─┤│ +╩═╝┴└─┘┴└─└─┘ ╰─╯ ╩ └─┘┴└─ ┴ ┴ ┴┴─┘" echo "" isHeader "Regenerating Array Files" diff --git a/start.sh b/start.sh index acd679e..02f084f 100755 --- a/start.sh +++ b/start.sh @@ -13,9 +13,9 @@ displayLibrePortalLogo() { [[ "$LIBREPORTAL_SKIP_LOGO" == "1" ]] && return echo " -____ ____ ____ _ _ ___ ____ ____ _ _ ____ ____ -|___ |__| [__ \_/ | \ | | | |_/ |___ |__/ -|___ | | ___] | |__/ |__| |___ | \_ |___ | \ " +╦ ┬┌┐ ┬─┐┌─┐ ╭─╮ ╔═╗┌─┐┬─┐┌┬┐┌─┐┬ +║ │├┴┐├┬┘├┤ │◉│ ╠═╝│ │├┬┘ │ ├─┤│ +╩═╝┴└─┘┴└─└─┘ ╰─╯ ╩ └─┘┴└─ ┴ ┴ ┴┴─┘" echo "" }