Compare commits
No commits in common. "a5c1ec362d52d595e9ee779bd6a8093f18c0560c" and "13d220bd3037e485281556eb3efb2980674b6af4" have entirely different histories.
a5c1ec362d
...
13d220bd30
@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "multi-hoster-uploader",
|
||||
"version": "1.9.5",
|
||||
"version": "1.9.4",
|
||||
"description": "Upload files to doodstream, voe, vidmoly, byse simultaneously",
|
||||
"main": "main.js",
|
||||
"scripts": {
|
||||
|
||||
@ -1634,13 +1634,12 @@ function updateStatusBar() {
|
||||
document.getElementById('sbState').textContent = stateText;
|
||||
document.getElementById('sbSpeed').textContent = formatSpeed(lastUploadStats.globalSpeedKbs || 0);
|
||||
const uploadedSize = Math.max(0, stats.totalSize - stats.remainingSize);
|
||||
document.getElementById('sbTotal').textContent = `${formatSize(uploadedSize)} / ${formatSize(stats.totalSize)}`;
|
||||
document.getElementById('sbTotal').textContent = `${formatSize(uploadedSize)} / ${formatSize(stats.remainingSize)}`;
|
||||
document.getElementById('sbEta').textContent = `ETA ${etaSeconds > 0 ? formatTime(etaSeconds) : '--:--'}`;
|
||||
document.getElementById('sbConnections').textContent = `Aktive Verbindungen ${lastUploadStats.activeJobs || 0}`;
|
||||
document.getElementById('sbQueueCount').textContent = `Gesamt ${stats.total}`;
|
||||
document.getElementById('sbRemainingCount').textContent = `Remaining ${stats.remaining}`;
|
||||
document.getElementById('sbInProgressCount').textContent = `In Progress ${stats.inProgress}`;
|
||||
document.getElementById('sbDoneCount').textContent = `Done ${stats.done}`;
|
||||
document.getElementById('sbErrorCount').textContent = `Error ${stats.errors}`;
|
||||
}
|
||||
|
||||
|
||||
@ -289,8 +289,6 @@
|
||||
<span class="sb-separator">|</span>
|
||||
<span class="sb-progress-count" id="sbInProgressCount">In Progress 0</span>
|
||||
<span class="sb-separator">|</span>
|
||||
<span class="sb-done-count" id="sbDoneCount">Done 0</span>
|
||||
<span class="sb-separator">|</span>
|
||||
<span class="sb-error-count" id="sbErrorCount">Error 0</span>
|
||||
</div>
|
||||
|
||||
|
||||
Loading…
Reference in New Issue
Block a user