Removed internal downloader from the GUI.
Some checks failed
Release Docker Image / build (map[arch:amd64 platform:linux/amd64 runs-on:ubuntu-latest]) (push) Has been cancelled
Release Docker Image / build (map[arch:arm64 platform:linux/arm64 runs-on:ubuntu-24.04-arm]) (push) Has been cancelled
Create GitHub Release / Test, Build, and Bundle (push) Has been cancelled
dotnet test / build (push) Has been cancelled
Release Docker Image / push-images (push) Has been cancelled
Create GitHub Release / Create GitHub release (push) Has been cancelled

This commit is contained in:
Roger Versluis 2025-10-13 16:46:27 -06:00
parent 1080143fce
commit c51f8cb503
5 changed files with 20 additions and 22 deletions

View file

@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased ## [Unreleased
## [2.0.119] - 2025-10-13
### Removed
- Removed internal downloader from the GUI.
## [2.0.118] - 2025-10-06 ## [2.0.118] - 2025-10-06
### Added ### Added
- Added some fake qBittorrent API calls for decluttarr. - Added some fake qBittorrent API calls for decluttarr.

View file

@ -46,11 +46,10 @@
<label class="label">Downloader</label> <label class="label">Downloader</label>
<div class="control select is-fullwidth"> <div class="control select is-fullwidth">
<select [(ngModel)]="downloadClient" (ngModelChange)="setFinishAction()"> <select [(ngModel)]="downloadClient" (ngModelChange)="setFinishAction()">
<option [ngValue]="0">Internal Downloader</option> <option [ngValue]="0">Bezzad</option>
<option [ngValue]="1">Bezzad</option> <option [ngValue]="1">Aria2c</option>
<option [ngValue]="2">Aria2c</option> <option [ngValue]="2">Symlink Downloader</option>
<option [ngValue]="3">Symlink Downloader</option> <option [ngValue]="3">Synology DownloadStation</option>
<option [ngValue]="4">Synology DownloadStation</option>
</select> </select>
</div> </div>
<p class="help"> <p class="help">

View file

@ -186,11 +186,10 @@
<div class="control select is-fullwidth"> <div class="control select is-fullwidth">
<select [(ngModel)]="updateSettingsDownloadClient"> <select [(ngModel)]="updateSettingsDownloadClient">
<option [ngValue]="null"></option> <option [ngValue]="null"></option>
<option [ngValue]="0">Internal Downloader</option> <option [ngValue]="0">Bezzad</option>
<option [ngValue]="1">Bezzad</option> <option [ngValue]="1">Aria2c</option>
<option [ngValue]="2">Aria2c</option> <option [ngValue]="2">Symlink Downloader</option>
<option [ngValue]="3">Symlink Downloader</option> <option [ngValue]="3">Synology DownloadStation</option>
<option [ngValue]="4">Synology DownloadStation</option>
</select> </select>
</div> </div>
<p class="help"> <p class="help">

View file

@ -58,18 +58,15 @@
<label class="label">Downloader</label> <label class="label">Downloader</label>
@switch (torrent.downloadClient) { @switch (torrent.downloadClient) {
@case (0) { @case (0) {
Internal Downloader
}
@case (1) {
Bezadd Bezadd
} }
@case (2) { @case (1) {
Aria2c Aria2c
} }
@case (3) { @case (2) {
Symlink Downloader Symlink Downloader
} }
@case (4) { @case (3) {
Synology DownloadStation Synology DownloadStation
} }
} }
@ -583,11 +580,10 @@
<label class="label">Downloader</label> <label class="label">Downloader</label>
<div class="control select is-fullwidth"> <div class="control select is-fullwidth">
<select [(ngModel)]="updateSettingsDownloadClient"> <select [(ngModel)]="updateSettingsDownloadClient">
<option [ngValue]="0">Internal Downloader</option> <option [ngValue]="0">Bezzad</option>
<option [ngValue]="1">Bezzad</option> <option [ngValue]="1">Aria2c</option>
<option [ngValue]="2">Aria2c</option> <option [ngValue]="2">Symlink Downloader</option>
<option [ngValue]="3">Symlink Downloader</option> <option [ngValue]="3">Synology DownloadStation</option>
<option [ngValue]="4">Synology DownloadStation</option>
</select> </select>
</div> </div>
<p class="help"> <p class="help">

View file

@ -382,7 +382,7 @@ public class QBittorrentController(ILogger<QBittorrentController> logger, QBitto
[Route("torrents/filePrio")] [Route("torrents/filePrio")]
[HttpGet] [HttpGet]
[HttpPost] [HttpPost]
public async Task<ActionResult> TorrentsFilePrio() public ActionResult TorrentsFilePrio()
{ {
return Ok(); return Ok();
} }