mirror of
https://github.com/got-feedBack/feedBack-desktop.git
synced 2026-08-10 18:59:55 +00:00
Merge pull request #21 from got-feedback/fix/splash-rebrand-feedback
Rebrand splash/loading dialog Slopsmith -> fee[dB]ack
This commit is contained in:
+1
-1
@@ -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,
|
||||
|
||||
@@ -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 {
|
||||
|
||||
Reference in New Issue
Block a user