mirror of
https://github.com/got-feedBack/feedBack-desktop.git
synced 2026-08-16 05:37:40 +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 = {
|
let startupStatusSnapshot: StartupStatus = {
|
||||||
running: true,
|
running: true,
|
||||||
phase: 'booting',
|
phase: 'booting',
|
||||||
message: 'Starting Slopsmith...',
|
message: 'Starting fee[dB]ack...',
|
||||||
currentPlugin: '',
|
currentPlugin: '',
|
||||||
loaded: 0,
|
loaded: 0,
|
||||||
total: 0,
|
total: 0,
|
||||||
|
|||||||
@@ -18,10 +18,10 @@
|
|||||||
<body>
|
<body>
|
||||||
<div class="wrap">
|
<div class="wrap">
|
||||||
<div class="card">
|
<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="sub">Starting up — first launch may take a moment</div>
|
||||||
<div class="anim"><div id="lottie-spinner"></div></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 id="count" class="count"></div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
@@ -47,7 +47,7 @@
|
|||||||
var countEl = document.getElementById('count');
|
var countEl = document.getElementById('count');
|
||||||
function render(status) {
|
function render(status) {
|
||||||
if (!status) return;
|
if (!status) return;
|
||||||
statusEl.textContent = status.message || 'Starting Slopsmith...';
|
statusEl.textContent = status.message || 'Starting fee[dB]ack...';
|
||||||
if (status.total > 0) {
|
if (status.total > 0) {
|
||||||
countEl.textContent = (status.loaded || 0) + ' / ' + status.total;
|
countEl.textContent = (status.loaded || 0) + ' / ' + status.total;
|
||||||
} else {
|
} else {
|
||||||
|
|||||||
Reference in New Issue
Block a user