From c51f8cb503e07ebebf4525c302aa690ddce3e318 Mon Sep 17 00:00:00 2001 From: Roger Versluis Date: Mon, 13 Oct 2025 16:46:27 -0600 Subject: [PATCH] Removed internal downloader from the GUI. --- CHANGELOG.md | 4 ++++ .../add-new-torrent.component.html | 9 ++++----- .../torrent-table/torrent-table.component.html | 9 ++++----- client/src/app/torrent/torrent.component.html | 18 +++++++----------- .../Controllers/QBittorrentController.cs | 2 +- 5 files changed, 20 insertions(+), 22 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d65ab42..3bc05a3 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ## [Unreleased +## [2.0.119] - 2025-10-13 +### Removed +- Removed internal downloader from the GUI. + ## [2.0.118] - 2025-10-06 ### Added - Added some fake qBittorrent API calls for decluttarr. diff --git a/client/src/app/add-new-torrent/add-new-torrent.component.html b/client/src/app/add-new-torrent/add-new-torrent.component.html index 4ea4454..0a3eee6 100644 --- a/client/src/app/add-new-torrent/add-new-torrent.component.html +++ b/client/src/app/add-new-torrent/add-new-torrent.component.html @@ -46,11 +46,10 @@

diff --git a/client/src/app/torrent-table/torrent-table.component.html b/client/src/app/torrent-table/torrent-table.component.html index f5b27c6..01ce261 100644 --- a/client/src/app/torrent-table/torrent-table.component.html +++ b/client/src/app/torrent-table/torrent-table.component.html @@ -186,11 +186,10 @@

diff --git a/client/src/app/torrent/torrent.component.html b/client/src/app/torrent/torrent.component.html index 1c51e0a..5d7dce3 100644 --- a/client/src/app/torrent/torrent.component.html +++ b/client/src/app/torrent/torrent.component.html @@ -58,18 +58,15 @@ @switch (torrent.downloadClient) { @case (0) { - Internal Downloader - } - @case (1) { Bezadd } - @case (2) { + @case (1) { Aria2c } - @case (3) { + @case (2) { Symlink Downloader } - @case (4) { + @case (3) { Synology DownloadStation } } @@ -583,11 +580,10 @@

diff --git a/server/RdtClient.Web/Controllers/QBittorrentController.cs b/server/RdtClient.Web/Controllers/QBittorrentController.cs index 3d4a036..3ca48e2 100644 --- a/server/RdtClient.Web/Controllers/QBittorrentController.cs +++ b/server/RdtClient.Web/Controllers/QBittorrentController.cs @@ -382,7 +382,7 @@ public class QBittorrentController(ILogger logger, QBitto [Route("torrents/filePrio")] [HttpGet] [HttpPost] - public async Task TorrentsFilePrio() + public ActionResult TorrentsFilePrio() { return Ok(); }