mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
Xthor: improvements
This commit is contained in:
@@ -100,6 +100,12 @@ namespace Jackett.Indexers
|
|||||||
AddCategoryMapping(96, TorznabCatType.BooksEbook); // EBOOKS MAGAZINES
|
AddCategoryMapping(96, TorznabCatType.BooksEbook); // EBOOKS MAGAZINES
|
||||||
AddCategoryMapping(99, TorznabCatType.BooksEbook); // EBOOKS ANIME
|
AddCategoryMapping(99, TorznabCatType.BooksEbook); // EBOOKS ANIME
|
||||||
AddCategoryMapping(23, TorznabCatType.PCPhoneAndroid); // ANDROID
|
AddCategoryMapping(23, TorznabCatType.PCPhoneAndroid); // ANDROID
|
||||||
|
|
||||||
|
AddCategoryMapping(36, TorznabCatType.XXX); // XxX / Films
|
||||||
|
AddCategoryMapping(105, TorznabCatType.XXX); // XxX / Séries
|
||||||
|
AddCategoryMapping(114, TorznabCatType.XXX); // XxX / Lesbiennes
|
||||||
|
AddCategoryMapping(115, TorznabCatType.XXX); // XxX / Gays
|
||||||
|
AddCategoryMapping(113, TorznabCatType.XXX); // XxX / Hentai
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
@@ -193,6 +199,10 @@ namespace Jackett.Indexers
|
|||||||
MinimumSeedTime = 345600,
|
MinimumSeedTime = 345600,
|
||||||
PublishDate = DateTimeUtil.UnixTimestampToDateTime(torrent.added),
|
PublishDate = DateTimeUtil.UnixTimestampToDateTime(torrent.added),
|
||||||
Size = torrent.size,
|
Size = torrent.size,
|
||||||
|
Grabs = torrent.times_completed,
|
||||||
|
Files = torrent.numfiles,
|
||||||
|
UploadVolumeFactor = 1,
|
||||||
|
DownloadVolumeFactor = (torrent.freeleech == 1 ? 0 : 1),
|
||||||
Guid = new Uri(TorrentDescriptionUrl.Replace("{id}", torrent.id.ToString())),
|
Guid = new Uri(TorrentDescriptionUrl.Replace("{id}", torrent.id.ToString())),
|
||||||
Comments = new Uri(TorrentCommentUrl.Replace("{id}", torrent.id.ToString())),
|
Comments = new Uri(TorrentCommentUrl.Replace("{id}", torrent.id.ToString())),
|
||||||
Link = new Uri(torrent.download_link)
|
Link = new Uri(torrent.download_link)
|
||||||
|
Reference in New Issue
Block a user