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
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:
parent
1080143fce
commit
c51f8cb503
5 changed files with 20 additions and 22 deletions
|
|
@ -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.
|
||||
|
|
|
|||
|
|
@ -46,11 +46,10 @@
|
|||
<label class="label">Downloader</label>
|
||||
<div class="control select is-fullwidth">
|
||||
<select [(ngModel)]="downloadClient" (ngModelChange)="setFinishAction()">
|
||||
<option [ngValue]="0">Internal Downloader</option>
|
||||
<option [ngValue]="1">Bezzad</option>
|
||||
<option [ngValue]="2">Aria2c</option>
|
||||
<option [ngValue]="3">Symlink Downloader</option>
|
||||
<option [ngValue]="4">Synology DownloadStation</option>
|
||||
<option [ngValue]="0">Bezzad</option>
|
||||
<option [ngValue]="1">Aria2c</option>
|
||||
<option [ngValue]="2">Symlink Downloader</option>
|
||||
<option [ngValue]="3">Synology DownloadStation</option>
|
||||
</select>
|
||||
</div>
|
||||
<p class="help">
|
||||
|
|
|
|||
|
|
@ -186,11 +186,10 @@
|
|||
<div class="control select is-fullwidth">
|
||||
<select [(ngModel)]="updateSettingsDownloadClient">
|
||||
<option [ngValue]="null"></option>
|
||||
<option [ngValue]="0">Internal Downloader</option>
|
||||
<option [ngValue]="1">Bezzad</option>
|
||||
<option [ngValue]="2">Aria2c</option>
|
||||
<option [ngValue]="3">Symlink Downloader</option>
|
||||
<option [ngValue]="4">Synology DownloadStation</option>
|
||||
<option [ngValue]="0">Bezzad</option>
|
||||
<option [ngValue]="1">Aria2c</option>
|
||||
<option [ngValue]="2">Symlink Downloader</option>
|
||||
<option [ngValue]="3">Synology DownloadStation</option>
|
||||
</select>
|
||||
</div>
|
||||
<p class="help">
|
||||
|
|
|
|||
|
|
@ -58,18 +58,15 @@
|
|||
<label class="label">Downloader</label>
|
||||
@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 @@
|
|||
<label class="label">Downloader</label>
|
||||
<div class="control select is-fullwidth">
|
||||
<select [(ngModel)]="updateSettingsDownloadClient">
|
||||
<option [ngValue]="0">Internal Downloader</option>
|
||||
<option [ngValue]="1">Bezzad</option>
|
||||
<option [ngValue]="2">Aria2c</option>
|
||||
<option [ngValue]="3">Symlink Downloader</option>
|
||||
<option [ngValue]="4">Synology DownloadStation</option>
|
||||
<option [ngValue]="0">Bezzad</option>
|
||||
<option [ngValue]="1">Aria2c</option>
|
||||
<option [ngValue]="2">Symlink Downloader</option>
|
||||
<option [ngValue]="3">Synology DownloadStation</option>
|
||||
</select>
|
||||
</div>
|
||||
<p class="help">
|
||||
|
|
|
|||
|
|
@ -382,7 +382,7 @@ public class QBittorrentController(ILogger<QBittorrentController> logger, QBitto
|
|||
[Route("torrents/filePrio")]
|
||||
[HttpGet]
|
||||
[HttpPost]
|
||||
public async Task<ActionResult> TorrentsFilePrio()
|
||||
public ActionResult TorrentsFilePrio()
|
||||
{
|
||||
return Ok();
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in a new issue