feat(dl): add download progress tracking and reporting

This commit is contained in:
2025-10-03 10:29:34 -04:00
parent 90053b67c5
commit 14a5b50942
2 changed files with 42 additions and 4 deletions

View File

@@ -338,7 +338,17 @@ export class DeezerQueueManager {
downloadURL,
appSettings.musicFolder!,
appSettings.deezerFormat,
undefined,
(progress) => {
// Update progress in queue
updateQueueItem(item.id, {
progress: progress.percentage,
currentTrack: {
title: track.title,
artist: track.artist,
progress: progress.percentage
}
});
},
0,
trackData.SNG_ID
);