[PR #584] [CLOSED] Add concurrent downloads (upto 6) with pause/resume for playlists and albums #1905

Closed
opened 2026-03-13 19:40:33 +03:00 by kerem · 0 comments
Owner

📋 Pull Request Information

Original PR: https://github.com/afkarxyz/SpotiFLAC/pull/584
Author: @pavithrahatharasinghe
Created: 3/1/2026
Status: Closed

Base: mainHead: main


📝 Commits (5)

  • c2ddacd Initial plan
  • 5018aeb Add concurrent downloads (1-6) with pause/resume support
  • 8f00439 Remove package-lock.json from tracking (project uses pnpm)
  • b6821a4 Merge pull request #1 from pavithrahatharasinghe/copilot/add-multiple-download-option
  • 24d0696 Merge 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.

## 📋 Pull Request Information **Original PR:** https://github.com/afkarxyz/SpotiFLAC/pull/584 **Author:** [@pavithrahatharasinghe](https://github.com/pavithrahatharasinghe) **Created:** 3/1/2026 **Status:** ❌ Closed **Base:** `main` ← **Head:** `main` --- ### 📝 Commits (5) - [`c2ddacd`](https://github.com/afkarxyz/SpotiFLAC/commit/c2ddacd25833f5f12496c81deaabb6e495c2743e) Initial plan - [`5018aeb`](https://github.com/afkarxyz/SpotiFLAC/commit/5018aeb68aa6718b628561d0855a8efcd32b0815) Add concurrent downloads (1-6) with pause/resume support - [`8f00439`](https://github.com/afkarxyz/SpotiFLAC/commit/8f004397b48ad077d6d21408e475b8419da11096) Remove package-lock.json from tracking (project uses pnpm) - [`b6821a4`](https://github.com/afkarxyz/SpotiFLAC/commit/b6821a4e5d7baa4a8d1febae05839353ba048132) Merge pull request #1 from pavithrahatharasinghe/copilot/add-multiple-download-option - [`24d0696`](https://github.com/afkarxyz/SpotiFLAC/commit/24d06968fd7a32798220ac89cb2fe21ded364254) Merge branch 'afkarxyz:main' into main ### 📊 Changes **10 files changed** (+525 additions, -418 deletions) <details> <summary>View changed files</summary> 📝 `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) </details> ### 📄 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. --- <sub>🔄 This issue represents a GitHub Pull Request. It cannot be merged through Gitea due to API limitations.</sub>
kerem 2026-03-13 19:40:33 +03:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference
starred/SpotiFLAC#1905
No description provided.