From 66e24a07d482f238bde853deaa28d0c53ffcde3c Mon Sep 17 00:00:00 2001 From: jelveh Date: Thu, 7 May 2026 19:49:01 -0700 Subject: [PATCH] Update console banner and messaging --- src/puter-js/src/index.js | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/src/puter-js/src/index.js b/src/puter-js/src/index.js index 887536087..e0e1bc6fe 100644 --- a/src/puter-js/src/index.js +++ b/src/puter-js/src/index.js @@ -890,19 +890,22 @@ const puterInit = (function () { printDevCTA = function () { if ( this.quiet || globalThis.PUTER_QUIET ) return; console.log( - '%c╔═╗╦ ╦╔╦╗╔═╗╦═╗ ╦╔═╗\n' + - '╠═╝║ ║ ║ ║╣ ╠╦╝ ║╚═╗\n' + - '╩ ╚═╝ ╩ ╚═╝╩╚═ ╚╝╚═╝', - 'color: #000fd8; font-weight: bold; font-size: 16px; font-family: monospace;' + '%c' + + ' ____ _ _ _____ _____ ____ _ ____\n' + + '| _ \\| | | |_ _| ____| _ \\ | / ___|\n' + + '| |_) | | | | | | | _| | |_) | | \\___ \\\n' + + '| __/| |_| | | | | |___| _ < _ | |___) |\n' + + '|_| \\___/ |_| |_____|_| \\_(_)_|____/', + 'color: #000fd8; font-weight: bold; font-size: 14px; font-family: monospace;' ); console.log( - '%cSubmit your web app to the Puter App Store:\n' + + '%cSubmit your app to the Puter App Store:\n' + '%chttps://apps.puter.com/', 'color:rgb(0, 57, 137); font-size: 18px; font-weight: bold;', 'color: #3b82f6; font-size: 18px; font-weight: bold; text-decoration: underline;' ); console.log( - '%c🔇 To disable this message: %cputer.quiet = true', + '%cTo disable this message: %cputer.quiet = true', 'color: #94a3b8; font-size: 11px;', 'color: #94a3b8; font-size: 11px; font-style: italic;' );