diantahoc / byteflood

A free as in freedom BitTorrent client, designed for everyone.
GNU General Public License v3.0
5 stars 0 forks source link

List of torrent feeds sources and their quirks. #6

Open diantahoc opened 10 years ago

diantahoc commented 10 years ago

Only provide magnet links. This is fine, but the current magnet links handling in ByteFlood cannot work in an automated way, so it relies on torrent cache websites.

No actual download link. Have to parse the linked page in order to extract a magnet link, which isn't implemented.

hexafluoride commented 10 years ago

This is fine, but the current magnet links handling in ByteFlood cannot work in an automated way, so it relies on torrent cache websites.

Actually, no. With https://github.com/hexafluoride/byteflood/commit/fff422f38e8e6a82da0afe987acbebadf3d6f04b, torrent caches are no longer used, and magnet links are retrieved by the "traditional" way.

diantahoc commented 10 years ago

The feed manager still relies on torrent cache services ( https://github.com/diantahoc/byteflood/blob/master/ByteFlood/Services/RSS/FeedsManager.cs#L201 ).

Changing it would be easy though, which I will do in a moment.

hexafluoride commented 10 years ago

Oh.

diantahoc commented 10 years ago

Just finished patching the feed manager. It still use cache services as a primary download source for magnets, since it's faster. But this behavior can be changed by swapping 2 lines.

https://github.com/diantahoc/byteflood/blob/master/ByteFlood/Services/RSS/FeedsManager.cs#L229