Merge pull request #21 from got-feedback/fix/splash-rebrand-feedback

Rebrand splash/loading dialog Slopsmith -> fee[dB]ack
This commit is contained in:
K. O. A.
2026-06-19 09:13:35 -04:00
committed by GitHub
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 {