Add configurable parallel extraction count (1-8, default 2)

- New setting maxParallelExtract in AppSettings
- UI input in Entpacken tab: "Parallele Entpackungen"
- Replaces hardcoded maxConcurrent=2 in acquirePostProcessSlot

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Sucukdeluxe
2026-03-03 20:31:24 +01:00
co-authored by Claude Opus 4.6
parent 31ce1e6618
commit 56a507b45d
5 changed files with 5 additions and 1 deletions
+1 -1
View File
@@ -2997,7 +2997,7 @@ export class DownloadManager extends EventEmitter {
}
private async acquirePostProcessSlot(): Promise<void> {
const maxConcurrent = 2;
const maxConcurrent = this.settings.maxParallelExtract || 2;
if (this.packagePostProcessActive < maxConcurrent) {
this.packagePostProcessActive += 1;
return;