Release v1.4.33 with DLC import and stats hotfixes
Build and Release / build (push) Has been cancelled

This commit is contained in:
Sucukdeluxe
2026-03-01 01:39:51 +01:00
parent ff1036563a
commit edbfba6663
8 changed files with 231 additions and 7 deletions
+24
View File
@@ -681,6 +681,8 @@ export class DownloadManager extends EventEmitter {
return this.statsCache;
}
this.resetSessionTotalsIfQueueEmpty();
let totalDownloaded = 0;
let totalFiles = 0;
for (const item of Object.values(this.session.items)) {
@@ -714,6 +716,25 @@ export class DownloadManager extends EventEmitter {
return stats;
}
private resetSessionTotalsIfQueueEmpty(): void {
if (this.itemCount > 0 || this.session.packageOrder.length > 0) {
return;
}
if (Object.keys(this.session.items).length > 0 || Object.keys(this.session.packages).length > 0) {
return;
}
this.session.totalDownloadedBytes = 0;
this.session.runStartedAt = 0;
this.lastGlobalProgressBytes = 0;
this.lastGlobalProgressAt = nowMs();
this.speedEvents = [];
this.speedEventsHead = 0;
this.speedBytesLastWindow = 0;
this.statsCache = null;
this.statsCacheAt = 0;
}
public renamePackage(packageId: string, newName: string): void {
const pkg = this.session.packages[packageId];
if (!pkg) {
@@ -922,6 +943,7 @@ export class DownloadManager extends EventEmitter {
this.nonResumableActive = 0;
this.retryAfterByItem.clear();
this.retryStateByItem.clear();
this.resetSessionTotalsIfQueueEmpty();
this.persistNow();
this.emitState(true);
}
@@ -1966,6 +1988,7 @@ export class DownloadManager extends EventEmitter {
pkg.status = "completed";
}
}
this.resetSessionTotalsIfQueueEmpty();
this.persistSoon();
}
@@ -2371,6 +2394,7 @@ export class DownloadManager extends EventEmitter {
this.runPackageIds.delete(packageId);
this.runCompletedPackages.delete(packageId);
this.hybridExtractRequeue.delete(packageId);
this.resetSessionTotalsIfQueueEmpty();
}
private async ensureScheduler(): Promise<void> {