mirror of
https://github.com/afkarxyz/SpotiFLAC.git
synced 2026-04-25 23:25:57 +03:00
[PR #584] Add concurrent downloads (upto 6) with pause/resume for playlists and albums #1296
Labels
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
starred/SpotiFLAC#1296
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
📋 Pull Request Information
Original PR: https://github.com/afkarxyz/SpotiFLAC/pull/584
Author: @pavithrahatharasinghe
Created: 3/1/2026
Status: 🔄 Open
Base:
main← Head:main📝 Commits (5)
c2ddacdInitial plan5018aebAdd concurrent downloads (1-6) with pause/resume support8f00439Remove package-lock.json from tracking (project uses pnpm)b6821a4Merge pull request #1 from pavithrahatharasinghe/copilot/add-multiple-download-option24d0696Merge branch 'afkarxyz:main' into main📊 Changes
10 files changed (+525 additions, -418 deletions)
View changed files
📝
backend/progress.go(+314 -318)📝
frontend/.gitignore(+1 -0)📝
frontend/src/App.tsx(+3 -3)📝
frontend/src/components/AlbumInfo.tsx(+5 -2)📝
frontend/src/components/ArtistInfo.tsx(+5 -2)📝
frontend/src/components/DownloadProgress.tsx(+21 -3)📝
frontend/src/components/PlaylistInfo.tsx(+5 -2)📝
frontend/src/components/SettingsPage.tsx(+24 -0)📝
frontend/src/hooks/useDownload.ts(+138 -87)📝
frontend/src/lib/settings.ts(+9 -1)📄 Description
Previously, downloads were strictly sequential (one track at a time), which made downloading large albums or playlists pretty slow.
With this update, you can now configure concurrent downloads (1–6 at the same time), and there are also pause and resume controls for bulk downloads.
Note this 6 is completely a random number you can increse it if wanted
These features were vibe-coded and tested on both mac os 26.3 and Windows. I’d really recommended it if you could give them a quick test before merging.
If this isn’t something you’re interested in, no worries at all — feel free to close the pull request. I just thought it might be useful, so I wanted to share it in case others find it helpful too.
🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.