From 9d424ece9db008974c9481fc2573f2dae346fa21 Mon Sep 17 00:00:00 2001 From: topkoa Date: Fri, 19 Jun 2026 08:56:26 -0400 Subject: [PATCH] Rebrand splash/loading dialog Slopsmith -> fee[dB]ack The startup splash window and its initial status message still showed the old "Slopsmith" name. Update the brand label, the static status line, and the JS fallback in splash.html, plus the main-process startup status snapshot that overrides it, to the new "fee[dB]ack" branding. Co-Authored-By: Claude Opus 4.8 Signed-off-by: topkoa --- src/main/main.ts | 2 +- src/main/splash.html | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/main.ts b/src/main/main.ts index 59b1867..75ce6b0 100644 --- a/src/main/main.ts +++ b/src/main/main.ts @@ -209,7 +209,7 @@ const SPLASH_CLOSE_DELAY_MS = 300; let startupStatusSnapshot: StartupStatus = { running: true, phase: 'booting', - message: 'Starting Slopsmith...', + message: 'Starting fee[dB]ack...', currentPlugin: '', loaded: 0, total: 0, diff --git a/src/main/splash.html b/src/main/splash.html index ae3a5cd..7da6235 100644 --- a/src/main/splash.html +++ b/src/main/splash.html @@ -18,10 +18,10 @@
-
Slopsmith
+
fee[dB]ack
Starting up — first launch may take a moment
-
Starting Slopsmith...
+
Starting fee[dB]ack...
@@ -47,7 +47,7 @@ var countEl = document.getElementById('count'); function render(status) { if (!status) return; - statusEl.textContent = status.message || 'Starting Slopsmith...'; + statusEl.textContent = status.message || 'Starting fee[dB]ack...'; if (status.total > 0) { countEl.textContent = (status.loaded || 0) + ' / ' + status.total; } else {