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 <noreply@anthropic.com>
Signed-off-by: topkoa <topkoa@gmail.com>
This commit is contained in:
topkoa
2026-06-19 08:56:26 -04:00
co-authored by Claude Opus 4.8
parent 2655bbe364
commit 9d424ece9d
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -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,
+3 -3
View File
@@ -18,10 +18,10 @@
<body>
<div class="wrap">
<div class="card">
<div class="brand">Slopsmith</div>
<div class="brand">fee[dB]ack</div>
<div class="sub">Starting up — first launch may take a moment</div>
<div class="anim"><div id="lottie-spinner"></div></div>
<div id="status" class="status">Starting Slopsmith...</div>
<div id="status" class="status">Starting fee[dB]ack...</div>
<div id="count" class="count"></div>
</div>
</div>
@@ -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 {