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 {