Otiel / BandcampDownloader

A Windows app used to download albums from Bandcamp.
Other
962 stars 76 forks source link

Select discography albums to download #219

Closed andrienko closed 2 years ago

andrienko commented 2 years ago

Maybe, would be nice, when downloading discography, to have option to exclude some of the albums (maybe via a modal with listbox or something, maybe activated by separate button or just an option).

Right now, whenever I want to skip some albums (when downloading discography fails on some albums) I am using the snippet:

console.log([].map.call(document.querySelectorAll('.music-grid-item.square a'), a => a.href).join("\r\n"))

(I just paste it into console and it gives list of URLs, I can then paste these to window and erase unwanted ones from there. Maybe will be useful for someone...)

Otiel commented 2 years ago

Thanks for the idea! 👍

That's actually something I have in mind, but I need to do a lot of refactoring before starting to implement this. One day maybe...

Otiel commented 2 years ago

Duplicate #210