From daf70211ace25077d032d4cd808abda6b7b49008 Mon Sep 17 00:00:00 2001 From: Sucukdeluxe Date: Mon, 2 Mar 2026 12:47:11 +0100 Subject: [PATCH] Add total download speed to stats bar Show current aggregate speed (all active downloads) in the stats bar next to Pakete/Dateien/Gesamt. Only visible while session is running. Co-Authored-By: Claude Opus 4.6 --- package.json | 2 +- src/renderer/App.tsx | 3 +++ 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/package.json b/package.json index 0969650..b5775f7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "real-debrid-downloader", - "version": "1.4.82", + "version": "1.4.83", "description": "Real-Debrid Downloader Desktop (Electron + React + TypeScript)", "main": "build/main/main/main.js", "author": "Sucukdeluxe", diff --git a/src/renderer/App.tsx b/src/renderer/App.tsx index 207e793..b2b4ca5 100644 --- a/src/renderer/App.tsx +++ b/src/renderer/App.tsx @@ -1530,6 +1530,9 @@ export function App(): ReactElement { Pakete: {snapshot.stats.totalPackages} Dateien: {snapshot.stats.totalFiles} fertig Gesamt: {humanSize(snapshot.stats.totalDownloaded)} + {snapshot.session.running && !snapshot.session.paused && ( + {snapshot.speedText.replace("Geschwindigkeit: ", "Speed: ")} + )} {totalPackageCount === 0 &&
Noch keine Pakete in der Queue.
} {totalPackageCount > 0 && packages.length === 0 &&
Keine Pakete passend zur Suche.
}