From fff3e0fd2af6f56db33fe89a2b64db38b7073664 Mon Sep 17 00:00:00 2001 From: David Ficociello Date: Thu, 16 Apr 2026 08:17:50 -0400 Subject: [PATCH] feat: ship full 546-entry Prowlarr catalog as builtin fallback MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Replaces the 80-entry static catalog with the full set of 546 indexer definitions generated from Prowlarr/Indexers definitions/v11 on 2026-04-16. The dynamic Prowlarr fetch still runs on startup and refreshes every 24 hours, but now the fallback (when GitHub is rate-limited, unreachable, or slow) shows the complete catalog instead of a small subset. File size: 555 KB source (was 34 KB). Compresses to ~30 KB in the binary. Adds <0.1% to the Docker image. The 3 entries that failed to parse from Prowlarr's repo were malformed YAML definitions — consistent with Prowlarr's own CI skipping them. Co-Authored-By: Claude Opus 4.6 (1M context) --- internal/core/indexer/catalog_data.go | 4151 ++++++++++++++++++++++++- 1 file changed, 4015 insertions(+), 136 deletions(-) diff --git a/internal/core/indexer/catalog_data.go b/internal/core/indexer/catalog_data.go index af38ef3..acaa377 100644 --- a/internal/core/indexer/catalog_data.go +++ b/internal/core/indexer/catalog_data.go @@ -1,254 +1,4133 @@ package indexer -// builtinCatalog contains the built-in indexer definitions. -// Modeled after Prowlarr's Cardigann YAML catalog structure. -// Each entry represents a template that can be configured and added. -var builtinCatalog = []CatalogEntry{ - // ── Public Torrent ─────────────────────────────────────────────────── - {ID: "1337x", Name: "1337x", Description: "1337x is a public torrent site offering verified torrents for movies, TV shows, games, music, and software.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://1337x.to", "https://1337x.st"}, Settings: []Field{ - {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time", Options: []FieldOption{{Name: "created", Value: "time"}, {Name: "seeders", Value: "seeders"}, {Name: "size", Value: "size"}}}, - }}, - {ID: "thepiratebay", Name: "The Pirate Bay", Description: "The Pirate Bay is the galaxy's most resilient public BitTorrent site.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://thepiratebay.org"}, Settings: []Field{}}, - {ID: "yts", Name: "YTS", Description: "YTS.MX is a public torrent site specializing in small-size, high-quality movie releases (720p/1080p/2160p).", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies"}, URLs: []string{"https://yts.mx"}, Settings: []Field{}}, - {ID: "eztv", Name: "EZTV", Description: "EZTV is a public torrent site focused on TV show releases with a large catalog of current and older series.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"TV"}, URLs: []string{"https://eztv.re"}, Settings: []Field{}}, - {ID: "limetorrents", Name: "LimeTorrents", Description: "LimeTorrents is a public torrent search engine indexing verified torrents across all categories.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://www.limetorrents.lol"}, Settings: []Field{}}, - {ID: "torrentgalaxy", Name: "TorrentGalaxy", Description: "TorrentGalaxy is a public torrent site with a community-driven catalog featuring IMDB ratings and screenshots.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Other", "XXX"}, URLs: []string{"https://torrentgalaxy.to"}, Settings: []Field{}}, - {ID: "kickasstorrents", Name: "KickassTorrents", Description: "KickassTorrents is a public torrent search engine with a large and varied catalog.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Books", "Other"}, URLs: []string{"https://kickasstorrents.to"}, Settings: []Field{}}, - {ID: "nyaa", Name: "Nyaa", Description: "Nyaa is a public BitTorrent tracker for anime, manga, and East Asian media.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"TV", "Audio", "Books", "Other"}, URLs: []string{"https://nyaa.si"}, Settings: []Field{ - {Name: "cat_filter", Type: "select", Label: "Category filter", Default: "0_0", Options: []FieldOption{{Name: "All", Value: "0_0"}, {Name: "Anime", Value: "1_0"}, {Name: "Audio", Value: "2_0"}, {Name: "Literature", Value: "3_0"}}}, - }}, - {ID: "rutracker", Name: "RuTracker", Description: "RuTracker is one of the largest public Russian torrent trackers with an enormous catalog across all categories.", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Books", "Other"}, URLs: []string{"https://rutracker.org"}, Settings: []Field{ - {Name: "cookie", Type: "text", Label: "Cookie", HelpText: "Paste your session cookie value", Required: false, Placeholder: "bb_session=..."}, - }}, - {ID: "glodls", Name: "GloDLS", Description: "GloDLS is a public torrent tracker covering movies, TV shows, games, anime, and software.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://glodls.to"}, Settings: []Field{}}, - {ID: "torlock", Name: "Torlock", Description: "Torlock is a public torrent index that only lists verified torrents.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Books", "Other"}, URLs: []string{"https://www.torlock.com"}, Settings: []Field{}}, - {ID: "bitsearch", Name: "BitSearch", Description: "BitSearch is a clean public torrent search engine aggregating results from multiple sources.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://bitsearch.to"}, Settings: []Field{}}, - {ID: "academictorrents", Name: "Academic Torrents", Description: "Academic Torrents is a public tracker for sharing enormous academic datasets and research papers.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Books", "Other"}, URLs: []string{"https://academictorrents.com"}, Settings: []Field{}}, - {ID: "btdig", Name: "BTDigg", Description: "BTDigg is a public BitTorrent DHT search engine providing full-text search over the distributed hash table.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://btdig.com"}, Settings: []Field{}}, +// Code generated from Prowlarr/Indexers definitions/v11 on 2026-04-16. +// 546 indexer definitions. Regenerate with: go run gen_catalog.go > catalog_data.go - // ── Semi-Private Torrent ───────────────────────────────────────────── - {ID: "iptorrents", Name: "IPTorrents", Description: "IPTorrents is a large semi-private tracker with a vast catalog of movies, TV, music, games, and software.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books", "Other"}, URLs: []string{"https://iptorrents.com"}, Settings: []Field{ - {Name: "cookie", Type: "text", Label: "Cookie", HelpText: "Login to the site and copy your cookie value.", Required: true, Placeholder: "uid=...; pass=..."}, +var builtinCatalog = []CatalogEntry{ + {ID: "0magnet", Name: "0Magnet", Description: "ØMagnet is a CHINESE Public tracker for Asian 3X (JAV)", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://13mag.net/", "https://16mag.net/"}, Settings: []Field{}}, + {ID: "1337x", Name: "1337x", Description: "1337x is a Public torrent site that offers verified torrent downloads", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://1337x.to/", "https://1337x.st/", "https://x1337x.ws/", "https://x1337x.eu/", "https://x1337x.cc/"}, Settings: []Field{ + {Name: "uploader", Type: "text", Label: "Filter by Uploader"}, + {Name: "info_uploader", Type: "info", Label: "About filtering by Uploader", Default: "You can filter by Uploader by entering a Case Sensitive username, or leave empty to get all results.
Note: this is the username of the Uploader and not the Groupname that often show up at the end of 1337x titles, eg -GalaxyRG."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "downloadlink", Type: "select", Label: "Download link", Default: "http://itorrents.org/"}, + {Name: "downloadlink2", Type: "select", Label: "Download link (fallback)", Default: "magnet:"}, + {Name: "info_download", Type: "info", Label: "About the Download links", Default: "As the iTorrents .torrent download link on this site is known to fail from time to time, we suggest using the magnet link as a fallback. The BTCache and Torrage services are not supported because they require additional user interaction (a captcha for BTCache and a download button on Torrage.)"}, + {Name: "disablesort", Type: "checkbox", Label: "Disable sorting - 1337x prevents sorting searches during high server load, which breaks the indexer when performing a keyword search - disable if you get zero results", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "52bt", Name: "52BT", Description: "52BT is a CHINESE Public tracker for MOVIES / TV / MUSIC / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.529072.xyz/", "https://www.529073.xyz/"}, Settings: []Field{ + {Name: "cat-id", Type: "select", Label: "Category", Default: "0"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "2"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "acgrip", Name: "ACG.RIP", Description: "ACG.RIP is a CHINESE Public torrent tracker for the latest anime and Japanese related torrents", Language: "zh-CN", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://acg.rip/"}, Settings: []Field{}}, + {ID: "anisource", Name: "AniSource", Description: "AniSource is a Public site for HD Anime raws.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"TV"}, URLs: []string{"https://asnet.pw/"}, Settings: []Field{}}, + {ID: "arabtorrents-com", Name: "arab-torrents.com", Description: "arab-torrents.com is an ARABIC Public Torrent Tracker for MOVIES / TV / GENERAL", Language: "ar-AE", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://arab-torrents.com/"}, Settings: []Field{}}, + {ID: "bangumi-moe", Name: "Bangumi Moe", Description: "Bangumi Moe is a Public torrent site for ANIME", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://bangumi.moe/"}, Settings: []Field{}}, + {ID: "bigfangroup", Name: "BigFANGroup", Description: "BigFANGroup is a RUSSIAN Public Torrent Tracker for MOVIES / TV", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bigfangroup.org/", "https://www.freebfg.org/"}, Settings: []Field{ + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "bitru", Name: "BitRu", Description: "BitRu is a RUSSIAN Public Torrent Tracker for MOVIES / TV / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bitru.org/"}, Settings: []Field{ + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "adverts", Type: "checkbox", Label: "Include Advertising", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "_"}, + }}, + {ID: "blueroms", Name: "BlueRoms", Description: "BlueRoms is a Public Torrent Tracker for ROMS", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://www.blueroms.ws/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "btetree", Name: "BT.etree", Description: "BT.etree is a Public Tracker dedicated to Bootleg FLAC MUSIC", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://bt.etree.org/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + }}, + {ID: "btdirectory", Name: "BTdirectory", Description: "BTdirectory (BT目录) is a Public DHT Crawler", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://btmulu.live/", "https://www.btmulu.cyou/", "https://www.btmulu.quest/", "https://www.btmulu.cfd/", "https://www.btmulu.help/"}, Settings: []Field{ + {Name: "info_category_8000", Type: "text", Label: ""}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "btstate", Name: "btstate", Description: "btstate is a Public BitTorrent DHT search engine.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://btstate.com/"}, Settings: []Field{ + {Name: "info_category_8000", Type: "text", Label: ""}, + }}, + {ID: "byrutor", Name: "Byrutor", Description: "Byrutor is a RUSSIAN Public Torrent Tracker for GAMES", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://byrutgame.org/"}, Settings: []Field{}}, + {ID: "catorrent", Name: "Catorrent", Description: "Catorrent is a RUSSIAN Public Torrent Tracker for GAMES", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://catorrent.net/"}, Settings: []Field{}}, + {ID: "crackingpatching", Name: "CrackingPatching", Description: "CrackingPatching is a Public tracker for Software and Apps", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://crackingpatching.com/"}, Settings: []Field{}}, + {ID: "damagnet", Name: "DaMagNet", Description: "DaMagNet is a Public DHT Crawler", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://damag.net/"}, Settings: []Field{ + {Name: "info_category_8000", Type: "text", Label: ""}, + }}, + {ID: "demonoid-clone", Name: "Demonoid Clone", Description: "Demonoid Clone is a Public Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://demonoid.nl/"}, Settings: []Field{}}, + {ID: "dmhy", Name: "dmhy", Description: "dmhy is a TAIWANESE Public magnet tracker for ANIME", Language: "zh-TW", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://share.dmhy.org/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "ehentai", Name: "E-Hentai", Description: "E-Hentai is a Public site for Hentai doujinshi, manga.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"TV"}, URLs: []string{"https://e-hentai.org/"}, Settings: []Field{}}, + {ID: "ebookbay", Name: "EBookBay", Description: "EBook Bay (EBB) is a Public Torrent Tracker for E-BOOKS", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books"}, URLs: []string{"https://ebb.la/"}, Settings: []Field{}}, + {ID: "elitetorrent-wf", Name: "Elitetorrent-wf", Description: "Elitetorrent-wf is a SPANISH Public tracker for MOVIES / TV", Language: "es-ES", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://www.elitetorrent.wf/"}, Settings: []Field{}}, + {ID: "extratorrent-st", Name: "ExtraTorrent.st", Description: "ExtraTorrent.st is a Public tracker for MOVIE / TV / GENERAL magnets", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://extratorrent.st/", "https://extratorrent.ninjaproxy1.com/", "https://extratorrent.proxyninja.org/", "https://extratorrent.proxyninja.net/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "eztv", Name: "EZTV", Description: "EZTV is a Public torrent site for TV shows", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://eztvx.to/", "https://eztv.wf/", "https://eztv.tf/", "https://eztv.yt/", "https://eztv1.xyz/"}, Settings: []Field{}}, + {ID: "filemood", Name: "FileMood", Description: "FileMood is a Public BitTorrent DHT search engine.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://filemood.com/"}, Settings: []Field{ + {Name: "info_category_8000", Type: "text", Label: ""}, + }}, + {ID: "freejavtorrent", Name: "Free JAV Torrent", Description: "Free JAV Torrent is a Public tracker for Asian 3X (JAV)", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://www.freejavtorrent.com/"}, Settings: []Field{}}, + {ID: "gamestorrents", Name: "GamesTorrents", Description: "GamesTorrents is a SPANISH Public tracker for GAMES", Language: "es-ES", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://www.gamestorrents.app/"}, Settings: []Field{}}, + {ID: "ilcorsaronero", Name: "ilCorSaRoNeRo", Description: "ilCorSaRoNeRo is an ITALIAN Public site for MOVIES / TV / GENERAL", Language: "it-IT", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://ilcorsaronero.link/", "https://ilcorsaronero.torrentbay.st/"}, Settings: []Field{ + {Name: "category-id", Type: "select", Label: "Category (for Keyword search)", Default: "all"}, + {Name: "dl_type", Type: "select", Label: "Download type", Default: "Magnet"}, + }}, + {ID: "internetarchive", Name: "Internet Archive", Description: "Internet Archive is a non-profit digital library offering free universal access to books, movies & music, as well as 406 billion archived web pages", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://archive.org/"}, Settings: []Field{ + {Name: "titleOnly", Type: "checkbox", Label: "Search only in title", Default: "true"}, + {Name: "noMagnet", Type: "checkbox", Label: "Download using .torrent only. No Magnets.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "publicdate"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "-"}, + }}, + {ID: "kickasstorrents-to", Name: "kickasstorrents.to", Description: "kickasstorrents.to is a Public KickAssTorrent clone for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://kickass.torrentbay.st/", "https://kickass.torrentsbay.org/", "https://kickasstorrents.unblockninja.com/", "https://kickasstorrents.ninjaproxy1.com/", "https://kickasstorrents.proxyninja.org/", "https://kickasstorrents.proxyninja.net/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "kickasstorrents-ws", Name: "kickasstorrents.ws", Description: "kickasstorrents.ws is a Public KickAssTorrent clone for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://kickass.ws/", "https://kickasstorrents.bz/", "https://kkickass.com/", "https://kkat.net/", "https://kick4ss.com/", "https://kickasst.net/", "https://kickasstorrents.id/", "https://thekat.cc/", "https://kattracker.com/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time_add"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "limetorrents", Name: "LimeTorrents", Description: "LimeTorrents is a Public general torrent index with mostly verified torrents", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.limetorrents.fun/", "https://limetorrents.unblockninja.com/", "https://limetorrents.ninjaproxy1.com/", "https://limetorrents.proxyninja.org/", "https://limetorrents.proxyninja.net/", "https://limetorrents.torrentbay.st/", "https://limetorrents.torrentsbay.org/"}, Settings: []Field{ + {Name: "downloadlink", Type: "select", Label: "Download link", Default: "magnet:"}, + {Name: "downloadlink2", Type: "select", Label: "Download link (fallback)", Default: "http://itorrents.org/"}, + {Name: "info_download", Type: "info", Label: "About the Download links", Default: "As the .torrent download links on this site are known to fail from time to time, you can optionally set as a fallback an automatic alternate link."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "info_category_8000", Type: "info", Label: "About LimeTorrents Categories", Default: "LimeTorrents only returns category Other in its Keywordless search results page.
To pass your apps' indexer TEST you will need to include the 8000(Other) category."}, + }}, + {ID: "linuxtracker", Name: "LinuxTracker", Description: "LinuxTracker is a Public Linux ISO Torrent Repository", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://linuxtracker.org/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "mactorrentsdownload", Name: "Mac Torrents Download", Description: "Mac Torrents Download is a Public tracker for Mac software", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://www.torrentmac.net/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "magnetcat", Name: "Magnet Cat", Description: "Magnet Cat is a Public Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://magnetcatcat.com/", "https://clmclm.com/", "https://www.8800561.xyz/", "https://www.8800562.xyz/", "https://www.8800563.xyz/", "https://www.8800564.xyz/"}, Settings: []Field{ + {Name: "cat-id", Type: "select", Label: "Category", Default: "0"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "2"}, + }}, + {ID: "magnetdownload", Name: "MagnetDownload", Description: "MagnetDownload is a Public DHT Crawler", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://www.magnetdownload.com/"}, Settings: []Field{ + {Name: "info_category_8000", Type: "text", Label: ""}, + }}, + {ID: "magnetz", Name: "Magnetz", Description: "Magnetz is a Public torrent meta-search engine", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://magnetz.eu/"}, Settings: []Field{ + {Name: "info_category_8000", Type: "text", Label: ""}, + }}, + {ID: "megapeer", Name: "MegaPeer", Description: "MegaPeer is a RUSSIAN Public Torrent Tracker for MOVIES / TV", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://megapeer.vip/"}, Settings: []Field{ + {Name: "info_category_8000", Type: "text", Label: ""}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "0"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "0"}, + }}, + {ID: "mikan", Name: "Mikan", Description: "Mikan is a CHINESE Public torrent tracker for ANIME", Language: "zh-CN", Protocol: "torrent", Privacy: "public", Categories: []string{"TV"}, URLs: []string{"https://mikanani.me/"}, Settings: []Field{}}, + {ID: "mixtapetorrent", Name: "MixtapeTorrent", Description: "MixtapeTorrent is a Public Music site for MixTapes", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"http://www.mixtapetorrent.com/"}, Settings: []Field{}}, + {ID: "moviesdvdr", Name: "MoviesDVDR", Description: "MoviesDVDR is a SPANISH Public tracker for MOVIES", Language: "es-ES", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://www.moviesdvdr.co/"}, Settings: []Field{}}, + {ID: "mypornclub", Name: "MyPornClub", Description: "MyPornClub is a Public Torrent Tracker for 3X", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"XXX"}, URLs: []string{"https://myporn.club/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "nekobt", Name: "nekoBT", Description: "nekoBT is a Public Torrent Tracker for ANIME", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV"}, URLs: []string{"https://nekobt.to/"}, Settings: []Field{ + {Name: "incltags", Type: "checkbox", Label: "Include tags in titles.", Default: "false"}, + {Name: "info_tags", Type: "info", Label: "About including tags in titles.", Default: "To be used with Sonarr and Radarr custom formats, and any other downstream automations/filtering. See wiki for more information."}, + {Name: "levels", Type: "select", Label: "Subtitle-Level", Default: "_"}, + {Name: "audio_lang", Type: "text", Label: "Audio Language (comma-separated codes, e.g. en,ja)"}, + {Name: "fansub_lang", Type: "text", Label: "Fansub Language (comma-separated codes, e.g. en,ja)"}, + {Name: "sub_lang", Type: "text", Label: "Subtitle Language (comma-separated codes, e.g. en,ja)"}, + {Name: "hardsub", Type: "select", Label: "Hardcoded Subtitles", Default: "_"}, + {Name: "otl", Type: "select", Label: "OTL Subtitles", Default: "_"}, + {Name: "mtl", Type: "select", Label: "MTL Subtitles", Default: "_"}, + {Name: "group_id", Type: "text", Label: "Group ID"}, + }}, + {ID: "newstudio", Name: "NewStudio", Description: "NewStudio is a RUSSIAN Public site for TV", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"TV"}, URLs: []string{"https://newstudio.tv/"}, Settings: []Field{ + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "nipponsei", Name: "Nipponsei", Description: "Nipponsei is a Public site for MUSIC fresh from JAPAN", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio"}, URLs: []string{"https://nipponsei.minglong.org/"}, Settings: []Field{}}, + {ID: "noname-club", Name: "NoNaMe Club", Description: "NoNaMe Club (NNM-Club) is a RUSSIAN Public Tracker for MOVIES / TV / MUSIC", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://nnmclub.to/"}, Settings: []Field{ + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "nortorrent", Name: "NorTorrent", Description: "NorTorrent is a FRENCH Public tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.nortorrent.cc/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + }}, + {ID: "nyaasi", Name: "Nyaa.si", Description: "Nyaa is a Public torrent site focused on Eastern ASIAN media including anime, manga, literature and music", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://nyaa.si/", "https://nyaa.iss.ink/", "https://nyaa.land/", "https://nyaa.mom/", "https://nyaa.unblockninja.com/"}, Settings: []Field{ + {Name: "prefer_magnet_links", Type: "checkbox", Label: "Prefer Magnet Links", Default: "true"}, + {Name: "sonarr_compatibility", Type: "checkbox", Label: "Improve Sonarr compatibility by trying to add Season information into Release Titles", Default: "false"}, + {Name: "strip_s01", Type: "checkbox", Label: "Remove first season keywords (S1/S01/Season 1), as some results do not include this for first/single season releases", Default: "false"}, + {Name: "radarr_compatibility", Type: "checkbox", Label: "Improve Radarr compatibility by removing year information from keywords and adding it to Release Titles", Default: "false"}, + {Name: "filter-id", Type: "select", Label: "Filter", Default: "0"}, + {Name: "cat-id", Type: "select", Label: "Category", Default: "0"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "onejav", Name: "OneJAV", Description: "OneJAV is a Public tracker for ASIAN 3X (JAV)", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://onejav.com/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "opensharing", Name: "OpenSharing", Description: "OpenSharing is a RUSSIAN Public Torrent Tracker for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"XXX"}, URLs: []string{"https://opensharing.org/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "t"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "d"}, + }}, + {ID: "pandacd", Name: "PandaCD", Description: "PandaCD is a Public Tracker for MUSIC (Creative Commons and artist-permitted content)", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio"}, URLs: []string{"https://pandacd.io/"}, Settings: []Field{}}, + {ID: "pctorrent", Name: "PC-torrent", Description: "PC-torrent is a RUSSIAN Public Torrent Tracker for Games", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://pc-torrents.games/"}, Settings: []Field{}}, + {ID: "plugintorrent", Name: "plugintorrent", Description: "plugintorrent is a Public site for AUDIO apps, plugins and samples", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://plugintorrent.com/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "pornotorrent", Name: "PornoTorrent", Description: "PornoTorrent is a BRAZILIAN Public Torrent Tracker for 3X", Language: "pt-BR", Protocol: "torrent", Privacy: "public", Categories: []string{"XXX"}, URLs: []string{"https://pornotorrent.com.br/"}, Settings: []Field{}}, + {ID: "pornrips", Name: "PornRips", Description: "PornRips is a Public site for 3X", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://pornrips.to/"}, Settings: []Field{}}, + {ID: "postman", Name: "Postman", Description: "Postman is a Public I2P Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"http://tracker2.postman.i2p/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + }}, + {ID: "rintornet", Name: "RinTor.NeT", Description: "RinTor.NeT is a RUSSIAN Public tracker for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"XXX"}, URLs: []string{"https://www.rintor.net/"}, Settings: []Field{}}, + {ID: "rutor", Name: "RuTor", Description: "RuTor is a RUSSIAN Public site for MOVIES / TV / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "Other", "TV"}, URLs: []string{"https://rutor.info/", "https://rutor.is/", "http://6tor.org/"}, Settings: []Field{ + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site (Applies only to Search with Keywords)", Default: "0"}, + {Name: "info_category_8000", Type: "text", Label: ""}, + }}, + {ID: "rutracker-ru", Name: "RuTracker.RU", Description: "RuTracker.RU is a RUSSIAN Public Torrent Tracker for MOVIES / TV / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"http://rutracker.ru/"}, Settings: []Field{ + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "sexypics", Name: "Sexy-Pics", Description: "Sexy-Pics is a Public Magnet Links site for 3X MP4", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://www.sexy-pics.us/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "age"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "shanaproject", Name: "Shana Project", Description: "Shana Project is a Public torrent site for ANIME", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"TV"}, URLs: []string{"https://www.shanaproject.com/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "Descending"}, + {Name: "info", Type: "info", Label: "Searching", Default: "This site only supports searching for Titles. Do not add a season or episode number, or a quality to your query."}, + }}, + {ID: "showrss-yml", Name: "showRSS", Description: "showRSS is a service that allows you to keep track of your favorite TV shows", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"TV"}, URLs: []string{"https://showrss.info/"}, Settings: []Field{}}, + {ID: "skidrowrepack", Name: "SkidrowRepack", Description: "SkidrowRepack is a Public Torrent Tracker for GAMES", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://skidrowrepack.com/"}, Settings: []Field{}}, + {ID: "sosulki", Name: "sosulki", Description: "sosulki is a RUSSIAN Public Torrent Tracker for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"XXX"}, URLs: []string{"https://sosulki.hlom.ru/"}, Settings: []Field{}}, + {ID: "sukebeinyaasi", Name: "sukebei.nyaa.si", Description: "sukebei.nyaa is a Public torrent site focused on adult Eastern ASIAN media including anime, manga, games and JAV", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"XXX"}, URLs: []string{"https://sukebei.nyaa.si/", "https://sukebei.nyaa.mom/"}, Settings: []Field{ + {Name: "filter-id", Type: "select", Label: "Filter", Default: "0"}, + {Name: "cat-id", Type: "select", Label: "Category", Default: "0"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "thepiratebay", Name: "The Pirate Bay", Description: "The Pirate Bay (TPB) is the galaxy’s most resilient Public BitTorrent site", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://thepiratebay.org/", "https://thepiratebay.unblockninja.com/", "https://thepiratebay.ninjaproxy1.com/", "https://tpb.proxyninja.org/", "https://thepiratebay.proxyninja.net/", "https://thepiratebay.torrentbay.st/", "https://tpb.skynetcloud.site/", "https://piratehaven.xyz/", "https://mirrorbay.top/", "https://thepiratebay0.org/", "https://thepiratebay10.xyz/", "https://pirateproxylive.org/", "https://thehiddenbay.com/", "https://thepiratebay.zone/", "https://tpb.party/", "https://piratebayproxy.live/", "https://piratebay.live/", "https://piratebay.party/", "https://thepiratebay.party/", "https://thepiratebaye.org/", "https://thepiratebay.cloud/", "https://tpb-proxy.xyz/", "https://tpb.re/", "https://tpirbay.site/", "https://tpirbay.top/", "https://tpirbay.xyz/"}, Settings: []Field{ + {Name: "apiurl", Type: "text", Label: "API URL", Default: "apibay.org"}, + {Name: "uploader", Type: "text", Label: "Filter by Uploader"}, + {Name: "info_uploader", Type: "info", Label: "About filtering by Uploader", Default: "You can filter by Uploader by entering a Case Sensitive username, or leave empty to get all results.
Note: this is the username of the Uploader and not the Groupname that often show up at the end of TPB titles, eg -MeGusta."}, + }}, + {ID: "tokyotosho", Name: "Tokyo Toshokan", Description: "Tokyo Toshokan is a Public BitTorrent Library for JAPANESE Media", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Other", "TV", "XXX"}, URLs: []string{"https://www.tokyotosho.info/"}, Settings: []Field{ + {Name: "cat", Type: "select", Label: "Category", Default: "0"}, + }}, + {ID: "torrentdownloads", Name: "Torrent Downloads", Description: "Torrent Downloads (TD) is a Public torrent site for all kinds of content", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.torrentdownloads.pro/", "https://torrentdownloads.unblockninja.com/", "https://torrentdownloads.ninjaproxy1.com/", "https://torrentdownloads.proxyninja.org/", "https://torrentdownloads.proxyninja.net/"}, Settings: []Field{ + {Name: "downloadlink", Type: "select", Label: "Download link", Default: "magnet:"}, + {Name: "downloadlink2", Type: "select", Label: "Download link (fallback)", Default: "http://itorrents.org/"}, + {Name: "info_download", Type: "info", Label: "About the Download links", Default: "As the .torrent download links on this site are known to fail from time to time, you can optionally set as a fallback an automatic alternate link."}, + }}, + {ID: "torrentoyunindir", Name: "Torrent Oyun indir", Description: "Torrent Oyun indir is a TURKISH Public torrent site for GAMES", Language: "tr-TR", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://0.torrentoyunindir.com/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "torrent-pirat", Name: "torrent-pirat", Description: "torrent-pirat is a RUSSIAN Public Torrent Tracker for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"XXX"}, URLs: []string{"http://www.torrent-pirat.com/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "t"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "d"}, + }}, + {ID: "torrentby", Name: "torrent.by", Description: "torrent.by is a BELARUSIAN Public Torrent Tracker", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://torrent.by/"}, Settings: []Field{ + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "info_category_8000", Type: "text", Label: ""}, + }}, + {ID: "torrent9", Name: "Torrent9", Description: "Torrent9 is a FRENCH Public site for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.torrent9.club/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site (Only works for searches with Keywords)", Default: ".html"}, + }}, + {ID: "torrentcore", Name: "Torrent[CORE]", Description: "Torrent[CORE] is a Public DHT Crawler", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://torrentcore.xyz/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "torrentdownload", Name: "TorrentDownload", Description: "TorrentDownload is a Public torrent meta-search engine", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.torrentdownload.info/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site (Applies only to Search with Keywords)", Default: "d"}, + }}, + {ID: "torrentgalaxyclone", Name: "TorrentGalaxyClone", Description: "TorrentGalaxyClone is a Public site for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://torrentgalaxy.one/", "https://torrentgalaxy.info/", "https://torrentgalaxy.space/"}, Settings: []Field{ + {Name: "uploader", Type: "text", Label: "Filter by Uploader"}, + {Name: "info_uploader", Type: "info", Label: "About filtering by Uploader", Default: "You can filter by Uploader by entering a Case Sensitive username, or leave empty to get all results.
Note: this is the username of the Uploader and not the Groupname that often show up at the end of TGx titles, eg RMTeam."}, + }}, + {ID: "torrentkitty", Name: "TorrentKitty", Description: "TorrentKitty is a Public torrent indexer", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://www.torrentkitty.cam/", "https://www.torrentkitty.ink/", "https://www.torrentkitty.io/", "https://www.torrentkitty.vip/", "https://www.torrentkitty.app/", "https://www.torrentkitty.red/", "https://www.torrentkitty.lol/", "https://www.torrentkitty.best/", "https://www.torrentkitty.tv/", "https://torkitty.com/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_category_8000", Type: "text", Label: ""}, + }}, + {ID: "torrentproject2", Name: "TorrentProject2", Description: "TorrentProject2 is a Public torrent meta-search engine", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://torrentproject2.net/", "https://torrentproject2.org/", "https://torrentproject.info/", "https://torrentproject.biz/", "https://torrentproject.xyz/", "https://torrentproject.cc/", "https://torrentproject.torrentbay.st/"}, Settings: []Field{ + {Name: "filter-verified", Type: "checkbox", Label: "Only include verifed content in results", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "latest"}, + {Name: "info_category_8000", Type: "text", Label: ""}, + }}, + {ID: "torrentqq", Name: "TorrentQQ", Description: "TorrentQQ (토렌트큐큐) is a Public KOREAN tracker for Korean media.", Language: "ko-KR", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://torrentqq415.com/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "torrentsome", Name: "Torrentsome", Description: "Torrentsome is a KOREAN Public tracker for Korean media.", Language: "ko-KR", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "TV"}, URLs: []string{"https://torrentsome241.com/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "torrenttip", Name: "Torrenttip", Description: "Torrenttip (토렌트팁) is a Public KOREAN tracker for Korean media.", Language: "ko-KR", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://torrenttip222.top/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "u3c3", Name: "U3C3", Description: "U3C3 is a CHINESE Public tracker focused on 3X Eastern Asian media", Language: "zh-CN", Protocol: "torrent", Privacy: "public", Categories: []string{"Books", "Other", "XXX"}, URLs: []string{"https://u3c3.com/", "https://u001.25img.com/", "https://u002.25img.com/", "https://u003.25img.com/", "https://m0m0m1m.mnmnmnmnmn.com/"}, Settings: []Field{}}, + {ID: "uindex", Name: "Uindex", Description: "Uindex is a Public Torrent Tracker for MOVIES / TV / MUSIC / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://uindex.org/"}, Settings: []Field{}}, + {ID: "uztracker", Name: "UzTracker", Description: "UzTracker is an UZBEK Public Torrent Tracker for MOVIES / TV / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://uztracker.net/"}, Settings: []Field{ + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "vsttorrents", Name: "VST Torrentz", Description: "VST Torrentz is a Public site for AUDIO apps, plugins and samples", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://vsttorrentz.net/"}, Settings: []Field{}}, + {ID: "vsthouse", Name: "VSTHouse", Description: "VSTHouse is a RUSSIAN Public site for AUDIO apps, plugins and samples", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://vsthouse.ru/"}, Settings: []Field{}}, + {ID: "vstorrent", Name: "VSTorrent", Description: "VSTorrent is a Public site for AUDIO apps, plugins and samples", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Other"}, URLs: []string{"https://vstorrent.org/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "world-torrent", Name: "World-torrent", Description: "World-torrent is a FRENCH Public site for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.mania-torrent.cc/", "https://www.cine-torrent.cc/", "https://www.magnet-torrent.cc/", "https://www.mega-torrent.pw/", "https://www.zone-torrent.org/", "https://www.warez-torrent.cc/"}, Settings: []Field{ + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + }}, + {ID: "xxxclub", Name: "XXXClub", Description: "XXXClub is a Public torrent site for 3X", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"XXX"}, URLs: []string{"https://xxxclub.to/", "https://xxxclub.cc/", "https://xxxclub.me/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "xxxtor", Name: "xxxtor", Description: "xxxtor is a RUSSIAN Public Torrent Tracker for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "public", Categories: []string{"XXX"}, URLs: []string{"https://xxxtor.com/"}, Settings: []Field{}}, + {ID: "yts", Name: "YTS", Description: "YTS is a Public torrent site specialising in HD movies of small size", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies"}, URLs: []string{"https://yts.bz/", "https://yts.ninjaproxy1.com/", "https://yts.proxyninja.org/", "https://yts.proxyninja.net/", "https://yts.torrentbay.st/", "https://yts.torrentsbay.org/"}, Settings: []Field{ + {Name: "apiurl", Type: "text", Label: "API URL", Default: "movies-api.accel.li"}, + }}, + {ID: "zamundarip", Name: "Zamunda RIP", Description: "Zamunda RIP is a BULGARIAN Public Torrent Archive for MOVIES / TV / GENERAL", Language: "bg-BG", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://zamunda.rip/"}, Settings: []Field{}}, + {ID: "zktorrent", Name: "ZkTorrent", Description: "ZkTorrent is a FRENCH Public site for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "public", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.zktorrent.cc/"}, Settings: []Field{ + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + }}, + {ID: "animebybelka", Name: "Anime by Belka", Description: "Anime by Belka (Аниме от Белки) is a RUSSIAN Semi-Private Torrent Tracker for ANIME", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://anibelka.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "t"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "d"}, + }}, + {ID: "animelayer", Name: "AnimeLayer", Description: "AnimeLayer is a RUSSIAN Semi-Private Torrent Tracker for ANIME", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "TV"}, URLs: []string{"https://animelayer.ru/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "category-id", Type: "select", Label: "Category", Default: "anime"}, + }}, + {ID: "best-torrents", Name: "Best-Torrents", Description: "Best-Torrents is a POLISH Semi-Private PAY2DL Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://best-torrents.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + }}, + {ID: "bitmagnet", Name: "BitMagnet (Local DHT)", Description: "BitMagnet is a self-hosted BitTorrent DHT search engine", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"http://127.0.0.1:3333/", "http://bitmagnet:3333/"}, Settings: []Field{}}, + {ID: "booktracker", Name: "BookTracker", Description: "BookTracker is a RUSSIAN Semi-Private Torrent Tracker for EBOOKS", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Books"}, URLs: []string{"https://booktracker.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "bootytape", Name: "BootyTape", Description: "BootyTape is a Semi-Private Torrent Tracker for 3X", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"XXX"}, URLs: []string{"https://ssl.bootytape.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "comicat", Name: "comicat", Description: "comicat is a CHINESE Semi-Private tracker for Anime / Hentai / Manga", Language: "zh-CN", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Other", "TV"}, URLs: []string{"https://www.comicat.org/"}, Settings: []Field{}}, + {ID: "darkiworld-api", Name: "DarkiWorld (API)", Description: "DarkiWorld is a FRENCH Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://darkiworld16.com/", "https://darkiworld.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or generate your API Key by logging in to DarkiWorld Account Settings, scrolling down to Torznab / *arr integration, and clicking Generate my Torznab API key."}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + }}, + {ID: "deildu", Name: "Deildu", Description: "Deildu is an ICELANDIC Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "is-IS", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://deildu.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "devil-torrents", Name: "Devil-Torrents", Description: "Devil-Torrents is a POLISH Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://devil-torrents.pl/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "POLISH"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_limit", Type: "info", Label: "Download Limit", Default: "If your downloads fail then access the site with your browser and check your messages, you've likely exceeded your limit."}, + }}, + {ID: "dreamingtree", Name: "DreamingTree", Description: "DreamingTree is a Semi-Private Torrent Tracker for DAVE MATHEWS MUSIC / BOOTLEGS", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio"}, URLs: []string{"https://dreamingtree.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Covers per page: setting to 100 on your account profile."}, + }}, + {ID: "dxp", Name: "DXP", Description: "Deaf Experts (DXP) is a RUSSIAN Semi-Private Torrent Tracker for MOVIES / TV with Russian Subtitles", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://dxp.ru/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Торрентов на страницу setting to 100 on your account profile."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "electro-torrent", Name: "Electro-Torrent", Description: "Electro-Torrent is a POLISH Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://electro-torrent.pl/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "POLISH"}, + {Name: "info_limit", Type: "info", Label: "Download Limit", Default: "Electro-Torrent has a limit on downloads. If downloads fail then you have exceeded your limit. Try again after a few hours."}, + }}, + {ID: "ex-torrenty", Name: "Ex-torrenty", Description: "Ex-torrenty is a POLISH Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://ex-torrenty.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "info", Label: "How to get the User-Agent", Default: "
  1. From the same place you fetched the cookie,
  2. Find 'user-agent:' in the Request Headers section
  3. Select and Copy the whole user-agent string (everything after 'user-agent: ') and Paste here.
"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "POLISH"}, + }}, + {ID: "exkinoray", Name: "ExKinoRay", Description: "ExKinoRay is a RUSSIAN Semi-Private Torrent Tracker for MOVIES / TV", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://exkinoray.ru/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "eztvl", Name: "EZTVL", Description: "EZTV is a Public torrent site for TV shows. This indexer supports login.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Other"}, URLs: []string{"https://eztvx.to/", "https://eztv.wf/", "https://eztv.tf/", "https://eztv.yt/", "https://eztv1.xyz/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + }}, + {ID: "fenyarnyek-tracker", Name: "Fenyarnyek-Tracker", Description: "Fenyarnyek-Tracker is a HUNGARIAN Semi-Private site for TV / MOVIES / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"http://tracker.fenyarnyek.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "file-tracker", Name: "File-Tracker", Description: "File Tracker is a RUSSIAN Semi-Private Torrent Tracker for MOVIES / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://file-tracker.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "uploader", Type: "text", Label: "Search by Uploader"}, + {Name: "info_uploader", Type: "info", Label: "About searching by Uploader", Default: "You can search by Uploader (Author) by entering an Author username, or leave empty to get all results."}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "gay-torrents", Name: "Gay-Torrents.net", Description: "Gay-Torrents.net is a Private Torrent Tracker for GAY 3X", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.gay-torrents.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "0"}, + {Name: "order", Type: "select", Label: "Order requested from site", Default: "0"}, + {Name: "whisparrv2", Type: "checkbox", Label: "Strip release date from queries (for Whisparr v2 compatibility)", Default: "false"}, + }}, + {ID: "hdcztorrent", Name: "HD-CzTorrent", Description: "HD-CzTorrent is a CZECH Semi-Private PAY2DL site for MOVIES / TV / GENERAL", Language: "cs-CZ", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"http://www.hd-cztorrent.cz/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "hdgalaktik", Name: "HDGalaKtik", Description: "HDGalaKtik is a RUSSIAN Semi-Private tracker for MOVIES / TV / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.trackerpmr.com/", "https://freetmd.com/", "https://kinoradiomagia.tv/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "helltorrents", Name: "HellTorrents", Description: "HellTorrents is a POLISH Semi-Private PAY2DL Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://helltorrents.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "POLISH"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentów na stronę: (Torrents per page) setting to 100 on your account profile."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "huntorrent", Name: "HunTorrent", Description: "HunTorrent is a HUNGARIAN Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://huntorrent.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "ilcorsaroblu", Name: "Il Corsaro Blu", Description: "il CorSaRo Blu is an ITALIAN Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "it-IT", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://ilcorsaroblu.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "ildragonero", Name: "ilDraGoNeRo", Description: "ilDraGoNeRo is an ITALIAN Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "it-IT", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://ildragonero2.info/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_delay", Type: "info", Label: "Delay between searches", Default: "This forum enforces a 15s delay between searches. If no results are returned for a search, wait for 15s and try again."}, + }}, + {ID: "kinorun", Name: "Kinorun", Description: "Kinorun is a RUSSIAN Semi-Private Torrent Tracker for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"XXX"}, URLs: []string{"http://kinorun.top/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "ip_filtering", Type: "info", Label: "IP Filtering", Default: "Kinorun allows only certain IP addressess. The error 403 Forbidden: Parse error means your IP was not accepted."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "kinozal", Name: "Kinozal", Description: "Kinozal is a RUSSIAN Semi-Private Torrent Tracker for MOVIES / TV / MUSIC. This indexer uses torrents.", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://kinozal.tv/", "https://kinozal.guru/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "true"}, + {Name: "addrussian", Type: "checkbox", Label: "Add RUSSIAN to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "0"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "0"}, + {Name: "info_torrent", Type: "info", Label: "Torrents", Default: "This tracker limits the number of torrents a user can download each day without paying. This indexer uses torrent files with the user's passkey, so any download/upload is recorded. If you receive errors when downloading torrent files, you may have reached this limit. To bypass the limit with magnet links, use Kinozal (M)."}, + }}, + {ID: "kinozal-magnet", Name: "Kinozal (M)", Description: "Kinozal is a RUSSIAN Semi-Private Torrent Tracker for MOVIES / TV / MUSIC. This indexer uses magnet links.", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://kinozal.tv/", "https://kinozal.guru/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "true"}, + {Name: "addrussian", Type: "checkbox", Label: "Add RUSSIAN to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "0"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "0"}, + {Name: "info_magnets", Type: "info", Label: "Magnets", Default: "This tracker limits the number of torrents a user can download each day without paying. This indexer uses magnet links to bypass that limit, however this doesn't include the passkey, so any download/upload is not recorded. To download with torrents, use Kinozal."}, + }}, + {ID: "marinetracker", Name: "Marine Tracker", Description: "Marine Tracker is a RUSSIAN Semi-Private Torrent Tracker for MARITIME E-LEARNING", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other"}, URLs: []string{"https://seatracker.ru/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech_50", Type: "checkbox", Label: "Search freeleech and 50% freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "mazepa", Name: "Mazepa", Description: "Mazepa is an UKRAINIAN Semi-Private Torrent Tracker for Videos with Ukrainian soundtracks", Language: "uk-UA", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://mazepa.to/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "metaltracker", Name: "Metal Tracker", Description: "Metal Tracker is a Semi-Private Torrent Tracker dedicated to HEAVY METAL MUSIC. This definition is for the English site.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio"}, URLs: []string{"https://en.metal-tracker.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "miobt", Name: "MioBT", Description: "MioBT is a CHINESE Semi-Private torrent index", Language: "zh-CN", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "TV"}, URLs: []string{"https://miobt.com/", "https://kisssub.org/"}, Settings: []Field{}}, + {ID: "musebootlegs", Name: "MuseBootlegs", Description: "MuseBootlegs (MB) is a Semi-Private Torrent Tracker for MUSE MUSIC / BOOTLEGS", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Other"}, URLs: []string{"https://musebootlegs.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Found no results while trying to browse this tracker then first access the site with your browser and check that you are not being forced to change your password because it has expired after 180 days."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "mvgroupforum", Name: "MVGroup Forum", Description: "MVGroup is a Semi-Private Torrent Tracker dedicated to UK TV and DOCUMENTARIES. This definition is for the Forum Tracker site.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Other"}, URLs: []string{"https://forums.mvgroup.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_category_8000", Type: "text", Label: ""}, + {Name: "hidef", Type: "checkbox", Label: "Show MVGroup HiDef Releases only", Default: "false"}, + {Name: "withsubs", Type: "select", Label: "Subtitles", Default: "_"}, + {Name: "seed", Type: "checkbox", Label: "Only released and seeded torrents", Default: "false"}, + {Name: "dropbbc", Type: "checkbox", Label: "Drop BBC & other channels from the front of result titles", Default: "false"}, + {Name: "stripS01E01", Type: "checkbox", Label: "Strip the S01E01 from the Torznab search requests", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "mvgroupmain", Name: "MVGroup Main", Description: "MVGroup is a Semi-Private Torrent Tracker dedicated to UK TV and DOCUMENTARIES. This definition is for the Main Tracker site.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Other"}, URLs: []string{"https://forums.mvgroup.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_category_8000", Type: "text", Label: ""}, + {Name: "hidef", Type: "checkbox", Label: "Show MVGroup HiDef Releases only", Default: "false"}, + {Name: "withsubs", Type: "select", Label: "Subtitles", Default: "_"}, + {Name: "seed", Type: "checkbox", Label: "Only released and seeded torrents", Default: "false"}, + {Name: "dropbbc", Type: "checkbox", Label: "Drop BBC & other channels from the front of result titles", Default: "false"}, + {Name: "stripS01E01", Type: "checkbox", Label: "Strip the S01E01 from the Torznab search requests", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "nethd", Name: "NetHD", Description: "NetHD (VietTorrent) is a VIETNAMESE Semi-Private Torrent Tracker for HD MOVIES / TV", Language: "vi-VN", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other"}, URLs: []string{"https://nethd.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If the account is not used regularly within 2 years, the system will automatically delete the account."}, + }}, + {ID: "new-team", Name: "New-Team", Description: "New-Team is a RUSSIAN Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://new-team.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "newstudiol", Name: "NewStudioL", Description: "NewStudio is a RUSSIAN Public site for TV. This supports login.", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"TV"}, URLs: []string{"https://newstudio.tv/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "freeleech_50", Type: "checkbox", Label: "Search freeleech and 50% freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "noname-clubl", Name: "NoNaMe ClubL", Description: "This is the NoNaMe Club indexer with Login enabled in the config.", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://nnmclub.to/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info_row", Type: "info", Label: "Search settings", Default: "This Indexer requires specific columns to be active on your account search settings.
Login to the web site and ensure that only the Автор (Author) and Форум (Forum) checkboxes are ticked in the Показывать колонку (Show Columns) section of the Настройки поиска Torrent (Torrent Search Settings) page.
Having other columns active may prevent the Indexer processing/displaying results correctly."}, + }}, + {ID: "polskie-torrenty", Name: "Polskie-Torrenty", Description: "Polskie-Torrenty is a POLISH Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://polskie-torrenty.eu/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "POLISH"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_limit", Type: "info", Label: "Download Daily Limit", Default: "Polskie-Torrenty has a daily limit on downloads. If downloads fail then you have exceeded your daily limit. Try again tomorrow."}, + }}, + {ID: "pornolab", Name: "PornoLab", Description: "PornoLab is a Semi-Private Russian site for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"XXX"}, URLs: []string{"https://pornolab.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "postman-api", Name: "Postman (API)", Description: "Postman is a Semi-Private I2P Torrent Tracker for MOVIES / TV / GENERAL. This indexer uses the API for login.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"http://tracker2.postman.i2p/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Postman account Preferences page."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + }}, + {ID: "proporno", Name: "ProPorno", Description: "ProPorno is a RUSSIAN Semi-Private tracker for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"XXX"}, URLs: []string{"https://proporno.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + }}, + {ID: "pussytorrents", Name: "PussyTorrents", Description: "PussyTorrents is a Semi-Private Torrent Tracker for 3X", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"XXX"}, URLs: []string{"https://pussytorrents.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_score", Type: "info", Label: "About sorting by score", Default: "In order to sort by score you first must have edited your PussyTorrents account profile and changed Results default sorting method to By Score."}, + }}, + {ID: "rainbowtracker", Name: "Rainbow Tracker", Description: "Rainbow Tracker is a RUSSIAN Semi-Private Torrent Tracker for LGBTQ MOVIES / TV", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "Other", "TV", "XXX"}, URLs: []string{"https://gaytracker.ru/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "rgfootball", Name: "RGFootball", Description: "RGFootball is a RUSSIAN Sports torrent tracker.", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"TV"}, URLs: []string{"http://rgfootball.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "ignorevip", Type: "checkbox", Label: "Ignore VIP torrents", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "rintor", Name: "RinTor", Description: "RinTor is a Semi-Private Tracker for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"XXX"}, URLs: []string{"https://rintor.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "riperam", Name: "RiperAM", Description: "RiperAM is a RUSSIAN Semi-Private Torrent Tracker for MOVIES / TV", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://riper.online/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "t"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "d"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "RockBox", Name: "RockBox", Description: "RockBox Semi-Private Torrent Tracker dedicated to HEAVY METAL/ROCK MUSIC. This definition is for the English site.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Other"}, URLs: []string{"https://rawkbawx.rocks/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "data"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "rudub", Name: "RUDUB", Description: "RUDUB (ex-BaibaKoTV) is a RUSSIAN Semi-Private Torrent Tracker for TV", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"TV"}, URLs: []string{"https://r2.rudub.world/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "rustorka", Name: "Rustorka", Description: "Rustorka is a RUSSIAN Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://rustorka.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "selezen", Name: "seleZen", Description: "seleZen is a RUSSIAN Semi-Private Torrent Tracker for MOVIES", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "Other"}, URLs: []string{"https://use.selezen.club/", "https://www.selezen.club/", "https://open.selezen.org/", "https://www.selezen.top/", "https://open.selezen.top/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "sktorrent", Name: "Sk-CzTorrent", Description: "Sk-CzTorrent is a CZECH/SLOVAK Semi-Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "cs-CZ", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://sktorrent.eu/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + }}, + {ID: "sktorrent-org", Name: "SkTorrent.org", Description: "SkTorrent.org is a Semi-Private torrent site for MOVIES / TV/ GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://sktorrent.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "themixingbowl", Name: "themixingbowl", Description: "themixingbowl (TMB) is a Semi-Private Torrent Tracker for DJ Music mixes", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio"}, URLs: []string{"https://tmb.dj/", "https://themixingbowl.org/"}, Settings: []Field{ + {Name: "info_nojs", Type: "info", Label: "JavaScript", Default: "This indexer requires that the web site not use JS when searching.
Access your account Preferences on the web site and change the set JavaScript level: setting to No JavaScript."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "11"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "d"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 50 on your account preferences."}, + }}, + {ID: "torrentmasters", Name: "TorrentMasters", Description: "TorrentMasters is a HUNGARIAN semi-private tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://torrentmasters.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "0"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentek száma egy oldalon setting to 100 on your account profile."}, + }}, + {ID: "traht", Name: "TrahT", Description: "TrahT is a RUSSIAN Semi-Private Torrent Tracker for 3X", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Other"}, URLs: []string{"https://traht.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "tribalmixes", Name: "TribalMixes", Description: "TribalMixes is a ratioless Semi-Private Torrent Tracker for DJ MIXES", Language: "en-GB", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio"}, URLs: []string{"https://www.tribalmixes.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "_"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "unionfansub", Name: "Union Fansub", Description: "Union Fansub is a SPANISH Semi-Private torrent site focused on ANIME", Language: "es-ES", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "TV"}, URLs: []string{"https://torrent.unionfansub.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "ztracker", Name: "Ztracker", Description: "Ztracker is a HUNGARIAN Semi-Private Torrent Tracker for 0DAY / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://ztracker.cc/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "0daykiev", Name: "0day.kiev", Description: "0day.kiev.ua is a UKRAINIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "uk-UA", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://tracker.0day.community/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "true"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "The tracker has a system for deleting inactive accounts after 6 months from your last visit to the tracker."}, + }}, + {ID: "13city", Name: "13City", Description: "13City is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "TV"}, URLs: []string{"https://13city.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. If there is no valid traffic within 7 days of registration (participation in the calculation of sharing rate), the account will be blocked
  2. After the level is reduced to \"Peasant\", if the sharing rate is not improved within 7 days, the account will be blocked
  3. Long-term non-login:
      - UnParked account: 60 consecutive days of non-login → banned
      - Parked account: 180 consecutive days of non-login → banned
      - Nexus Master and above levels are not subject to long-term non-login ban restrictions
"}, + }}, + {ID: "1ptbar", Name: "1ptbar", Description: "1ptbar is a CHINESE Private Torrent Tracker for MOVIES / TV / E-LEARNING", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://1ptba.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted.
  2. Elite User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + {Name: "info_special", Type: "info", Label: "Special Categories", Default: "Only Power User or above can view Special section. Searching for XXX categories by users below this class will result in search errors."}, + }}, + {ID: "3changtrai", Name: "3ChangTrai", Description: "3ChangTrai (3CT) is a VIETNAMESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "vi-VN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://3changtrai.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your account. Inactive accounts will be deleted based on the following provisions:
  1. Nexus Master or later will not be deleted account.
  2. Veteran User or higher will not be deleted if temporarily locked (at User Settings).
  3. Temporarily locked accounts will be deleted if not logged in within 90 days.
  4. Accounts that are not temporarily locked will be deleted if they do not log in within 60 days.
  5. Accounts with no storage for uploads and downloads will be deleted if they do not log in within 30 days or have registered within 14 days.
"}, + }}, + {ID: "3dtorrents", Name: "3D Torrents", Description: "3D Torrents (3DT) is a Private Torrent Tracker for 3D HD / BLURAY MOVIES", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "XXX"}, URLs: []string{"http://www.3dtorrents.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactivity grace period is three months which means that if you do not log in to the 3Dtorrents web site for 90 days, your account will be deleted. If you are VIP your will stay until the VIP period is over."}, + {Name: "info_captcha", Type: "info", Label: "About Captcha", Default: "Note that the captcha on the 3Dtorrents login page is Case Sensitive."}, + }}, + {ID: "4thd", Name: "4thD", Description: "4th Dimension is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://4thd.xyz/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "52pt", Name: "52PT", Description: "52PT is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://52pt.site/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User (junior college) and above will be retained forever
  2. Elite User (junior high school) and above will not be deleted after parking (in the control panel)
  3. Users with a parked account who do not log in for 400 consecutive days will be deleted
  4. Users with non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users with no traffic (that is, upload/download data are both 0) will be deleted if they do not log in for 15 consecutive days, or if the registration time reaches 60 days.
"}, + }}, + {ID: "pier720", Name: "720pier", Description: "720pier is a RUSSIAN Private Torrent Tracker for HD SPORTS", Language: "ru-RU", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://720pier.ru/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "t"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "d"}, + }}, + {ID: "abnormal-api", Name: "Abnormal (API)", Description: "ABNormal (ABN) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Movies", "Other", "TV"}, URLs: []string{"https://abn.lol/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find your API key on your Parameters page. The API key is read-only and never expires."}, + {Name: "apiurl", Type: "text", Label: "API URL", Default: "api.abn.lol"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "Created"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts are automatically deactivated after 4 months of inactivity (no connection to the site)."}, + }}, + {ID: "abtorrents", Name: "ABtorrents", Description: "ABtorrents (ABT) is a Private Torrent Tracker for AUDIOBOOKS", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books"}, URLs: []string{"https://usefultrash.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Login Failed, got redirected then access the site with your browser and mark as read all PMs."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Any account that has unread PMs older than 14 days or has not logged in for 30 days will be suspended
  2. Any account that has not been logged into for 90 days is deemed inactive and will thus be purged
  3. Any account that has not been logged into for 30 days is deemed inactive and will be put on suspension until User logs in again
  4. User’s stats, points, and history are irrevocably lost when purged
  5. Logging into the site is the ONLY way to keep an account active
  6. SEEDING ONLY does NOT constitute site activity.
"}, + }}, + {ID: "acrossthetasman", Name: "Across The Tasman", Description: "ATT is a Private torrent site for Rugby and other sports played in Australia", Language: "en-AU", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://acrossthetasman.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "order", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "aftershock", Name: "Aftershock", Description: "Aftershock is a HUNGARIAN Private Torrent Tracker for MOVIES / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://aftershock-tracker.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "0"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You will be immediately banned if you have not logged in for more than 6 weeks."}, + }}, + {ID: "afun", Name: "AFUN", Description: "AFUN is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://www.ptlover.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts will be deleted based on the following rules:
  1. Veteran User or above will never be deleted.
  2. Elite User or above will never be deleted if parked (at User CP).
  3. Parked accounts will be deleted if users have not logged in for more than 400 days in a row.
  4. Unparked accounts will be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 will be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "agsvpt", Name: "AGSVPT", Description: "AGSVPT (Arctic Global Seed Vault) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.agsvpt.com/", "https://pt.agsvpt.cn/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the AGSVPT Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the 每页种子数:每页显示(Torrents per page:) setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Elite User and above will not have their account deleted after parking (in the Control Panel)
  2. Users who do not log in for 400 consecutive days will be disabled.
  3. Users with a parked account will be disabled if they do not log in for 150 consecutive days
  4. Users who have no traffic (i.e., uploading/downloading data is 0) within 7 days of new registration will be disabled
  5. Users with no traffic (i.e. both upload/download data is 0) who do not log in for 30 consecutive days will be disabled.
"}, + }}, + {ID: "aidoruonline", Name: "Aidoru!Online", Description: "Aidoru!Online is a JAPANESE Private Torrent Tracker for Female Japanese Idol related files", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://aidoru-online.me/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Found no results while trying to browse this tracker then first access the site with your browser and check that your ratio is not below 0.8, otherwise the site will not return download links to the indexer. This does not apply to freeleech torrents."}, + }}, + {ID: "aither-api", Name: "Aither (API)", Description: "Aither is a Private Torrent Tracker for HD MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://aither.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Aither account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in to the Aither web site with your browser once every90 days to prevent your account from getting disabled."}, + }}, + {ID: "alingpt", Name: "alingPT", Description: "alingPT is a CHINESE Private Torrent Tracker for MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://pt.aling.de/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Accounts parked will not be deleted
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 200 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 60 consecutive days.
"}, + }}, + {ID: "amigosshare", Name: "Amigos Share Club", Description: "Amigos Share Club (ASC) is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://cliente.amigos-share.club/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "Set Exibição De Torrents to Lista in your Minhas Configurações.
Using Capas is not supported and will return 0 results."}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts, that is, without access for 90 days (3 months), will be automatically deleted by the system; with no possibility of reactivation."}, + }}, + {ID: "animetorrentsro", Name: "AnimeTorrents.ro", Description: "AnimeTorrents.ro (Anime Torrents Romania) is a ROMANIAN Private Torrent Tracker for ANIME / MANGA", Language: "ro-RO", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Movies", "TV"}, URLs: []string{"https://animetorrents.io/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "cat-id", Type: "select", Label: "Category", Default: "0"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts under VIP and without parked are automatically deleted after about a year."}, + }}, + {ID: "animeworld-api", Name: "AnimeWorld (API)", Description: "AnimeWorld (AW) is a GERMAN Private Torrent Tracker for ANIME / MANGA / HENTAI", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://animeworld.cx/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your AnimeWorld account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "tmdbidonly", Type: "checkbox", Label: "Disable IMDB and TVDB ID search (only support TMDB ID) to potentially improve Sonarr and Radarr results", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts are set as inactive by the system after 180 days. After 270 days in inactive status, the accounts are automatically deleted from the system."}, + }}, + {ID: "anthelion-api", Name: "Anthelion (API)", Description: "Anthelion (ANT) is a Private Torrent Tracker for MOVIES", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "Other"}, URLs: []string{"https://anthelion.me/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Key by accessing your Anthelion account Settings page and scrolling down to the API Key section.
Tick the Search and Download checkboxes and click the save profile button to generate the key."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Activity is defined as actually using your account, including the snatch/grab/seeding of torrents. You are also required to sign-in to the web frontend of Anthelion at least once per 3mo (90 days) (Note, using autodl/ARR does not satisfy this)."}, + }}, + {ID: "arabafenice", Name: "ArabaFenice", Description: "Araba Fenice (Phoenix) is an ITALIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "it-IT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.arabafenice.me/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "arabicsource-api", Name: "ArabicSource (API)", Description: "ArabicSource is an ARABIC Private Torrent Tracker for MOVIES / TV", Language: "ar-SA", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://arabicsource.net/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your ArabicSource account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "The maximum number of days you can stay away from the site is 40 days, and only if you suspend the account, you will get a grace period of 180 days, but you must contact the administration in advance so that this is added to your personal account and you are not exposed to expulsion."}, + }}, + {ID: "arabp2p", Name: "ArabP2P", Description: "ArabP2P is an ARABIC Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "ar-AE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.arabp2p.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in periodically. If the member is absent from the website for a period of 3 months, the account will be deleted without prior warning."}, + }}, + {ID: "arabscene", Name: "ArabScene", Description: "ArabScene is an ARABIC Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "ar-AE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://arabscene.me/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "All inactive accounts will be deleted after 60 days of inactivity."}, + }}, + {ID: "asiancinema", Name: "AsianCinema", Description: "AsianCinema is a Private Tracker for ASIAN MOVIES / TV / MUSIC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://eiga.moi/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your AsianCinema account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Your account will be automatically deleted from the database after 90 days of inactivity. If you return or visit the site with your account before that amount of time passes, then the inactivity timer will reset and your account will be fine for another 90 days.
Keep in mind that 'activity' is considered a visit to any page and that torrent traffic is not counted as account activity. In order to reset the inactivity timer all you have to do is visit a single page while logged in with your account. If your account is deleted for inactivity, please do not ask the site staff to un-delete it for you. The deletion is performed automatically by the server and, as such, your account cannot be recovered after it has been deleted."}, + }}, + {ID: "asiandvdclub", Name: "AsianDVDClub", Description: "AsianDVDClub (ADC) is a Private Torrent Tracker for ASIAN DVD and BluRay", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://asiandvdclub.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "No special action required for red ribbons and permanent sponsors and above regardless of time, for others after 1 year of zero activity on tracker and/or website account will be closed."}, + }}, + {ID: "audiences", Name: "Audiences", Description: "Audiences is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://audiences.me/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Users with Extreme User and above will be retained forever
  2. Starting from 20230701, the non-login ban time will be adjusted to:
    • (Home Alone) User - 40 days
    • (Young and vigorous) Power User - 60 days
    • (Children of Jianghu) Elite User - 80 days
    • (Street Fighter) Crazy User - 100 days
    • (non-stop) Insane User - 120 days
    • (Outstanding Citizen) Veteran User - 180 days
  3. Users with no traffic (i.e. uploading/downloading data) If it is 0) If you do not log in for 7 consecutive days will be disabled
  4. 'Parked accounts' no longer enjoy the benefits of retaining accounts, and are also subject to the above rules.
"}, + }}, + {ID: "audionews", Name: "AudioNews", Description: "AudioNews (AN) is a Private Torrent Tracker for AUDIO SOFTWARE / SAMPLES / ETC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Other"}, URLs: []string{"https://audionews.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must stay active on the site...
  1. Any New users that have no stats for one month will have their account deleted
  2. Any disabled accounts will be deleted after 6 months
  3. Any accounts inactive for more than 6 months will be deleted
  4. Donor accounts will be left untouched.
"}, + }}, + {ID: "aura4k-api", Name: "AURA4K (API)", Description: "AURA4K is a Private Torrent Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://aura4k.net/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your AURA4K account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts with no activity (login/traffic) for more than 90 days may be automatically pruned."}, + }}, + {ID: "aussierules", Name: "Aussierul.es", Description: "AussieRul.es is a Private Torrent Tracker for AUSTRALIAN RULES FOOTBALL", Language: "en-AU", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://aussierul.es/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "type", Type: "select", Label: "Search Type", Default: "t_name"}, + {Name: "dead", Type: "select", Label: "Include Dead Torrents", Default: "no"}, + }}, + {ID: "azusa", Name: "Azusa (梓喵)", Description: "Azusa (梓喵) is a CHINESE Private Torrent Tracker focusing on COMICS", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Other"}, URLs: []string{"https://azusa.wiki/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "backups", Name: "Back-ups", Description: "Back-Ups is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://back-ups.me/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 40 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To keep records updated regularly, all inactive accounts will be deleted after 60 days of inactivity."}, + }}, + {ID: "baozipt", Name: "baoziPT", Description: "baoziPT is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://p.t-baozi.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "beload", Name: "Beload", Description: "Beload is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://beload.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "bestcore", Name: "Best-Core", Description: "Best-Core is a HUNGARIAN Private Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://best-core.info/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search FreeLeech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrent oldalankén: setting to 100 on your account profile."}, + {Name: "info_login", Type: "info", Label: "About login error", Default: "If you get a Login Failed, got redirected. error during your config save then most likely you have used an incorrect username or password."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "
  1. Users who have not accessed the site for 180 days will be deleted!
  2. If the vacation mode is set, the system will not delete the given user for 365 days.
"}, + }}, + {ID: "bibliotik", Name: "Bibliotik", Description: "Bibliotik is a Private Torrent Tracker for EBOOKS and AUDIOBOOKS", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Other"}, URLs: []string{"https://bibliotik.me/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "orderby", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "order", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "bigbbs", Name: "BigBBS", Description: "BigBBS is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bigbbs.eu/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "info_profile", Type: "info", Label: "Layout", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules: Inactive accounts over 30 days will be warned by email about their inactivity. If within 24h a person does not log in to their account, they will lose them without the possibility of returning."}, + }}, + {ID: "bigcore", Name: "BigCore", Description: "BigCore is a HUNGARIAN Private Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bigcore.eu/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentek száma egy oldalon setting to 100 on your account profile. The default is 30."}, + }}, + {ID: "bitbazis", Name: "Bit-Bázis", Description: "Bit-Bázis is a HUNGARIAN Private Tracker for MOVIES / TV", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bitbazis.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentek száma egy oldalon: setting to 50 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If the user does not access the site for 1 month, he will receive an e-mail notification. If you stay away for 9 months, your account will be suspended and deleted. After the 9-month absence, the user cannot register again."}, + }}, + {ID: "bitded", Name: "Bitded", Description: "Bitded is a THAI Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "th-TH", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.dedbit.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "bitgamer", Name: "bitGAMER", Description: "bitGAMER is a Private Torrent Tracker for GAMES", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "XXX"}, URLs: []string{"https://bitgamer.ch/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "bithumen", Name: "BitHUmen", Description: "BitHUmen is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bithumen.be/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If you do not visit the site for 1 year, you will be banned for inactivity. The permanent deletion of your account after the ban is 2 years."}, + }}, + {ID: "bitpalace", Name: "Bitpalace", Description: "Bitpalace is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bitpalace.cc/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "bitporn", Name: "BitPorn (API)", Description: "BitPorn (Malacka) is a HUNGARIAN Private Torrent Tracker for 3X", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://bitporn.eu/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your BitPorn account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in to the site at least once a month; otherwise, your account will be suspended."}, + }}, + {ID: "Bittorrentfiles", Name: "Bittorrentfiles", Description: "Bittorrentfiles is a Private GERMAN Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bittorrentfiles.me/"}, Settings: []Field{ + {Name: "user", Type: "text", Label: "Username"}, + {Name: "pass", Type: "password", Label: "Password"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_account", Type: "info", Label: "Account Settings", Default: "In order to see the correct date and size in the torrent rows, change the Torrentliste: setting to Modern on your account profile."}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts of users, power users and mega users will be permanently deleted from the database after 125 days! Torrents in your share don't count as activity - only logging in again counts! You can extend this period to 250 days by setting your account to parking. You can find the option to do this under Edit Profile."}, + }}, + {ID: "bitturk", Name: "BiTTuRK", Description: "BiTTuRK is a TURKISH Private Torrent Tracker for HD MOVIES / TV / GENERAL. This Indexer is for English only.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bitturk.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "info", Type: "info", Label: "Layout", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Found no results while trying to browse this tracker then first access the site with your browser and check that you are not being forced to change your password because it has expired after 365 days."}, + }}, + {ID: "bjshare", Name: "Bj-Share", Description: "Private PT-BR torrent", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bj-share.info/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + }}, + {ID: "bluebirdhd", Name: "BlueBird", Description: "BlueBird is a RUSSIAN Private Torrent Tracker for HD MOVIES", Language: "ru-RU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bluebird-hd.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "bluetorrents", Name: "BlueTorrents", Description: "BlueTorrents is a Private Torrent Tracker for MOVIES / TV / MUSIC / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bluetorrents.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API Key", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "You can find your API Key by accessing the BlueTorrents Settings page, and scrolling down to the API keys section."}, + {Name: "info_3x", Type: "info", Label: "Including 3X", Default: "IF you want to see 3x torrents access your BlueTorrents Settings page and tick the Show NSFW content checkbox."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts with no activity for 90+ days may be disabled."}, + }}, + {ID: "bluraytracker", Name: "BlurayTracker", Description: "BlurayTracker is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "cs-CZ", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://bluraytracker.cz/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "blutopia-api", Name: "Blutopia (API)", Description: "Blutopia (BLU) is a Private Torrent Tracker for HD MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://blutopia.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Blutopia account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Your membership requires that you stay active at Blutopia. To not get disabled, you are required to login to the site at least once every 30 days or be actively seeding at least 1 torrent."}, + }}, + {ID: "borgzelle", Name: "Borgzelle", Description: "Borgzelle is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://borgzelle.borg/"}, Settings: []Field{ + {Name: "info_sitelink", Type: "info", Label: "About Site Link", Default: "If the Site Link domain returns a DNS error then you have not yet been assimilated."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "boxingtorrents", Name: "Boxing Torrents", Description: "Boxing Torrents is a Private Torrent Tracker for BOXING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://tc-boxing.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_download", Type: "info", Label: "Download Restrictions", Default: "You must have uploaded at least 10GB before you are able to access all torrent sizes. Until then, you are restricted to torrents no larger than 2.5GB."}, + }}, + {ID: "brasiltracker", Name: "BrasilTracker", Description: "BrasilTracker is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://brasiltracker.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "btnext", Name: "BTNext", Description: "BTNext (BTNT) is a PORTUGUESE Private Torrent Tracker for 0DAY / GENERAL", Language: "pt-PT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://tracker.btnext.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info", Type: "info", Label: "Layout", Default: "
  1. Only the English Classic profile is supported.
  2. Make sure to set the Torrent Listing (Lista de Torrents) option in your profile to Classic (Clássico)
  3. Using the Moderna theme will prevent results.
"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you get 0 results check the log for error: An error has occurred!You can't view this page unless you read all your unread messages, then access the site with your browser and mark as read all PMs."}, + }}, + {ID: "btschool", Name: "BTSCHOOL", Description: "BTSCHOOL is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.btschool.club/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Extreme User or above would never be deleted.
  2. Veteran User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 365 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 30 days in a row.
"}, + }}, + {ID: "bwtorrents", Name: "BwTorrents", Description: "BwTorrents is an INDIAN Private Torrent Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bwtorrents.tv/", "https://www.bwtorrents.pro/", "https://bwtorrents.cc/", "https://bwtorrents.live/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account activity:
  1. Zero activity accounts (0 bytes download and 0 bytes upload) are automatically deleted after 30 days
  2. Inactive accounts under VIP and without parked are automatically deleted after 40 days.
"}, + }}, + {ID: "byrbt", Name: "BYRBT", Description: "BYRBT is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://byr.pt/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_ipv6", Type: "info", Label: "IPv6 only", Default: "This site only accepts IPv6 addresses. If you are using IPv4 you will get a DNS Lookup Error."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Newly registered users who have not generated any traffic within 14 days (that is, the upload/download data are both 0) will be deleted
  2. Users with a user level of Peasant that have failed to successfully improve their sharing rate within 14 days will be deleted.
"}, + }}, + {ID: "c411", Name: "C411", Description: "C411 (Community 411) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://c411.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API Key", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "You can find or generate a new API Key by accessing the C411 Intégrations API page."}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "info_3x", Type: "info", Label: "Including 3X", Default: "IF you want to see 3x torrents access your C411 Paramètres page and tick the Afficher le contenu XXX checkbox."}, + }}, + {ID: "cspt", Name: "Caishen (财神)", Description: "Caishen (财神) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://cspt.top/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users with no traffic (i.e. upload/download data is 0) will be deleted if they have not logged in for more than 100 consecutive days.
"}, + }}, + {ID: "cangbaoge", Name: "cangbaoge (CBG)", Description: "cangbaoge (CBG) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "TV"}, URLs: []string{"https://cangbao.ge/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "capybarabr", Name: "CapybaraBR (API)", Description: "CapybaraBR is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Movies", "Other", "TV"}, URLs: []string{"https://capybarabr.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your CapybaraBR account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "use_single_file_release_use_filename", Type: "checkbox", Label: "Use filename as the title for single file releases", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "The system automatically makes an account inactive when not logged in for a period of 90 days. So just log in within this time so that it is not inactivated."}, + }}, + {ID: "carphunter", Name: "Carp-Hunter", Description: "Carp-Hunter is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://carp-hunter.hu/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_settings", Type: "info", Label: "Settings Requirement", Default: "This indexer only supports the details link option.
Navigate to the web site account Beállítások (Settings), change the Letöltések (Download) option to Link a részletekhez (Link to Details), and click Mentés (Save). Selecting Lenyíló menü (Dropdown Menu) will return no results."}, + }}, + {ID: "carpathians", Name: "Carpathians", Description: "Carpathians is a HUNGARIAN Private Torrent Tracker for 0DAY / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://mycarpathians.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "5"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "carpt", Name: "CarPT", Description: "CarPT is a CHINESE Private Torrent Tracker for HD MOVIES / TV / MUSIC", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://carpt.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the CarPT Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account Retention Rules:
  1. Extreme User and above will be retained forever
  2. Elite Users and above will not be banned after parking (in the Control Panel)
  3. Users with a parked account will be banned if they do not log in for 150 consecutive days
  4. Users with a non-parked account will be banned if they do not log in for 90 consecutive days
  5. Users with no traffic (i.e., upload/download data is 0) who do not log in for 14 consecutive days will be banned.
"}, + }}, + {ID: "cathoderaytube", Name: "Cathode-Ray.Tube", Description: "Cathode-Ray.Tube (CRT) is a Private Torrent Tracker for CLASSIC MOVIES / TV", Language: "en-GB", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "Other", "TV"}, URLs: []string{"https://www.cathode-ray.tube/"}, Settings: []Field{ + {Name: "info_2fa", Type: "info", Label: "About 2FA", Default: "If you want to enable 2FA then use the CRT2FA indexer instead."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "New members must generate some torrent activity (upload, download, or cross-seed) in their account within the first 30 days of joining, otherwise their account will be automatically disabled."}, + }}, + {ID: "ceskeforum", Name: "CeskeForum", Description: "CeskeForum is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "cs-CZ", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://t.ceskeforum.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "cgpeers", Name: "CGPeers", Description: "CGPeers is a Private Torrent Tracker for GRAPHICS SOFTWARE / TUTORIALS / ETC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://cgpeers.to/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "chdbits", Name: "CHDBits", Description: "CHDBits is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://ptchdbits.co/", "https://chdbits.co/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "chilebt-api", Name: "ChileBT (API)", Description: "ChileBT is a CHILEAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "es-CL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://chilebt.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your ChileBT account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "cinemageddon", Name: "Cinemageddon", Description: "Cinemageddon is a Private Torrent Tracker for B-movies", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies"}, URLs: []string{"https://cinemageddon.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + }}, + {ID: "cinemamovies", Name: "CinemaMovieS_ZT", Description: "CinemaMovieS_ZT is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://cinemamovies.pl/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "drop_polish_prefix", Type: "checkbox", Label: "Drop the Polish title prefix", Default: "false"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "POLISH"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "2"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Failure to use an account for a period of 180 days will result in the removal of the account from the CMS_ZT community."}, + }}, + {ID: "cinematik", Name: "Cinematik (API)", Description: "Cinematik is a Private tracker for full BD and DVD discs of non-mainstream movies, niche cinema and arthouse.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://cinematik.net/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Cinematik account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "With 2FA enabled, there are no specific requirements for uploading, downloading, or posting. Your membership continues based on the staff's fair assessment of your overall activity and contributions."}, + }}, + {ID: "clearjav-api", Name: "ClearJAV (API)", Description: "ClearJAV is a Private Torrent Tracker for Japanese Adult Video (JAV) content from official JAV studios only.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://clearjav.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your ClearJAV account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must download or upload data within 30 days of joining, or your account may be pruned for lurking."}, + }}, + {ID: "coastalcrew", Name: "Coastal-Music-Crew", Description: "Coastal-Music-Crew (C-M-C) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://coastal-crew.bounceme.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Anzahl der Torrents beim Durchsuchen Torrents per page: setting to 60 on your account profile. The default is 15."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If you do not log in, your account will be automatically deleted after 28 days."}, + }}, + {ID: "concen", Name: "ConCen", Description: "ConCen (Conspiracy Central) is a Private conspiracy related torrent index", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://concen.org/"}, Settings: []Field{ + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "concertos", Name: "Concertos (API)", Description: "Concertos is a Private Torrent Tracker for Live Concerts with Strict Quality Control", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "TV"}, URLs: []string{"https://concertos.live/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Concertos account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Your membership requires that you stay active at Blutopia. To not get disabled, you are required to login to the site at least once every 30 days or be actively seeding at least 1 torrent."}, + }}, + {ID: "crabpt", Name: "CrabPT (蟹黄堡)", Description: "CrabPT (蟹黄堡) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://crabpt.vip/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the CrabPT Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "crazyspirits-api", Name: "CrazySpirits (API)", Description: "Crazy Spirits is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://crazyspirits.com/"}, Settings: []Field{ + {Name: "passkey", Type: "text", Label: "PassKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your PassKey", Default: "You can find the API PassKey by accessing CrazySpirits apps page and scrolling down to Votre API Key (Passkey)."}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + }}, + {ID: "crnaberza", Name: "CrnaBerza", Description: "CrnaBerza is a BALKAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "sr-SP", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.crnaberza.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the 'Torrenata po stranici' setting to 50 on your 'Torrenti' from the 'Podešavanja naloga' menu on the CrnaBerza webpage."}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort2", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "crnaberza2fa", Name: "CrnaBerza2FA", Description: "CrnaBerza is a BALKAN Private Torrent Tracker for MOVIES / TV / GENERAL. This indexer uses cookie login for 2FA.", Language: "sr-SP", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.crnaberza.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the 'Torrenata po stranici' setting to 50 on your 'Torrenti' from the 'Podešavanja naloga' menu on the CrnaBerza webpage."}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort2", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "crt2fa", Name: "CRT2FA", Description: "Cathode-Ray.Tube (CRT) is a Private Torrent Tracker for CLASSIC MOVIES / TV. This indexer uses cookie login for 2FA.", Language: "en-GB", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "Other", "TV"}, URLs: []string{"https://www.cathode-ray.tube/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "New members must generate some torrent activity (upload, download, or cross-seed) in their account within the first 30 days of joining, otherwise their account will be automatically disabled."}, + }}, + {ID: "cyanbug", Name: "cyanbug (大青虫)", Description: "cyanbug (大青虫) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://cyanbug.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the cyanbug Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "darkpeers-api", Name: "Darkpeers (API)", Description: "Darkpeers is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://darkpeers.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Darkpeers account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Users must log in or be seeding for their account to be considered active. If the account is not active for a consecutive 90 days, the account will be deactivated. After a consecutive 120 days, the account will be pruned."}, + }}, + {ID: "dasunerwartete", Name: "Das Unerwartete", Description: "Das Unerwartete (D-U) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://dasunerwartete.biz/"}, Settings: []Field{ + {Name: "info_password", Type: "info", Label: "About Password Expiry", Default: "D-U has an 20 week Password Expiry regime. So if the Indexer has stopped working then the first thing you should do is check if your password has expired by login in at Das Unerwartete, and if necessary use the Passwort anfordern (Request password) button to renew it."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "onlyupload", Type: "checkbox", Label: "Search OnlyUpload", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at D-U", Default: "OnlyUpload are torrents where download is not counted but upload is. Good for building your Ratio up. (On the Jackett dashboard search results these are tagged as Freeleech)."}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Anzahl der Torrents beim Durchsuchen: setting to 60 on your Control Panel. The default is 15."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts will be deactivated after 7 weeks and deleted after another 3 weeks."}, + }}, + {ID: "dasunerwartete-api", Name: "Das Unerwartete (API)", Description: "Das Unerwartete (D-U) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL. This is the API version.", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://dasunerwartete.biz/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find your API Key by accessing your Das Unerwartete profile page and look for the API-Key: tag."}, + {Name: "onlyupload", Type: "checkbox", Label: "Search OnlyUpload", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at D-U", Default: "OnlyUpload are torrents where download is not counted but upload is. Good for building your Ratio up. (On the Jackett dashboard search results these are tagged as Freeleech)."}, + }}, + {ID: "datascene-api", Name: "DataScene (API)", Description: "DataScene (DS) is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://datascene.xyz/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your DataScene account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: ""}, + }}, + {ID: "desitorrents-api", Name: "DesiTorrents (API)", Description: "DesiTorrents is an INDIAN Private Torrent Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://torrent.desi/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your DesiTorrents account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts will be disabled after 3 months of inactivity, 1 month for new accounts. Members must generate some download or upload activity at least once every 3 months."}, + }}, + {ID: "diablotorrent", Name: "Diablo Torrent", Description: "Diablo Torrent is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://diablotorrent.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "7"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrent oldalanként: setting to 100 on your account profile."}, + }}, + {ID: "digitalcore-api", Name: "DigitalCore (API)", Description: "DigitalCore (DC) is a Private Torrent Tracker for 0DAY / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://digitalcore.club/", "https://prxy.digitalcore.club/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Generate a new API Key by accessing your DigitalCore account Settings page and clicking on the Security tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "p2p_releases_only", Type: "checkbox", Label: "Search P2P releases only", Default: "false"}, + {Name: "unrar_releases_only", Type: "checkbox", Label: "Search UNRAR releases only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "d"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If your account is inactive (you do not sign in) for more than 90 days, your account is disabled. Park your account if you are going away for long periods."}, + }}, + {ID: "dimeadozen", Name: "DimeADozen", Description: "DimeADozen (EzTorrent) is a Private Torrent Tracker for BOOTLEG MUSIC", Language: "en-GB", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio"}, URLs: []string{"http://www.dimeadozen.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + }}, + {ID: "discfan", Name: "DiscFan", Description: "DiscFan is a CHINESE Private Torrent Tracker for MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://discfan.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "docspedia", Name: "DocsPedia", Description: "DocsPedia is a Private Torrent Tracker for E-LEARNING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Other", "TV"}, URLs: []string{"https://www.docspedia.world/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts without activity in the first 28 days will be deleted automatically by the system."}, + }}, + {ID: "drugari", Name: "Drugari", Description: "Drugari is a CROATIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hr-HR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"http://drugari.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 40 on your account profile. The Default is 30."}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Found no results while trying to browse this tracker then first access the site with your browser and read any new mail you may have received. You cannot browse torrents with unread mail outstanding."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in to the Drugari web site with your browser once every 60 days to prevent your account from getting disabled."}, + }}, + {ID: "ds-reloaded", Name: "DS-Reloaded", Description: "DS-Reloaded (DS.R) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://ds-reloaded.com/"}, Settings: []Field{ + {Name: "info_password", Type: "info", Label: "About Password Expiry", Default: "DS.R has an 8 week Password Expiry regime. So if the Indexer has stopped working then the first thing you should do is check if your password has expired by login in at DS-Reloaded, and if necessary use the Passwort anfordern (Request password) button to renew it."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "onlyupload", Type: "checkbox", Label: "Search OnlyUpload", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at DS.R", Default: "OnlyUpload are torrents where download is not counted but upload is. Good for building your Ratio up. (On the Jackett dashboard search results these are tagged as Freeleech)."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts will be deactivated after 7 weeks and deleted after another 3 weeks."}, + }}, + {ID: "dubhe", Name: "dubhe (天枢)", Description: "dubhe (天枢) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://dubhe.site/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "ebooks-shares", Name: "Ebooks-Shares", Description: "Ebooks-Shares is a Private Torrent Tracker for EBOOKS / AUDIOBOOKS", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books"}, URLs: []string{"https://ebooks-shares.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "vip", Type: "checkbox", Label: "Include VIP results", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "All members are required to log into their account at least every 89 days or you will be deleted without warning."}, + }}, + {ID: "empornium", Name: "Empornium", Description: "Empornium (EMP) is a Private Torrent Tracker for 3X", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://www.empornium.sx/"}, Settings: []Field{ + {Name: "info_2fa", Type: "info", Label: "About 2FA", Default: "If you want to enable 2FA then use the Empornium2FA indexer instead."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + }}, + {ID: "empornium2fa", Name: "Empornium2FA", Description: "Empornium (EMP) is a Private Torrent Tracker for 3X. This indexer uses cookie login for 2FA.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://www.empornium.sx/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + }}, + {ID: "emuwarez", Name: "eMuwarez (API)", Description: "eMuwarez is a SPANISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "es-ES", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://emuwarez.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your eMuwarez account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "estone", Name: "eStone", Description: "eStone (BigTorrent) is a HUNGARIAN Private Torrent Tracker for 0DAY / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://estone.cc/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "feltoltve"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Anyone who does not enter the site for 180 days will be automatically deleted!"}, + }}, + {ID: "exitorrent-org", Name: "exitorrent.org", Description: "exitorrent.org is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://exitorrent.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "drop_polish_prefix", Type: "checkbox", Label: "Drop the Polish title prefix", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "explosiv-world", Name: "Explosiv-World", Description: "Explosiv-World (E-W) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://explosiv-world.biz/"}, Settings: []Field{ + {Name: "info_password", Type: "info", Label: "About Password Expiry", Default: "E-W has an 8 week Password Expiry regime. So if the Indexer has stopped working then the first thing you should do is check if your password has expired by login in at Explosiv-World, and if necessary use the Passwort anfordern (Request password) button to renew it."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "onlyupload", Type: "checkbox", Label: "Search OnlyUpload", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at E-W", Default: "OnlyUpload are torrents where download is not counted but upload is. Good for building your Ratio up. (On the Jackett dashboard search results these are tagged as Freeleech)."}, + }}, + {ID: "extremebits", Name: "ExtremeBits", Description: "ExtremeBits is a Private Torrent Tracker for EXTREME SPORTS", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://extremebits.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If you don't log in, you will be deleted for inactivity after a few months."}, + }}, + {ID: "f1carreras-api", Name: "F1Carreras (API)", Description: "F1Carreras is a SPANISH Private Torrent Tracker for Motor Racing TV Releases", Language: "es-MX", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://f1carreras.xyz/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your F1Carreras account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "f1gp", Name: "F1GP", Description: "F1GP is a Private Torrent Tracker for F1, F2, F3, FE, F1 Academy Racing", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other", "TV"}, URLs: []string{"https://f1gp.site/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile. Default is 20."}, + }}, + {ID: "fanoin", Name: "FANO.IN", Description: "Fano.in is a LATVIAN Private Torrent Tracker for 0DAY / GENERAL", Language: "lv-LV", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.fano.in/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "fappaizuri", Name: "Fappaizuri", Description: "Fappaizuri is a Private Torrent Tracker for HENTAI / JAV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Other", "TV", "XXX"}, URLs: []string{"https://www.fappaizuri.me/"}, Settings: []Field{ + {Name: "info_2fa", Type: "info", Label: "About 2FA", Default: "If you want to enable 2FA then use the Fappaizuri2FA indexer instead."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "lang", Type: "select", Label: "Language", Default: "0"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "fappaizuri2fa", Name: "Fappaizuri2FA", Description: "Fappaizuri is a Private Torrent Tracker for HENTAI / JAV. This indexer uses cookie login for 2FA.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Other", "TV", "XXX"}, URLs: []string{"https://www.fappaizuri.me/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "lang", Type: "select", Label: "Language", Default: "0"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "fearnopeer", Name: "FearNoPeer", Description: "FearNoPear is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://fearnopeer.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your FearNoPeer account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts that have not logged in for 150 days will be disabled, and may be deleted shortly afterwards."}, + }}, + {ID: "femdomcult", Name: "Femdomcult", Description: "Femdomcult is a Private Torrent Tracker for FETISH 3X", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://femdomcult.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "User classes Beginner and Perv have to be inactive (= not logged in on the site, tracker activity/seeding does not count) for 4 months before getting disabled automatically. Member class and higher are exempt."}, + }}, + {ID: "finelite", Name: "FinElite", Description: "FinElite (FE) is a FINNISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fi-FI", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://finelite.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "text", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_finelite", Type: "info", Label: "Login Requirement", Default: "To successfully login, members must first message FinElite staff, asking that their account be whitelisted from captcha validation.

Onnistuakseen sisäänkirjautumisessa jäsenten on ensin lähetettävä viesti FinElite henkilökunnalle ja pyydettävä, että heidän tilinsä poistetaan captcha-varmennuksesta."}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Julkaisuja per sivu setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unused IDs in the User and Power User categories are automatically deleted after 90 days. The account can be parked and stored on the site for 180 days."}, + }}, + {ID: "flood", Name: "Flood", Description: "Flood (FLD) is a Private Torrent Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://flood.st/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API key", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or generate a new API key by accessing the Security tab of your account settings."}, + {Name: "order_by", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "order_dir", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "freefarm", Name: "Free Farm (自由农场)", Description: "Free Farm (自由农场) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://pt.0ff.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted.
  2. Elite User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "funkytorrents", Name: "FunkyTorrents", Description: "FunkyTorrents (FT) is a Private Torrent Tracker for MUSIC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other"}, URLs: []string{"https://funkytorrents.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive users will be removed in 180 days, users that haven't downloaded/uploaded anything will be removed in 90 days after registration. You can park your account in your Profile to prevent it from being deleted because of inactivity if you go away on for example a vacation. When the account has been parked limits are put on the account, for example you cannot use the tracker and browse some of the pages."}, + }}, + {ID: "futuretorrent", Name: "FutureTorrent", Description: "FutureTorrent is an ITALIAN Private PAY2DL Torrent Tracker for MOVIES / TV / GENERAL", Language: "it-IT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://futuretorrent.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 40 on your account profile."}, + }}, + {ID: "fuzer", Name: "Fuzer", Description: "Fuzer (FZ) is an ISRAELI Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "he-IL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.fuzer.xyz/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "dateadded"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "g3minitr4ck3r-api", Name: "G3MINI TR4CK3R (API)", Description: "G3MINI TR4CK3R is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://gemini-tracker.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your G3MINI TR4CK3R account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "use_fl_tokens", Type: "checkbox", Label: "Use Freeleech Tokens automatically", Default: "true"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "vfq", Type: "checkbox", Label: "Replace VFQ with FRENCH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "gay-torrentsorg", Name: "gay-torrents.org", Description: "Gay-Torrents.org is a Private Torrent Tracker for GAY 3X", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://gay-torrents.org/", "https://gay-area.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_categories", Type: "info", Label: "Hidden categories", Default: "Results for categories hidden in account profile will not be visible."}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "You can increase the number of search results in your profile.
Default is 15."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "data"}, + {Name: "order", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "gaytorrentru", Name: "GAYtorrent.ru", Description: "GayTorrent.ru is a Private Torrent Tracker for GAY 3X", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.gaytor.rent/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_hidden", Type: "info", Label: "Hidden categories", Default: "Results for categories hidden in account profile will not be visible."}, + {Name: "info_limit", Type: "info", Label: "Download Ratio", Default: "GayTorrent.ru has a daily download slot limit as defined by your ratio, your uploads, your donations, etc. If downloads fail then you have exceeded your allocation. Access the web site to find more info here"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unused accounts (both upload and download are zero) are disabled by the system after 60 days of no login. Used accounts with prior activity (upload and/or download) are disabled by the system after 240 days of no login."}, + }}, + {ID: "generationfree-api", Name: "Generation-Free (API)", Description: "Generation-Free (GF-Free) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://generation-free.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Generation-Free account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "vfq", Type: "checkbox", Label: "Replace VFQ with FRENCH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts inactive for 45 days are automatically deleted (all ranks included). To remain active, simply log in and participate (downloads, forums, shoutbox, games). Accounts created solely to build up numbers will be deactivated. As a free tracker with a limited number of spots, we regularly delete inactive accounts."}, + {Name: "page_for_test", Type: "select", Label: "Page for TEST", Default: "1"}, + {Name: "info_page", Type: "info", Label: "About TEST page", Default: "Generation-Free's API only delivers torrents that are at least 12 hours old. Therefore, when there are more than 100 torrents loaded to the site in a day, the indexer TEST may fail with 0 results. To allow the TEST to successed you will need to select another page to fetch."}, + }}, + {ID: "ggpt", Name: "GGPT", Description: "GGPT is a CHINESE Private Torrent Tracker for GAMES", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Other", "XXX"}, URLs: []string{"https://www.gamegamept.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Extreme User and above will be retained forever
  2. Elite User and above will not have their account deleted within 180 days after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 180 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 180 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 30 consecutive days.
"}, + }}, + {ID: "gigatorrents", Name: "GigaTorrents", Description: "GigaTorrents is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://gigatorrents.ws/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Rules for deletion:
  1. Users who have registered at least 4 weeks ago and have uploaded 0 bytes will be deleted
  2. Users who have not accessed the site for 1 year will be permanently deleted
  3. Users who have not accessed the site for 4 weeks will be deleted.
"}, + }}, + {ID: "gimmepeers", Name: "GimmePeers", Description: "GimmePeers (formerly ILT) is a Private PAY2DL Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.gimmepeers.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "girotorrent", Name: "Girotorrent", Description: "Girotorrent is an ITALIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "it-IT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://girotorrent.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile. The default is 15."}, + }}, + {ID: "haidan", Name: "HaiDan", Description: "HaiDan is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://www.haidan.cc/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_indexer", Type: "info", Label: "Alert", Default: "HaiDan has switched to a group torrent list, which means this Indexer can only display the first item in each group.
This yml Indexer will eventually be re-written in c# as soon as a c# dev volunteers, to display all items in a group."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users with no traffic (ie, upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "happyfappy", Name: "HappyFappy", Description: "HappyFappy (HF) is a Private Torrent Tracker for 3X", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://www.happyfappy.net/"}, Settings: []Field{ + {Name: "info_2fa", Type: "info", Label: "About 2FA", Default: "If you want to enable 2FA then use the HappyFappy2FA indexer instead."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To keep your account active, sign in and browse the site at least once every 120 days. Seeding torrents does not count as account activity, so in order to remain active you need to sign in and browse the site. Pornstar Trainee (and above) have a longer inactivity timer, but logging in regularly is recommended to learn about special events and new features."}, + }}, + {ID: "happyfappy2fa", Name: "HappyFappy2FA", Description: "HappyFappy (HF) is a Private Torrent Tracker for 3X. This indexer uses cookie login for 2FA.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://www.happyfappy.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To keep your account active, sign in and browse the site at least once every 120 days. Seeding torrents does not count as account activity, so in order to remain active you need to sign in and browse the site. Pornstar Trainee (and above) have a longer inactivity timer, but logging in regularly is recommended to learn about special events and new features."}, + }}, + {ID: "hawke-uno", Name: "hawke-uno", Description: "hawke-uno (HUNO) is a Private Torrent Tracker for HD MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://hawke.uno/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your hawke-uno account My Security page and clicking on the API Token tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "SS and IF members must either login or register any seeding activity in a rolling window of 180 days to retain their account. Failure to do so will result in their account being disabled by the site automatically."}, + }}, + {ID: "hddolby", Name: "HD Dolby", Description: "HD Dolby is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://www.hddolby.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. (Division Commander) Extreme User and above will be retained forever
  2. (Brigadier Commander) Veteran Users and above will not be deleted after their account has been parked (in the Control Panel)
  3. Users who have parked their accounts will be disabled if they do not log in for 180 consecutive days
  4. Users with a non-parked account will have their account disabled if they do not log in for 90 consecutive days
  5. Newly registered users who do not have traffic (i.e., upload and download data is 0) and do not log in for 5 consecutive days will be disabld.
"}, + }}, + {ID: "hd-club", Name: "HD-CLUB", Description: "HD-CLUB is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "cs-CZ", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://freecztorrent.eu/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "hdforever", Name: "HD-Forever", Description: "HD-Forever (HD-F) is a FRENCH Private Torrent Tracker for HD MOVIES", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://hdf.world/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "usetoken", Type: "checkbox", Label: "Always try to use the FreeLeech Token", Default: "false"}, + {Name: "info_token", Type: "info", Label: "About the Freeleech token", Default: "If you do not have any Freeleech tokens then do not tick this box.
Attempting a token download when you have no tokens will generate an error."}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_radarr", Type: "info", Label: "About Radarr", Default: "The HD-F web site cannot find movies if you use the release year in a title search. When you define your Radarr Indexer remember to tick the Remove year from search string checkbox."}, + {Name: "info_release_name", Type: "info", Label: "About release names", Default: "For more stable release names, enable Afficher les noms de fichiers in your HD-F profile settings."}, + }}, + {ID: "hdolimpo-api", Name: "HD-Olimpo (API)", Description: "HD-Olimpo is a SPANISH Private Torrent Tracker for HD MOVIES / TV", Language: "es-ES", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://hd-olimpo.club/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your account My configuration / Mi configuración => Secutiy / Seguridad page and clicking on the API Token tab."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "hdonly-api", Name: "HD-Only (API)", Description: "HD-Only (HD-O) is a FRENCH Private Torrent Tracker for HD MOVIES / TV", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://hd-only.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API Key", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API Key", Default: "Find or Generate a new API Key by accessing your HD-Only account Access Settings tab and copy the API Key."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "add_hybrid_features_to_filename", Type: "checkbox", Label: "Include DV/HDR10 in filename when a release has multiple HDR formats.", Default: "false"}, + {Name: "add_version_francophone_to_title", Type: "checkbox", Label: "Append Version Francophone flags to titles if available (VFF, VFQ, VFI, VF)"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "hdspace", Name: "HD-Space", Description: "HD-Space (HDS) is a Private Torrent Tracker for HD MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://hd-space.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "hdtorrents", Name: "HD-Torrents", Description: "HD-Torrents (HDT) is a Private Torrent Tracker for HD MOVIES / TV / MUSIC / 3X", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV", "XXX"}, URLs: []string{"https://hdts.ru/", "https://hd-torrents.org/", "https://hd-torrents.net/", "https://hd-torrents.me/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "data"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If you do not log in for 50 days, your account will be disabled for inactivity. If you are VIP you won't be disabled until the VIP period is over."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "hd-unit3d-api", Name: "HD-UNiT3D (API)", Description: "HD-UNiT3D is a Private Torrent Tracker for HD MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://hd-united.vn/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your HD-UNiT3D account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts will be deleted as scheduled by Staff."}, + }}, + {ID: "hdarea", Name: "HDArea", Description: "HDArea (HDA) is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://hdarea.club/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account Retention Rules:
  1. Veteran Users and above will be retained forever
  2. Insane User and above will not be deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 150 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 60 consecutive days.
  5. Newly registered users who have no traffic for 7 days (i.e., upload/download data is 0) will be deleted.
"}, + }}, + {ID: "hdbao", Name: "HDBao", Description: "HDBao is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://hdbao.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted.
  2. Elite User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "hdc", Name: "HDCiTY", Description: "HDCiTY (HDC) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://hdcity.city/", "https://hdcity.work/", "https://hdcity.leniter.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_Results", Type: "info", Label: "Settings for Results", Default: "To use this indexer please set the following on your HDC account profile:"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted.
  2. Elite User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 180 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 60 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 30 days in a row.
"}, + }}, + {ID: "hdclone", Name: "HDClone", Description: "HDClone is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.hdclone.top/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the HDClone Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 80 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 60 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 10 consecutive days.
"}, + }}, + {ID: "hdfans", Name: "HDFans", Description: "HDFans is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://hdfans.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the HDFans Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Extreme User and above will be retained forever
  2. Veteran User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 180 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 90 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 15 consecutive days.
"}, + }}, + {ID: "hdhome", Name: "HDHome", Description: "HDHome is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://hdhome.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "hdkylin", Name: "HDKylin (麒麟)", Description: "HDKylin (麒麟) is a CHINESE Private tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://na.hdkylin.com/", "https://www.hdkyl.in/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Retention rules:
  1. [Veteran User] and above will be retained forever.
  2. [Elite User] and above will not be deleted after parking their accounts (in the Control Panel).
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days.
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days.
  5. Users with no traffic (i.e. upload/download data are both 0) will have their accounts deleted if they do not log in for 40 consecutive days.
"}, + }}, + {ID: "hdroute", Name: "HDRoute", Description: "HDRoute is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"http://hdroute.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + }}, + {ID: "hdsky", Name: "HDSky", Description: "HDSky is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://hdsky.me/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "hdtime", Name: "HDtime", Description: "HDtime is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://hdtime.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users with no traffic (ie, upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "hdtorrentsit", Name: "HDTorrents.it (API)", Description: "HDTorrents.it is an ITALIAN Private PAY2DL site for MOVIES / TV", Language: "it-IT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://hdtorrents.eu/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your HDTorrents.it account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "hdturk", Name: "HDTurk", Description: "HDTurk is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "tr-TR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://hdturk.club/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + }}, + {ID: "hdu", Name: "HDU", Description: "HDU is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.upxin.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted.
  2. Elite User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 365 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 120 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 3 days in a row.
"}, + }}, + {ID: "hdvideo", Name: "HDVideo", Description: "HDVideo is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://hdvideo.top/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the HDVideo Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts inactive (i.e. not logged in for a long time) are automatically deleted."}, + }}, + {ID: "hdzero-api", Name: "HDZero (API)", Description: "HD Zero is a SPANISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "es-ES", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "Other", "TV"}, URLs: []string{"https://hdzero.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your HD Zero account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "hebits", Name: "Hebits", Description: "Hebits (HB) is an ISRAELI Private Torrent Tracker for MOVIES / TV / GENERAL.", Language: "he-IL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://hebits.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "There is an automatic system for blocking inactive accounts. The system will block any account below Heb Prophet rank without activity for at least 90 days."}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Login failed: Selector \"a[href*=\"/logout.php?auth=\"]\" didn't match then first access the site with your browser and check that you are not being forced to change your password because it has expired after 180 days."}, + }}, + {ID: "hellashut", Name: "HellasHut", Description: "HellasHut is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "el-GR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://hellashut.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts inactive for more than 45 days are automatically deleted."}, + }}, + {ID: "hellashut-api", Name: "HellasHut (API)", Description: "HellasHut is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "el-GR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://hellashut.net/"}, Settings: []Field{ + {Name: "passkey", Type: "text", Label: "PassKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your PassKey", Default: "Find your PassKey by accessing your HellasHut profile on the My Profile page and scrolling down to the PassKey field."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts inactive for more than 45 days are automatically deleted."}, + }}, + {ID: "hellenic-hd-api", Name: "HELLENIC-HD (API)", Description: "HELLENIC-HD is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "el-GR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://hellenic-hd.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your HELLENIC-HD account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts that have not logged in for 60 days will be disabled, and may be deleted shortly afterwards."}, + }}, + {ID: "hhanclub", Name: "HHanClub", Description: "HHanClub is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://hhanclub.net/", "https://hhan.club/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the HHanClub Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Ultimate User and above will be retained forever
  2. Veteran Users and above will not be deleted after parking (in the control panel)
  3. Users with a parked account will be banned if they do not log in for 400 consecutive days
  4. Users who do not log in for 30 consecutive days will be banned
  5. Newly registered users with no traffic within 7 days, will be banned.
"}, + }}, + {ID: "hhd-api", Name: "HHD (API)", Description: "HHD is a Private Torrent Tracker for MOVIES / TV / GAMES", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://homiehelpdesk.net/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your HHD account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To not get disabled, you are required to login to the site at least once every 30 days or be actively seeding at least 2 torrent."}, + }}, + {ID: "houseofdevil", Name: "House of Devil", Description: "House of Devil is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://h-o-d.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "pin", Type: "text", Label: "Pin"}, + {Name: "onlyupload", Type: "checkbox", Label: "Filter OnlyUpload only", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at H-O-D", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents pro Seite: setting to 100 on your UserCP page. The default is 15."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If you are inactive for longer than 8 weeks, your account will be automatically deactivated."}, + {Name: "info_seedhours", Type: "info", Label: "Seeding Hours", Default: "Before using this indexer, make sure that you have set Seed-Angaben and DSL Speed on your UserCP page."}, + }}, + {ID: "hqmusic", Name: "HQMusic", Description: "HQMusic is a VIETNAMESE Private Torrent Tracker for MUSIC", Language: "vi-VN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio"}, URLs: []string{"https://tracker.hqmusic.info/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts will be deleted according to the following rules:
  1. Power Users and above will never have their accounts deleted.
  2. Users and above will never have their accounts deleted if they park their accounts (See [User CP]).
  3. Parked accounts will be deleted if they do not log in within 365 days.
  4. Unparked accounts will be deleted if they do not log in within 240 days.
  5. Inactive accounts downloading or uploading on the tracker will be deleted after 240 days of not logging in or after 120 days from the time of registration.
"}, + }}, + {ID: "hudbt", Name: "HUDBT (蝴蝶)", Description: "HUDBT (蝴蝶) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://hudbt.hust.edu.cn/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not be deleted after parking (in the control panel)
  3. Users with a parked account who do not log in for 240 consecutive days will be deleted
  4. Users with non-parked account will be deleted if they do not log in for 120 consecutive days
  5. Users with no traffic (that is, upload/download data are both 0) will be deleted if they do not log in for 30 consecutive days, or if the registration time reaches 60 days.
"}, + }}, + {ID: "hxpt", Name: "HxPT (好学)", Description: "HxPT (好学) is a CHINESE Private Torrent Tracker for E-LEARNING", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://www.hxpt.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "haitang", Name: "Hǎitáng (海棠PT)", Description: "Hǎitáng (海棠PT) is a CHINESE Private Torrent Tracker for OPERA / CROSSTALK", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "TV"}, URLs: []string{"https://www.htpt.cc/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Users with Veteran User (Wen Chou) and above will be retained forever
  2. Elite User (Wu Sheng) and above will not be deleted after parking (in the control panel)
  3. Users with a parked account who do not log in for 365 consecutive days will be deleted
  4. Users with a non-parked account who have not logged in for 180 consecutive days be deleted
  5. Users who have no traffic (i.e. upload/download The data is all 0) will be deleted If they do not log in for 90 consecutive days.
"}, + }}, + {ID: "immortuos", Name: "Immortuos", Description: "Immortuos is a GERMAN Private Tracker for MOVIES / TV", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://immortuos.life/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at Immortuos", Default: "OnlyUpload are torrents where download is not counted but upload is. Good for building your Ratio up. (On the Jackett dashboard search results these are tagged as Freeleech)."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "indietorrents", Name: "Indietorrents", Description: "Indietorrents is a Private Music Torrent Tracker for independent MUSIC", Language: "en-GB", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio"}, URLs: []string{"https://www.indietorrents.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_cats", Type: "info", Label: "About categories", Default: "This indexer only supports searching the Audio category. Video searching is not supported."}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "This indexer does not support Torrent Groups.
On your account Settings change Torrent grouping to DO NOT Group torrents by default."}, + }}, + {ID: "infinity-api", Name: "INFINITY (API)", Description: "INFINITY is a Private PAY2DL Torrent Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://infinitylibrary.net/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your INFINITY account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "The system bot will prune inactive users after 90 days of no activity. If you wish to keep your account be sure to login."}, + }}, + {ID: "infinityhd-api", Name: "InfinityHD (API)", Description: "InfinityHD is a Private Torrent Tracker for MOVIES / TV / ANIME", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://infinityhd.net/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your InfinityHD account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Your account will be automatically disabled after 90 days of inactivity. After 120 days your account will be pruned and is permanently deleted."}, + }}, + {ID: "infire", Name: "Infire", Description: "Infire is a SLOVENIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "sl-SI", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://infire.si/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "data"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "The period of inactivity after which we delete your account is 3 months. VIP users are not deleted."}, + }}, + {ID: "insanetracker", Name: "Insane Tracker", Description: "Insane Tracker is a HUNGARIAN Private Torrent Tracker for 0DAY / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://newinsane.info/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "After half a year of inactivity you will first be placed in a parked state which ensures that you can enter for another year and a half. If you don't log in by then, the system will permanently delete it."}, + }}, + {ID: "itatorrents", Name: "ItaTorrents", Description: "ItaTorrents is an ITALIAN Private tracker for MOVIES / TV / GENERAL", Language: "it-IT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://itatorrents.xyz/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your ItaTorrents account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To not get disabled, you are required to login to the site at least once every 90 days or be actively seeding at least 1 torrent."}, + }}, + {ID: "jme-reunit3d-api", Name: "JME-REUNIT3D (API)", Description: "JME-REUNIT3D is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://jme-reunit3d.de/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your JME-REUNIT3D account My Security page and clicking on the API Token tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If a user has not actively logged in for 30 days, the profile is automatically deactivated and receives the user class 'Disabled'.
After deactivation, the profile can be reactivated within 60 days – after which it will be permanently deleted."}, + }}, + {ID: "joyhd", Name: "JoyHD", Description: "JoyHD (JHD) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://www.joyhd.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "jpopsuki", Name: "JPopsuki", Description: "JPopSuki is a Private Torrent Tracker for ASIAN MUSIC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://jpopsuki.eu/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "s3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "jptv4us-api", Name: "JPTV4us (API)", Description: "JPTV4us is a JAPANESE Private Torrent Tracker for MOVIES / TV / MUSIC / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://jptv4.us/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your JPTV4us account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "kamept", Name: "KamePT", Description: "KamePT is a CHINESE Private Torrent Tracker for 3X", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://kamept.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "karagarga", Name: "Karagarga", Description: "Karagarga is a Private Torrent Tracker that tracks non-hollywood, rare and obscure MOVIES, MUSIC and LITERATURE.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies"}, URLs: []string{"https://karagarga.in/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + }}, + {ID: "keepfriends", Name: "Keep Friends", Description: "Keep Friends (FRDS-PT) is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.keepfrds.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "english_title", Type: "checkbox", Label: "Use English titles instead of Chinese ones (when available).", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "kelu", Name: "Kelu", Description: "Kelu is a CHINESE Private Torrent Tracker for GAY 3X", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Other", "XXX"}, URLs: []string{"https://our.kelu.one/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the Kelu Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts (i.e. not logged in for a long time) are automatically deleted."}, + }}, + {ID: "korsar", Name: "Korsar", Description: "Korsar is a RUSSIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"http://filbi1976.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "t"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "d"}, + }}, + {ID: "krazyzone", Name: "KrazyZone", Description: "KrazyZone is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://krazyzone.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting 0 results then access the site with your browser and mark as read all PMs."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Be active here, you must login at least once a month. Also, not downloading anything is considered being inactive (except if you're an uploader or VIP). Accounts that are inactive for 30 days are deleted unless you have told staff in advance."}, + }}, + {ID: "kufei", Name: "Kufei (库非)", Description: "Kufei (库非) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://kufei.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the Kufei Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted
  2. Elite User or above would never be deleted if parked (at User CP)
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row
  4. Un-parked accounts would be deleted if users have not logged in for more than 150 days in a row
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 30 days in a row.
"}, + }}, + {ID: "kufirc", Name: "Kufirc", Description: "Kufirc is a HUNGARIAN Private tracker for 3X", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Other", "XXX"}, URLs: []string{"https://kufirc.com/"}, Settings: []Field{ + {Name: "info_2fa", Type: "info", Label: "About 2FA", Default: "If you want to enable 2FA then use the Kufirc2FA indexer instead."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentek oldalanként: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "kufirc2fa", Name: "Kufirc2FA", Description: "Kufirc is a HUNGARIAN Private tracker for 3X. This indexer uses cookie login for 2FA.", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Other", "XXX"}, URLs: []string{"https://kufirc.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentek oldalanként: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "kunlun", Name: "Kunlun (昆仑)", Description: "Kunlun (昆仑) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://www.yhpp.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted
  2. Elite User or above would never be deleted if parked (at User CP)
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row
  4. Un-parked accounts would be deleted if users have not logged in for more than 150 days in a row
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "lacale-api", Name: "La Cale (API)", Description: "La Cale is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://la-cale.space/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API key", Required: true}, + {Name: "info_apikey", Type: "info", Label: "About your API key", Default: "Find/Generate your API key on your La Cale API keys."}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + }}, + {ID: "lajidui", Name: "lajidui", Description: "lajidui is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://pt.lajidui.top/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "lastdigitalunderground", Name: "Last Digital Underground", Description: "Last Digital Underground (LDU) is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://theldu.to/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Last Digital Underground account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in once every 60 days. You must download at least 1 item within your first month."}, + }}, + {ID: "lastfiles", Name: "LastFiles", Description: "LastFiles (LF) is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "ro-RO", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://lastfiles.ro/", "https://www.last-torrents.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort2", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "lat-team-api", Name: "Lat-Team (API)", Description: "Lat-Team is a SPANISH Private Torrent Tracker for MOVIES / TV", Language: "es-MX", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://lat-team.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Lat-Team account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in once every 90 days or seed at least 5 torrents to avoid having your account deactivated."}, + }}, + {ID: "learnflakes", Name: "LearnFlakes", Description: "LearnFlakes is a Private Torrent Tracker for CERTIFICATE / TRAINING E-LEARNING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Books"}, URLs: []string{"https://learnflakes.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Found no results while trying to browse this tracker then first access the site with your browser and check that you are not being forced to change your password because it has expired after 180 days."}, + }}, + {ID: "leech24", Name: "leech24", Description: "leech24 is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://leech24.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "id"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "lemonhd-net", Name: "LemonHD.net", Description: "LemonHD.net is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://lemonhd.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted.
  2. Elite User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "lesaloon", Name: "LeSaloon", Description: "Le Saloon is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://lesaloonv2-0.lol/", "https://lesaloonv2-0.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "vfq", Type: "checkbox", Label: "Replace VFQ with FRENCH", Default: "false"}, + }}, + {ID: "letseed", Name: "LetSeed", Description: "LetSeed is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "tr-TR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://letseed.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 40 on your account profile. The Default is 30."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To keep records updated regularly, all inactive accounts will be deleted after 60 days of inactivity."}, + }}, + {ID: "libranet", Name: "LibraNet", Description: "LibraNet (LN) is a HUNGARIAN Private Torrent Tracker for EBOOKS / LOSSLESS MUSIC", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies"}, URLs: []string{"https://libranet.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If you do not visit the site for 90 days, the system may delete it due to inactivity."}, + }}, + {ID: "linkomanija", Name: "LinkoManija", Description: "LinkoManija is an LITHUANIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "lt-LT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.linkomanija.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentų puslapyje setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive users will be deleted after 90 days. The newly created account with 0 sent data will be deleted after 28 days."}, + }}, + {ID: "locadora", Name: "Locadora (API)", Description: "Locadora is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / ANIME", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://locadora.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Locadora account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts that are inactive for 90 days are deactivated."}, + }}, + {ID: "longpt", Name: "LongPT", Description: "LongPT is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://longpt.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the LongPT Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted
  2. Elite User or above would never be deleted if parked (at User CP)
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row
  4. Un-parked accounts would be deleted if users have not logged in for more than 150 days in a row
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "losslessclub", Name: "LosslessClub", Description: "LosslessClub is a RUSSIAN Private Torrent Tracker for High Quality Music", Language: "ru-RU", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://losslessclub.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_login", Type: "info", Label: "About LosslessClub Forum versus LosslessClub Tracker", Default: "The LosslessClub Forum credentials are different from the LosslessClub Tracker credentials so if the indexer is giving you 'Error Username or password is incorrect' then you are likely using the Forum credentials to access the Tracker."}, + }}, + {ID: "lp-bits", Name: "LP-Bits 2.0", Description: "LP-Bits 2.0 is a Private Torrent Tracker for Linkin Park Music Releases.\"", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio"}, URLs: []string{"https://lp-bits.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "lst", Name: "LST", Description: "LST is an ENGLISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://lst.gg/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your LST account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts get disabled after 90 days of no logins or any sort of activity. Accounts will also get soft deleted after 120 days."}, + }}, + {ID: "luckpt", Name: "LuckPT", Description: "LuckPT is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.luckpt.de/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. If there is no valid traffic within 100 days of registration (participation in the calculation of sharing rate), the account will be blocked
  2. After the level is reduced to \"Peasant\", if the sharing rate is not improved within 30 days, the account will be blocked
  3. Long-term non-login:
      - UnParked account: 150 consecutive days of non-login → banned
      - Parked account: 400 consecutive days of non-login → banned
      - Veteran Master and above levels are not subject to long-term non-login ban restrictions
"}, + }}, + {ID: "luminarr-api", Name: "Luminarr (API)", Description: "Luminarr is a Private Torrent Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://luminarr.me/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your luminarr.me account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: ""}, + }}, + {ID: "madsrevolution", Name: "MaDs Revolution", Description: "MaDs Revolution is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://madsrevolution.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "s3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "After 8 weeks of inactivity, the account will be automatically deleted."}, + }}, + {ID: "magico", Name: "Magico", Description: "Magico (Trellas) is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "el-GR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://mpellas.me/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "majomparade", Name: "Majomparádé", Description: "Majomparádé (TurkDepo) is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://majomparade.eu/", "https://majomparade.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "0"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "0"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentek oldalanként: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Users who have been inactive for more than 25 weeks are automatically deleted."}, + }}, + {ID: "makingoff", Name: "Making Off", Description: "Making Off is a BRAZILIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://makingoff.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "0"}, + {Name: "info_delay", Type: "info", Label: "Delay between searches", Default: "This forum enforces a 20s delay between searches. If no results are returned for a search, wait for 20s and try again."}, + }}, + {ID: "malayabits-api", Name: "Malayabits (API)", Description: "Malayabits is a MALAYSIAN Private Torrent Tracker for MOVIES / TV / MUSIC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "TV"}, URLs: []string{"https://malayabits.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Malayabits account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in to the Malayabits web site with your browser once every 90 days to prevent your account from getting disabled."}, + }}, + {ID: "march", Name: "March", Description: "March is a CHINESE Private Torrent Tracker for MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://duckboobee.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "matrix", Name: "Matrix", Description: "M.A.T.R.I.X is a HUNGARIAN Private Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://matrixworld.info/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "ctime"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If you do not log in to the site for 6 months, the system will automatically delete it!"}, + }}, + {ID: "mdan", Name: "MDAN", Description: "Mansão dos Animes (MDAN) is a BRAZILIAN Private Torrent Tracker for ANIME", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "TV"}, URLs: []string{"https://bt.mdan.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents por página (Torrents per Page): setting to 100 on your Perfil (Profile). The default is 30."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts are automatically deleted."}, + }}, + {ID: "mesevilag", Name: "MeseVilág", Description: "MeseVilág (Fairytale World) is a HUNGARIAN Private Torrent Tracker for ANIMATED MOVIES / TV", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://mese-vilag.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "metalguru", Name: "MetalGuru", Description: "MetalGuru is a Private Torrent Tracker for GENERAL with focus on MUSIC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://metalguru.me/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "milkie", Name: "Milkie", Description: "Milkie.cc (ME) is Private Torrent Tracker for 0DAY / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://milkie.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new key here."}, + }}, + {ID: "mma-torrents", Name: "MMA-torrents", Description: "MMA-Torrents is a Private Torrent Tracker for MMA (Mixed Martial Arts)", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://mma-torrents.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "seeders"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "mnv", Name: "MNV", Description: "MNV (Max-New-Vision) is a Private GERMAN Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://mnvv2.info/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search FreeLeech only", Default: "false"}, + {Name: "onlyupload", Type: "checkbox", Label: "Search OnlyUpload only", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About Freeleech and OnlyUpload at MNV", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile. The default is 10."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts are automatically deactivated after 42 days."}, + }}, + {ID: "mojblink", Name: "MOJBLiNK", Description: "MOJBLiNK is a SLOVENIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "sl-SI", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.mojblink.si/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 50 on your account Personal Settings.
The Default is 30"}, + {Name: "info_xxx", Type: "info", Label: "XXX Results", Default: "To include XXX in results, tick the View XXX Torrents checkbox on your account Personal Settings."}, + }}, + {ID: "momentpt", Name: "MomentPT", Description: "MomentPT is a CHINESE Private Torrent Tracker for Photography", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://www.momentpt.top/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "monikadesign-api", Name: "MonikaDesign (API)", Description: "MonikaDesign is a CHINESE Private Torrent Tracker for MOVIES / TV / ANIME", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://monikadesign.uk/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your MonikaDesign account My Security page and clicking on the API Token tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "The account will be automatically deleted if you are a registered user who is more than 14 days old and has not uploaded or downloaded data."}, + }}, + {ID: "mousebits", Name: "MouseBits", Description: "MouseBits is a Private Torrent Tracker for all things Disney", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Other", "TV"}, URLs: []string{"https://mousebits.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "muxuege", Name: "Muxuege", Description: "Muxuege is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://pt.muxuege.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "myspleen", Name: "MySpleen", Description: "MySpleen is a Private Torrent Tracker for TV / COMEDY / ANIMATION / 80-90’S VHS NOSTALGIA", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other", "TV"}, URLs: []string{"https://www.myspleen.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + }}, + {ID: "nanyangpt", Name: "NanyangPT (南洋)", Description: "NanyangPT (南洋) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://nanyangpt.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. University lecturer and above users will be retained forever
  2. Excellent master's degree and above users will not be deleted after the account is parked (in the control panel)
  3. Users with a parked account who do not log in for 400 consecutive days will be deleted
  4. Users with non-parked account will be deleted if they do not log in for 150 consecutive days
"}, + }}, + {ID: "ncore", Name: "nCore", Description: "nCore is a HUNGARIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://ncore.pro/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the nCore Web Site. Otherwise just leave it empty."}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrent oldalanként: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Anyone who does not access the site for 8 weeks from registration or has been more than 8 weeks since their last stay will be automatically suspended. Anyone who does not log in (stays inactive) for 12 weeks after registration or after their last visit will be removed automatically."}, + }}, + {ID: "newheaven", Name: "New Heaven", Description: "New Heaven is a GERMAN Private tracker for MOVIES / AUDIO / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://newheaven.nl/"}, Settings: []Field{ + {Name: "info_general", Type: "info", Label: "Layout Manager Settings", Default: "Go to Usercenter->Einstellungen, scroll down to Layout Manager and ensure Comments-, Files- and Snatcher-Anzeige are set to anzeigen, so that the number of files, grabs, seeders and leechers can be correctly detected."}, + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "onlyupload", Type: "checkbox", Label: "Filter OnlyUpload only", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About Freeleech and OnlyUpload at NewHeaven", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "torrent_added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "d"}, + }}, + {ID: "nexum-api", Name: "Nexum (API)", Description: "Nexum is a FRENCH Private Torrent Tracker for MOVIES / TV", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://nexum-core.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API key", Required: true}, + {Name: "info_apikey", Type: "info", Label: "About your API key", Default: "Find/Generate your API key on your Nexum Paramètres at the Clé API section."}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "nicept", Name: "NicePT", Description: "NicePT is a CHINESE Private Torrent Tracker for 3X", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://www.nicept.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran Users users and above will be retained forever
  2. Elite Users and above will not have their account deleted after parking (in the Control Panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be banned if they do not log in for 40 consecutive days
  5. Users with no traffic (ie, upload/download data are both 0) will be banned if they do not log in for 7 consecutive days.
"}, + }}, + {ID: "nirvana", Name: "Nirvana (API)", Description: "Nirvana is a Private RUSSIAN Tracker for MOVIES / TV", Language: "ru-RU", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "Other", "TV"}, URLs: []string{"https://nirvana.li/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Nirvana account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive users are regularly deleted. To keep an account, you must visit the site at least once a season."}, + }}, + {ID: "njtupt", Name: "njtupt (浦园)", Description: "njtupt (浦园) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://njtupt.top/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the njtupt (浦园) Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account Retention Rules:
  1. Veteran User or above would never be deleted; (Not enabled for the time being).
  2. Elite User or above would never be deleted if parked (at User CP); (Not enabled for the time being).
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 150 days in a row.
"}, + }}, + {ID: "nobs", Name: "NOBS", Description: "NOBS (NUCLEAR ORDER BIT SYNDICATE) is a SPANISH Private Torrent Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://nobs.rawsmoke.net/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your NOBS account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "nordicbytes", Name: "NordicBytes", Description: "NordicBytes is a Mixed NORDIC Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://nordicbytes.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_apikey", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Key by accessing the NordicBytes Account API Key page."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Your account is automatically disabled after 90 days of no activity."}, }}, - {ID: "torrentleech", Name: "TorrentLeech", Description: "TorrentLeech is a semi-private tracker known for fast pre-times and a large catalog.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://www.torrentleech.org"}, Settings: []Field{ + {ID: "nordichd", Name: "NORDiCHD", Description: "NORDiCHD is a Mixed NORDIC Private Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://nordichd.org/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Found no results while trying to browse this tracker then first access the site with your browser and check that you are not being forced to change your password because it has expired after 180 days."}, }}, - {ID: "filelist", Name: "FileList", Description: "FileList is a Romanian semi-private tracker with a strong focus on HD/UHD movie and TV releases.", Language: "ro-RO", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://filelist.io"}, Settings: []Field{ + {ID: "nordicquality-api", Name: "NordicQuality (API)", Description: "NordicQuality is a NORDIC Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://nordicq.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your NordicQuality account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Your membership requires that you stay active at NordicQuality. To not get disabled, you are required to login to the site at least once every 90 days."}, + }}, + {ID: "nostradamus", Name: "Nostradamus", Description: "Nostradamus is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://nostradamus.foo/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API Key", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API Key", Default: "You can find your API Key by accessing the Nostradamus API access page and scrolling down to the API Credentials section."}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + }}, + {ID: "novahd", Name: "NovaHD", Description: "NovaHD is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.novahd.top/", "https://tracker.novahd.top/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "okpt", Name: "OKPT", Description: "OKPT is a CHINESE Private Torrent Tracker for MOVIES / TV / MUSIC / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.okpt.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:"}, + }}, + {ID: "oldgreektracker", Name: "Old Greek Tracker (OGT)", Description: "Old Greek Tracker (OGT) is a GREEK Private Torrent Tracker for PRE-2020 MOVIES / TV / GENERAL", Language: "el-GR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://oldgreektracker.xyz/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile. The Default is 15."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To keep records updated regularly, all inactive accounts will be deleted after 60 days of inactivity."}, + }}, + {ID: "oldtoonsworld", Name: "OldToonsWorld (API)", Description: "Old Toons World (OTW) is a Private Torrent Tracker for ANIMATED MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://oldtoons.world/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Oldtoons account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: ""}, + }}, + {ID: "onlyencodes-api", Name: "OnlyEncodes+ (API)", Description: "OnlyEncodes+ is a Private Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://onlyencodes.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your OnlyEncodes+ account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in once every 60 days or seed at least 1 torrent to not get disabled."}, + }}, + {ID: "opencd", Name: "OpenCD", Description: "OpenCD is a CHINESE Private Torrent Tracker for LOSSLESS ASIAN MUSIC", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio"}, URLs: []string{"https://open.cd/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile. Default is 50."}, + }}, + {ID: "oshenpt", Name: "OshenPT", Description: "OshenPT is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://www.oshen.win/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the OshenPT Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted
  2. Elite User or above would never be deleted if parked (at User CP)
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row
  4. Un-parked accounts would be deleted if users have not logged in for more than 150 days in a row
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "ourbits", Name: "OurBits", Description: "OurBits (HDPter) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://ourbits.club/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted
  2. Elite User or above would never be deleted if parked (at User CP)
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row
  4. Un-parked accounts would be deleted if users have not logged in for more than 150 days in a row
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 7 days in a row.
"}, + }}, + {ID: "p2pbg", Name: "P2PBG", Description: "P2PBG is a BULGARIAN Private PAY2DL Torrent Tracker for 0DAY / GENERAL", Language: "bg-BG", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.p2pbg.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_magnets", Type: "info", Label: "About Magnets", Default: "IF you do not see Magnets in the results then this means that you are not a Super User or VIP.
You will need to visit the MarketPlace."}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "Only the Base style is supported with this indexer.
For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "data"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "panda", Name: "Panda", Description: "Panda is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://pandapt.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the Panda Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts would be deleted based on the following rules:
  1. Nexus Master or above would never be deleted.
  2. Veteran User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row.
  4. Un-parked accounts would be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "parabellumhd-api", Name: "ParabellumHD (API)", Description: "ParabellumHD is a SPANISH Private Torrent Tracker for HEVC & AV1-encoded MOVIES / TV", Language: "es-ES", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "Other", "TV"}, URLs: []string{"https://parabellumhd.cx/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your ParabellumHD account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "party-tracker", Name: "Party-Tracker", Description: "Party-Tracker is a HUNGARIAN private tracker for MOVIES / TV / GENERAL", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://party-tracker.info/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search FreeLeech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrent oldalanként: setting to 100 on your account profile."}, + }}, + {ID: "peeratiko", Name: "Peeratiko", Description: "Peeratiko is a GREEK Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "el-GR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://peeratiko.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page setting to 100 on your Personal Options from the Personal Settings menu on the Peeratiko webpage."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts inactive for more than 42 days are automatically deleted."}, + }}, + {ID: "peersfm", Name: "Peers.FM", Description: "Peers.FM is a RUSSIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://peers.fm/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "When are accounts automatically deleted?
  1. Activated accounts with zero download/share values \u200b\u200bare deleted 30 days after registration
  2. Unbanned accounts (active accounts) of the User class are deleted after 120 days have passed since the last recorded activity
  3. Unbanned accounts (active accounts) of the Power User class are deleted after 180 days from the last recorded activity
  4. You should also keep in mind that the administration regularly deletes accounts with very low ratings.
"}, + }}, + {ID: "phoenixproject", Name: "Phoenix Project", Description: "Phoenix Project is a Private MacOS software tracker", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Other"}, URLs: []string{"https://phoenixproject.app/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2fa_code", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the Phoenix Project Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "pignetwork", Name: "PigNetwork (猪猪网)", Description: "PigNetwork (猪猪网) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://piggo.me/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_date", Type: "info", Label: "Date Setting", Default: "Access your 个人中心 网站设定 (UserCP Website settings) and set 时间显示类型 (Time Display Type) to 发生时间 (Time of Occurence). Elapsed Time is not supported by this indexer and will see zero results."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:"}, + }}, + {ID: "pixelcove", Name: "PixelCove", Description: "PixelCove (Ultimate Gamer) is a Private Torrent Tracker for GAMES", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Other"}, URLs: []string{"https://www.pixelcove.me/"}, Settings: []Field{ + {Name: "info_2fa", Type: "info", Label: "About 2FA", Default: "If you want to enable 2FA then use the PixelCove2FA indexer instead."}, + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must login regularly to maintain an active account. For User and Member, you must login once every 4 months. For Power User, Master and Elite you must login once per year. If you fail to do this your account will be disabled."}, + }}, + {ID: "pixelcove2fa", Name: "PixelCove2FA", Description: "PixelCove2FA (Ultimate Gamer) is a Private Torrent Tracker for GAMES. Cookie Login for 2FA use.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Other"}, URLs: []string{"https://www.pixelcove.me/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "time"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must login regularly to maintain an active account. For User and Member, you must login once every 4 months. For Power User, Master and Elite you must login once per year. If you fail to do this your account will be disabled."}, + }}, + {ID: "playletpt", Name: "PlayletPT", Description: "PlayletPT is a CHINESE Private Torrent Tracker for Short Drama", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://playlet.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
"}, + }}, + {ID: "podzemlje", Name: "Podzemlje", Description: "Podzemlje is an EX-YU Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://podzemlje.net/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Podzemlje account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "polishtorrent", Name: "Polish Torrent (API)", Description: "Polish Torrent (PTT) is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://polishtorrent.top/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Polish Torrent account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTI by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTI by this language", Default: "POLISH"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: ""}, + }}, + {ID: "polishtracker-api", Name: "PolishTracker (API)", Description: "PolishTracker is a POLISH Private Torrent Tracker for 0DAY / MOVIES / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://pte.nu/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find your API Key by accessing your PolishTracker account Settings page and clicking on the API section."}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "POLISH"}, + }}, + {ID: "pornbay", Name: "Pornbay", Description: "Pornbay is a Private Torrent Tracker for 3X", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://pornbay.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_grid", Type: "info", Label: "GRID view", Default: "This indexer does not support the GRID view on the torrent search page. Change the Grid View setting to OFF on your User Settings. If set to ON will cause no results to be returned."}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page setting to 100 on your User Settings. The default is 25."}, + }}, + {ID: "portugas-api", Name: "Portugas (API)", Description: "Portugas is a PORTUGUESE Private Torrent Tracker for 0DAY / GENERAL", Language: "pt-PT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://portugas.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Portugas account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "All users must log into their account at least once every 60 days, otherwise the account will be deactivated."}, + }}, + {ID: "proaudiotorrents", Name: "ProAudioTorrents", Description: "ProAudioTorrents (PAT) is a Private Torrent Tracker for AUDIO SOFTWARE / SAMPLES / TUTORIALS / ETC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Other", "TV"}, URLs: []string{"https://proaudiotorrents.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "down"}, + {Name: "info_activity", Type: "info", Label: "How long does my account stay if it is inactive?", Default: "12 weeks exactly. You will need to log in before that amount of time has elapsed to keep your account active."}, + }}, + {ID: "ptgtk", Name: "PT GTK", Description: "PT GTK is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://pt.gtkpw.xyz/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, - {Name: "passkey", Type: "password", Label: "Passkey", HelpText: "Found in your profile settings.", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the PT GTK Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted
  2. Elite User or above would never be deleted if parked (at User CP)
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row
  4. Un-parked accounts would be deleted if users have not logged in for more than 150 days in a row
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, }}, - {ID: "drunkenslug", Name: "DrunkenSlug", Description: "DrunkenSlug is a semi-private usenet indexer with a generous free tier and broad category coverage.", Language: "en-US", Protocol: "usenet", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books", "XXX"}, URLs: []string{"https://drunkenslug.com"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true, Placeholder: "Your API key from profile"}, + {ID: "ptcafe", Name: "PTCafe (咖啡)", Description: "PTCafe (咖啡) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://ptcafe.club/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the PTCafe Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Retention rules:
  1. [Veteran User] and above will be retained forever.
  2. [Elite User] and above will not be deleted after their accounts are blocked.
  3. Users with a parked account will be banned if they do not log in for 365 consecutive days.
  4. Users with a non-parked account will be banned if they do not log in for 180 consecutive days.
  5. Newly registered accounts will be banned by the system if they have no traffic within 14 days.
"}, }}, - {ID: "scenetime", Name: "SceneTime", Description: "SceneTime is a semi-private tracker for movies, TV, music, and games with an active community.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://www.scenetime.com"}, Settings: []Field{ + {ID: "ptcc", Name: "PTCC (我的PT)", Description: "PTCC (我的PT) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://cc.mypt.cc/"}, Settings: []Field{ {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users with no traffic (i.e. upload/download data is 0) will be deleted if they have not logged in for more than 100 consecutive days.
"}, }}, - {ID: "torrentday", Name: "TorrentDay", Description: "TorrentDay is a semi-private tracker with a massive catalog and active community.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://www.torrentday.com"}, Settings: []Field{ + {ID: "pterclub", Name: "PTerClub (PT之友俱乐部)", Description: "PTerClub (PT之友俱乐部) is a CHINESE Private Torrent Tracker for HD MUSIC VIDEOS / MOVIES / TV / ANIME", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://pterclub.net/"}, Settings: []Field{ {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. All accounts will be permanently protected and will not be deleted; however, due to site security, some users will be temporarily banned due to activity rules
  2. New users with no traffic changes will be disabled after 7 days of registration (not the actual download volume)
  3. Those who download free torrents without generating any upload volume, or simply auxiliary torrents that generate magic power without any uploads will still be banned
  4. Users with a non-parked account will be disabled if they do not log in for 60 consecutive days
  5. Users with a parked account will be disabled if they do not log in for 180 consecutive days
  6. Angora/Veteran User and above will not be disabled after parking
  7. Sichuan Jianzhou Cat/Nexus Master users and above will be retained forever.
"}, }}, - {ID: "speedcd", Name: "Speed.cd", Description: "Speed.cd is a semi-private tracker known for fast speeds and well-organized releases.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://speed.cd"}, Settings: []Field{ + {ID: "ptfans", Name: "PTFans", Description: "PTFans is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://ptfans.cc/"}, Settings: []Field{ {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "ptfiles", Name: "PTFiles", Description: "PTFiles (PTF) is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://ptfiles.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must login to the site at least every 119 days. If you get to the 120th day without logging in, your account will be Deleted/Pruned automatically by the system."}, }}, - {ID: "aither", Name: "Aither", Description: "Aither is a semi-private UNIT3D tracker focused on movies and TV shows.", Language: "en-US", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://aither.cc"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true, Placeholder: "From your profile → Security"}, + {ID: "pthome", Name: "PThome", Description: "PTHome is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.pthome.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, }}, - - // ── Private Torrent ────────────────────────────────────────────────── - {ID: "passthepopcorn", Name: "PassThePopcorn", Description: "PassThePopcorn (PTP) is an elite private tracker widely regarded as the best source for movie torrents.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies"}, URLs: []string{"https://passthepopcorn.me"}, Settings: []Field{ + {ID: "ptlao", Name: "PTLAO", Description: "PTLAO is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://ptlao.top/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite Users and above will not be deleted after parking (in the control panel)
  3. Users with a parked account will be banned if they do not log in for 300 consecutive days
  4. Users who do not log in for 150 consecutive days will be banned
  5. Newly registered users with no traffic within 30 days, will be banned.
"}, + }}, + {ID: "ptlgs", Name: "PTLGS", Description: "PTLGS is a CHINESE Private Torrent Tracker for MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://ptlgs.org/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, - {Name: "passkey", Type: "password", Label: "Passkey", HelpText: "Found under Security in your profile.", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the PTLGS Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. All users' accounts will be retained forever, and data will be retained forever
  2. Newly registered accounts without traffic (i.e., upload/download data are 0) will be automatically frozen by the system if they do not log in for 7 consecutive days
  3. Accounts that have been inactive for more than 30 days will be automatically banned by the system
  4. determination method: When there is an unread announcement, it is necessary to manually confirm that the announcement has been read to be considered active; When there are no unread announcements, you need to visit the homepage to be active.
"}, + }}, + {ID: "ptsbao", Name: "PTSBAO (烧包)", Description: "PTSBAO (烧包) is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://ptsbao.club/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "ptskit", Name: "PTSKIT", Description: "PTSKIT is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.ptskit.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, }}, - {ID: "broadcasthenet", Name: "BroadcasTheNet", Description: "BroadcasTheNet (BTN) is an elite private tracker for TV series with a comprehensive library.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://broadcasthe.net"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "pttey", Name: "PTTey", Description: "PTTey is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.tey.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted.
  2. Elite User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, }}, - {ID: "hdbits", Name: "HDBits", Description: "HDBits is an elite private tracker focused on high-quality HD and UHD movie and TV encodes.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://hdbits.org"}, Settings: []Field{ + {ID: "pttime", Name: "PTTime", Description: "PTTime is a ratioless CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.pttime.org/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, - {Name: "passkey", Type: "password", Label: "Passkey", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel).
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, }}, - {ID: "beyondhd", Name: "BeyondHD", Description: "BeyondHD (BHD) is a private tracker specializing in high-quality movie and TV encodes with a focus on remuxes.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://beyond-hd.me"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true, Placeholder: "From Security settings in profile"}, + {ID: "ptying", Name: "PTYING (樱花)", Description: "PTYING (樱花) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.ying.us.kg/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the PTYING Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
"}, }}, - {ID: "blutopia", Name: "Blutopia", Description: "Blutopia (BLU) is a private UNIT3D tracker for HD/UHD movies and TV shows.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://blutopia.cc"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "ptzone", Name: "PTzone", Description: "PTzone is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://ptzone.xyz/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, }}, - {ID: "anthelion", Name: "Anthelion", Description: "Anthelion is a private Gazelle-based movie tracker with a growing library.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies"}, URLs: []string{"https://anthelion.me"}, Settings: []Field{ + {ID: "ptitzmx", Name: "PT分享站 (itzmx)", Description: "PT分享站 (itzmx) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://pt.itzmx.com/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User and above users will be retained forever
  2. Elite User and above users will not be deleted after parking their accounts (in the control panel)
  3. Users with parked accounts will have their accounts deleted if they do not log in for 300 consecutive days
  4. Users with un-parked accounts will have their accounts deleted if they do not log in for 90 consecutive days
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 7 days in a row.
"}, }}, - {ID: "torrentseeds", Name: "TorrentSeeds", Description: "TorrentSeeds is a private tracker with a wide variety of content including movies, TV, and games.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://torrentseeds.org"}, Settings: []Field{ + {ID: "punkshorror", Name: "Punk's Horror Tracker", Description: "Punk's Horror Tracker is a HUNGARIAN Private Tracker for Horror MOVIES / TV", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://punck-tracker.net/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search FreeLeech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentek száma egy oldalon setting to 100 on your account profile."}, }}, - {ID: "orpheus", Name: "Orpheus", Description: "Orpheus is a private music tracker (Gazelle-based) for FLAC, MP3, and other audio formats.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio"}, URLs: []string{"https://orpheus.network"}, Settings: []Field{ + {ID: "puntotorrent", Name: "PuntoTorrent", Description: "PuntoTorrent is a SPANISH Private Torrent Tracker for 0DAY / GENERAL", Language: "es-ES", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://xbt.puntotorrent.com/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, }}, - {ID: "redacted", Name: "Redacted", Description: "Redacted (RED) is an elite private music tracker — the successor to What.CD.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio"}, URLs: []string{"https://redacted.sh"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true, Placeholder: "Generate under Settings → Access"}, + {ID: "putao", Name: "PuTao (葡萄)", Description: "PuTao (葡萄) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.sjtu.edu.cn/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the 每页种子数:每页显示(Torrents per page:) setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 240 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 120 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 30 consecutive days.
"}, }}, - {ID: "myanonamouse", Name: "MyAnonamouse", Description: "MyAnonamouse (MAM) is a private tracker for ebooks, audiobooks, and educational materials.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Audio"}, URLs: []string{"https://www.myanonamouse.net"}, Settings: []Field{ - {Name: "mam_id", Type: "text", Label: "MAM ID", HelpText: "Your session cookie value from mam_id cookie.", Required: true}, + {ID: "pwtorrents", Name: "PWTorrents", Description: "PWTorrents (PWT) is a Private Torrent Tracker for PROFESSIONAL WRESTLING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://pwtorrents.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "seedbox", Type: "checkbox", Label: "Use SeedBox Download Link", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, }}, - {ID: "bibliotik", Name: "Bibliotik", Description: "Bibliotik is an elite private tracker for ebooks, audiobooks, and comics.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Books"}, URLs: []string{"https://bibliotik.me"}, Settings: []Field{ + {ID: "qingwa", Name: "Qingwa (青蛙)", Description: "Qingwa (青蛙) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://www.qingwapt.com/"}, Settings: []Field{ {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 60 on your account profile.
Choosing more may cause the web site to fail to deliver complete results."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted.
  2. Elite User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "r3vwtf", Name: "R3V WTF!", Description: "R3V WTF! is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://r3vuk.wtf/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts inactive for more than 42 days are automatically deleted."}, + }}, + {ID: "racing4everyone-api", Name: "Racing4Everyone (API)", Description: "Racing4Everyone (R4E) is a Private Torrent Tracker for RACING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://racing4everyone.eu/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Racing4Everyone account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "After 6 months without any log in or usage of your account, it will be pruned and can only be reactivated by a staff member. Make sure to keep your account active and do not use programs to keep your account active, as your account may still get pruned."}, }}, - {ID: "gazellegames", Name: "GazelleGames", Description: "GazelleGames (GGn) is a private tracker for PC, console, and retro video games.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://gazellegames.net"}, Settings: []Field{ + {ID: "racingforme", Name: "RacingForMe", Description: "Racing For Me (RFM) is a Private Torrent Tracker for RACING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://www.racingfor.me/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date_desc"}, }}, - {ID: "empornium", Name: "Empornium", Description: "Empornium is the largest private XXX tracker with an extensive library of adult content.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://www.empornium.is"}, Settings: []Field{ + {ID: "railgunpt", Name: "RailgunPT", Description: "RailgunPT is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://bilibili.download/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the RailgunPT Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Users Level 5 and above will be retained forever
  2. Users of Level 4 and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 300 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 120 consecutive days
  5. Users with no traffic (i.e. upload/download data is 0) within 30 days after registration will have their accounts deleted.
"}, + }}, + {ID: "rain", Name: "Rain (雨)", Description: "Rain (雨) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://raingfh.top/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 4000 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 3650 consecutive days
"}, }}, - {ID: "pornbay", Name: "PornBay", Description: "PornBay is a private tracker for adult content with a large and well-organized catalog.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"XXX"}, URLs: []string{"https://pornbay.org"}, Settings: []Field{ + {ID: "rastastugan-api", Name: "Rastastugan (API)", Description: "Rastastugan is a NORDIC Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://rastastugan.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Rastastugan account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in to the website or the tracker must register activity from your Announce URL once every 90 days or your account will be disabled."}, + }}, + {ID: "redstartorrent", Name: "Red Star Torrent", Description: "Red Star Torrent (RST) is a POLISH Private Torrent Tracker for MOVIES / TV", Language: "pl-PL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"http://rstorrent.org.pl/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, }}, - {ID: "animebytes", Name: "AnimeBytes", Description: "AnimeBytes (AB) is an elite private tracker for anime, manga, light novels, and Asian music.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV", "Audio", "Books"}, URLs: []string{"https://animebytes.tv"}, Settings: []Field{ + {ID: "reelflix-api", Name: "ReelFLiX (API)", Description: "ReelFLiX (HD4Free, LegacyHD) is a Private Torrent Tracker for HD MOVIES", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies"}, URLs: []string{"https://reelflix.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your ReelFlix account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To avoid your account being disabled, you must login at least once every 90 days OR have a .torrent actively announcing to the tracker. Please be aware! If you are using any form of automation and it has been 90+ days since your last login, and your client stops seeding, your account will be immediately disabled at midnight UTC if you don't login or resume seeding. There is no 90-day grace period if seeding stops; only logging into the site counts. It is always a good idea to periodically login to check the status of your account. After being disabled for inactivity you must make an attempt to recover your account within 90 days (180 days total) or it will be pruned from our system automatically. Pruned accounts CANNOT be enabled and you will have to reapply or find a new invite"}, + }}, + {ID: "retromoviesclub-api", Name: "RetroMoviesClub (API)", Description: "RetroMoviesClub (RMC) is a Private Torrent Tracker for Classic Movies", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies"}, URLs: []string{"https://retro-movies.club/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your RetroMoviesClub account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts that are inactive for extended periods may be shelved or pruned."}, + }}, + {ID: "rockethd", Name: "RocketHD (API)", Description: "RocketHD is a GERMAN Private Torrent Tracker for MOVIES / TV", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://rocket-hd.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your RocketHD account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "tmdbidonly", Type: "checkbox", Label: "Disable IMDB and TVDB ID search (only support TMDB ID) to potentially improve Sonarr and Radarr results", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If it has been 60 days since your last login, your account will be inactive. After another 30 days without logging in, your account will be Disabled!"}, + }}, + {ID: "romanianmetaltorrents", Name: "Romanian Metal Torrents", Description: "Romanian Metal Torrents (RMT) is a Private Torrent Tracker dedicated to METAL MUSIC. This definition is for the English site.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio"}, URLs: []string{"https://metal.iplay.ro/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, - {Name: "passkey", Type: "password", Label: "Passkey", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "_"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "In order to keep your account here we advise you to access this site as often as possible. If you don't access it for 60 days, your account will be deleted. Please note that torrent traffic is not considered site activity - you have to sign in !"}, + }}, + {ID: "rotorrent-api", Name: "RoTorrent (API)", Description: "RoTorrent (ROT) is a ROMANIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "ro-RO", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://rotorrent.info/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your RoTorrent account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "rousi-pro", Name: "Rousi.pro", Description: "Rousi.pro is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://rousi.pro/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API key", Required: true}, + {Name: "info_apikey", Type: "info", Label: "About your API key", Default: "
  1. Login to this tracker with your browser
  2. Open the DevTools panel by pressing F12
  3. Select the Network tab
  4. Click on the Fetch/XHR button (Chrome Browser) or XHR button (FireFox)
  5. Perform any search on the web site
  6. Click on the first search?query= entry
  7. Select the Headers tab on the Right panel
  8. Find 'cookie:' in the Request Headers section
  9. Select and Copy the API key from the Authorization string (everything after 'Authorization: Bearer ') and Paste here.
"}, + {Name: "passkey", Type: "text", Label: "Passkey", Required: true}, + {Name: "info_passkey", Type: "info", Label: "About your Passkey", Default: "You can find the Passkey on your Passkey settings page."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules (Inactive Accounts):
  1. Not logged in for more than 30 days: Send email reminders
  2. Not logged in for more than 60 days: 5000 Mana points are deducted daily
  3. After the mana value is deducted to 0: the account is banned
  4. If the user expects to be unable to log in for a period of time, they can pay in advance 150,000 mana to protect account for 60 days
"}, }}, - {ID: "cinemaz", Name: "CinemaZ", Description: "CinemaZ is a private tracker for rare and obscure films, foreign cinema, and documentaries.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies"}, URLs: []string{"https://cinemaz.to"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "samaritano", Name: "SAMARITANO (API)", Description: "SAMARITANO is a BRAZILIAN Private tracker for MOVIES / TV / GENERAL", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://samaritano.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your SAMARITANO account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Your account will be considered inactive if you have not logged in to the site for more than 90 days. After 30 days of inactivity (i.e. 30 days without logging in), your account will be removed from the tracker. Please note: The groups that suffer from inactivity are: User and Leech."}, }}, - {ID: "avistaz", Name: "AvistaZ", Description: "AvistaZ is a private tracker for Asian movies, TV shows, and music.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://avistaz.to"}, Settings: []Field{ + {ID: "sbpt", Name: "SBPT", Description: "SBPT is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://sbpt.link/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, - {Name: "pid", Type: "text", Label: "PID", HelpText: "Your passkey from profile.", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the SBPT Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User or above will be retained forever
  2. Elite User or abovee will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 365 consecutive days
  5. Users with no traffic (i.e. upload/download data is 0) will be deleted if they do not log in for 60 consecutive days.
"}, }}, - {ID: "privatehd", Name: "PrivateHD", Description: "PrivateHD is a private tracker for HD/UHD movies and TV shows, sister site to AvistaZ.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://privatehd.to"}, Settings: []Field{ + {ID: "scenerush", Name: "SceneRush", Description: "SceneRush is a PORTUGUESE Private Torrent Tracker for 0DAY / GENERAL", Language: "pt-PT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.scene-rush.pt/", "https://www.scene-rush.com/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, - {Name: "pid", Type: "text", Label: "PID", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, }}, - {ID: "nebulance", Name: "Nebulance", Description: "Nebulance (NBL) is a private tracker focused exclusively on TV series.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://nebulance.io"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "scenetime-api", Name: "SceneTime (API)", Description: "SceneTime is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.scenetime.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API Key", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "You can find your API Key by accessing the SceneTime RSS page, scrolling down to the Torznab API section, and copying the API Key."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unused accounts (accounts with no activity) and inactive unparked accounts may be deleted."}, }}, - {ID: "alpharatio", Name: "AlphaRatio", Description: "AlphaRatio (AR) is a private tracker with a good mix of movies, TV, games, and software.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV", "Other"}, URLs: []string{"https://alpharatio.cc"}, Settings: []Field{ + {ID: "seedfile", Name: "SeedFile", Description: "SeedFile (SF) is a ROMANIAN Private Torrent Tracker for 0DAY / GENERAL", Language: "ro-RO", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://seedfile.io/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Typically, (unparked) accounts are deleted after one year from last access. With account parking, the maximum period of inactivity is 2 years, after which the account will be deleted."}, }}, - {ID: "ncore", Name: "nCore", Description: "nCore is the largest Hungarian private tracker with a huge catalog and active community.", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV", "Audio", "Books", "Other"}, URLs: []string{"https://ncore.pro"}, Settings: []Field{ + {ID: "seedpool-api", Name: "seedpool (API)", Description: "seedpool is a Private Torrent Tracker for 0-DAY MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://seedpool.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your seedpool account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "tmdbidonly", Type: "checkbox", Label: "Disable IMDB and TVDB ID search (only support TMDB ID) to potentially improve Sonarr and Radarr results", Default: "true"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "sewerpt", Name: "SewerPT", Description: "SewerPT (下水道) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://sewerpt.com/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, - {Name: "twofa", Type: "text", Label: "2FA Code", HelpText: "Only if two-factor auth is enabled.", Required: false}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the SewerPT Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Ultimate User and above will be retained forever
  2. Veteran Users and above will not be deleted after parking (in the control panel)
  3. Users with a parked account will be banned if they do not log in for 400 consecutive days
  4. Users who do not log in for 30 consecutive days will be banned
  5. Newly registered users with no traffic within 7 days, will be banned.
"}, }}, - {ID: "morethantv", Name: "MoreThanTV", Description: "MoreThanTV (MTV) is a private Gazelle-based tracker for TV shows and movies.", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://www.morethantv.me"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "sextorrent-api", Name: "SexTorrent (API)", Description: "SexTorrent is a Private Torrent Tracker for 3X", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "TV", "XXX"}, URLs: []string{"https://sextorrent.myds.me/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your SexTorrent account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive Account mean No trafic Up/Down, these will be wiped very fast."}, }}, - - // ── Usenet Indexers ────────────────────────────────────────────────── - {ID: "nzbgeek", Name: "NZBgeek", Description: "NZBgeek is a popular Newznab-based usenet indexer with a large catalog and active community.", Language: "en-US", Protocol: "usenet", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books", "XXX"}, URLs: []string{"https://nzbgeek.info"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true, Placeholder: "Your NZBgeek API key"}, + {ID: "shakaw", Name: "ShaKaw", Description: "ShaKaw is a BRAZILIAN Private Torrent Tracker for ANIME", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Movies", "TV"}, URLs: []string{"https://tracker.shakaw.com.br/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, }}, - {ID: "nzbfinder", Name: "NZBFinder", Description: "NZBFinder is a Newznab-based usenet indexer with both free and VIP tiers.", Language: "en-US", Protocol: "usenet", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books", "XXX"}, URLs: []string{"https://nzbfinder.ws"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "shareisland-api", Name: "Shareisland (API)", Description: "Shareisland is a ITALIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "it-IT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://shareisland.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Shareisland account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "After 60 days of no activity, your account will be automatically deleted."}, }}, - {ID: "nzbplanet", Name: "NZBPlanet", Description: "NZBPlanet is a usenet indexer with solid coverage of movies, TV, and music.", Language: "en-US", Protocol: "usenet", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://nzbplanet.net"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "siambit", Name: "SiamBIT", Description: "SiamBIT is a THAI PAY2DL Private Torrent Tracker for GENERAL", Language: "th-TH", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://bearbit.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "15"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Found no results while trying to browse this tracker then the most likely reason is that you have Important news from the team on the Web Site that must be read before you can proceed to the torrent search page."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts can use the park system for up to 180 days."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, }}, - {ID: "abnzb", Name: "abNZB", Description: "abNZB is a Newznab-based usenet indexer with a focus on completeness and retention.", Language: "en-US", Protocol: "usenet", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books"}, URLs: []string{"https://abnzb.com"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "siqi", Name: "Siqi", Description: "Siqi is a CHINESE Private Tracker for HD image BOOKS and E-BOOKS", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Other"}, URLs: []string{"https://si-qi.xyz/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, }}, - {ID: "nzbsu", Name: "NZB.su", Description: "NZB.su is one of the first Newznab-based usenet indexers with a long history.", Language: "en-US", Protocol: "usenet", Privacy: "private", Categories: []string{"Movies", "TV", "Audio", "Books"}, URLs: []string{"https://nzb.su"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "skipthecommercials-api", Name: "SkipTheCommercials (API)", Description: "SkipTheCommercials (STC) is a Private Torrent Tracker for TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://skipthecommercials.xyz/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your SkipTheCommercials account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must be seeding at least 1 torrent or login once every 90 days to not get pruned. Once pruned, you will get additional 30 days to reactivate your account by logging in."}, }}, - {ID: "nzbcat", Name: "NZBCat", Description: "NZBCat is a Newznab-based usenet indexer with good coverage and an active community.", Language: "en-US", Protocol: "usenet", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://nzb.cat"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "slobitmedia-api", Name: "Slobit Media (API)", Description: "Slobit Media is a SLOVENIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://media.slo-bitcloud.eu/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Slobit Media account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, }}, - {ID: "dog", Name: "DOGnzb", Description: "DOGnzb is a premium usenet indexer known for quality and reliability.", Language: "en-US", Protocol: "usenet", Privacy: "private", Categories: []string{"Movies", "TV", "Audio", "Books"}, URLs: []string{"https://dognzb.cr"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "snowpt", Name: "SnowPT", Description: "SnowPT (SSPT) is a CHINESE Private Torrent Tracker for ANIME", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://skyeysnow.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, }}, - {ID: "oznzb", Name: "OZnzb", Description: "OZnzb is an Australian usenet indexer with a focus on local and international content.", Language: "en-AU", Protocol: "usenet", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://oznzb.com"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "soulvoice", Name: "SoulVoice (聆音Club)", Description: "SoulVoice (聆音Club) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.soulvoice.club/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the SoulVoice Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran Users users and above will be retained forever
  2. Elite Users and above will not have their account deleted after parking (in the Control Panel)
  3. Users with a parked account will be deleted if they do not log in for 180 consecutive days
  4. Users with a non-parked account will be banned if they do not log in for 60 consecutive days
  5. Users with no traffic (ie, upload/download data are both 0) will be banned if they do not log in for 7 consecutive days.
"}, }}, - {ID: "tabula-rasa", Name: "Tabula Rasa", Description: "Tabula Rasa is a Newznab-based usenet indexer with a clean interface and good automation support.", Language: "en-US", Protocol: "usenet", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books"}, URLs: []string{"https://www.tabula-rasa.pw"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "speedmasterhd", Name: "Speedmaster HD", Description: "Speedmaster HD is a GERMAN Time based Torrent Tracker for MOVIES / TV", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://speedmaster-hd.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, }}, - {ID: "althub", Name: "altHUB", Description: "altHUB is a usenet indexer with a focus on alt binaries and a Newznab API.", Language: "en-US", Protocol: "usenet", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://althub.co.za"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "spiritofrevolution", Name: "Spirit of Revolution", Description: "Spirit of Revolution is a GERMAN Time based Torrent Tracker for 0DAY", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://sor-next.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, }}, - - // ── Generic / Custom ───────────────────────────────────────────────── - {ID: "generic-torznab", Name: "Generic Torznab", Description: "Connect to any Torznab-compatible indexer (Jackett, Prowlarr proxy, custom). Provide the full API URL and key.", Language: "en-US", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Books", "XXX", "Other"}, URLs: []string{}, Settings: []Field{ - {Name: "url", Type: "text", Label: "Torznab URL", Required: true, Placeholder: "http://jackett:9117/api/v2.0/indexers/all/results/torznab"}, - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, - {Name: "categories", Type: "text", Label: "Categories", HelpText: "Comma-separated Newznab category IDs (e.g., 2000,5000).", Required: false, Placeholder: "2000,5000"}, + {ID: "sportscult", Name: "SportsCult", Description: "SportsCult is a Private Torrent Tracker for SPORTS", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://sportscult.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, }}, - {ID: "generic-newznab", Name: "Generic Newznab", Description: "Connect to any Newznab-compatible usenet indexer. Provide the full API URL and key.", Language: "en-US", Protocol: "usenet", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Books", "XXX", "Other"}, URLs: []string{}, Settings: []Field{ - {Name: "url", Type: "text", Label: "Newznab URL", Required: true, Placeholder: "https://indexer.example.com/api"}, - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, - {Name: "categories", Type: "text", Label: "Categories", HelpText: "Comma-separated Newznab category IDs.", Required: false, Placeholder: "2000,5000"}, + {ID: "springsunday", Name: "SpringSunday", Description: "SpringSunday (SSD) is a CHINESE Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://springsunday.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, }}, - - // ── Non-English / Regional ─────────────────────────────────────────── - {ID: "t411", Name: "T411", Description: "T411 is a large French-language general torrent tracker with strong scene coverage.", Language: "fr-FR", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books", "Other"}, URLs: []string{"https://t411.li"}, Settings: []Field{ + {ID: "sunnypt", Name: "SunnyPT", Description: "SunnyPT is a CHINESE Private Torrent Tracker for MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://sunnypt.top/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the SBPT Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User or above will be retained forever
  2. Elite User or abovee will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users with no traffic (i.e. upload/download data is 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "superbits", Name: "Superbits", Description: "SuperBits (SBS) is a SWEDISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "sv-SE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://superbits.org/", "https://superbits.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "p2p_releases_only", Type: "checkbox", Label: "Search P2P releases only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "d"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If you have not logged in, via web browser, for 3 months, the account will be suspended. You can park your account in Settings which means that it will not be deleted for inactivity for at least 1 year."}, + }}, + {ID: "tangmen", Name: "Tangmen (唐门)", Description: "Tangmen (唐门) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://tmpt.top/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "tangpt", Name: "TangPT (躺平)", Description: "TangPT (躺平) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://www.tangpt.top/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted
  2. Elite User or above would never be deleted if parked (at User CP)
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row
  4. Un-parked accounts would be deleted if users have not logged in for more than 150 days in a row
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "tapochek", Name: "Tapochek", Description: "Tapochek is a RUSSIAN Private Torrent Tracker for 0DAY / GENERAL", Language: "ru-RU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://tapochek.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_ymd", Type: "info", Label: "About the date", Default: "Before using this indexer please check on the Tapochek website that your account profile Y-m-d setting is Y-m-d H:i. If it is anything else then this indexer will generate a parse error and not return results."}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "tasmanit", Name: "Tasmanit", Description: "Tasmanit.es is a AUSTRALIAN / NEW ZEALAND Private Torrent Tracker for AUS/NZ TV", Language: "en-AU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://tasmanit.es/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To keep records updated reguarly, all inactive accounts will be deleted after 60 days of inactivity."}, + }}, + {ID: "teamctgame", Name: "Team CT Game", Description: "Team CT Game (TCTG) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://tctg.pm/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Any account with an Uploaded and Downloaded amount of 0 will be deleted if users have not logged in for more than 30 days
  2. Any account inactive for 60 days is automatically deleted
  3. Any account On Vacation and inactive for 180 days is automatically deleted.
"}, + }}, + {ID: "teamflix", Name: "TeamFlix", Description: "TeamFlix is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://tracker.teamflix.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your TeamFlix account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "vfq", Type: "checkbox", Label: "Replace VFQ with FRENCH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactivity of an account for a period of 60 consecutive days will automatically deactivate your account."}, + }}, + {ID: "teamhd", Name: "TeamHD", Description: "TeamHD is a RUSSIAN Private Torrent Tracker for HD MOVIES / TV", Language: "ru-RU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://teamhd.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive users are regularly deleted. If you haven’t downloaded or distributed anything, or haven’t visited the site for 90 days, then you are a random guest on our resource. The tracker needs active users who know exactly why they came here. That’s why we regularly conduct automatic inactivity sweeps. If you need to be away from the tracker for a long time (business trip, personal circumstances, etc.), use 'parking' your account."}, + }}, + {ID: "teamos", Name: "TeamOS", Description: "Team OS is a Private Torrent Tracker for SOFTWARE", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Other"}, URLs: []string{"https://www.teamos.xyz/"}, Settings: []Field{ + {Name: "info_novpn", Type: "info", Label: "VPN Not Allowed", Default: "You may be banned if you use a VPN, proxy, TOR or data center to access the TeamOS web site.\u200b This mean all brands of VPNS, no exceptions!!"}, + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Found no results while trying to browse this tracker then first access the site with your browser and read any mandatory notices that the site presents. You cannot browse torrents with unread notices outstanding."}, + }}, + {ID: "tekno3d", Name: "TEKNO3D", Description: "TEKNO3D is a Private Torrent Tracker for UHD MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://tracker.tekno3d.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "onlyfree", Type: "checkbox", Label: "Show only Free torrents", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info", Type: "info", Label: "Results Per Page", Default: "For best results, change the 'Torrents per page' setting to 100 on your profile."}, + }}, + {ID: "thebrothers", Name: "The Brothers", Description: "The Brothers is a Private GERMAN tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://the-brothers.bounceme.net/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "pin", Type: "text", Label: "Pin"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Anzahl der Torrents beim Durchsuchen Torrents per page: setting to 60 on your account profile. The default is 15."}, + }}, + {ID: "thecrazyones", Name: "The Crazy Ones", Description: "The Crazy Ones is a Private GERMAN Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://thecrazyones.hopto.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "pin", Type: "text", Label: "Pin"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Anzahl der Torrents beim Durchsuchen Torrents per page: setting to 60 on your account profile. The default is 15."}, + }}, + {ID: "theempire", Name: "The Empire", Description: "TheEmpire (TE) is a Private Torrent Tracker for COMMONWEALTH TV / RADIO", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://theempire.click/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_tcg", Type: "info", Label: "Message from the TCG staff", Default: "We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unparked accounts that haven't visited (read: browsed) the site for 38 days (and are over 28 days old) are pruned. Parked accounts are pruned when 112 days have elapsed since the last recorded activity (read: browsed). Seeding activity does NOT count, you must BROWSE the site. Donators with a star (and ONLY donators with a star) are immune to auto-pruning. Power Users and above are also immune. We regularly clean out accounts with very low share ratios that are subject to the Ratio Watch system."}, + }}, + {ID: "thefallingangels", Name: "The Falling Angels", Description: "The Falling Angels (TFA) is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://tfa.tf/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "pin", Type: "text", Label: "Pin"}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts will be permanently deleted from the database after 125 days! Seeding torrents does not count as activity - the only thing that counts is logging in again! You can extend this period to 250 days by setting your account to Parked. You can do this under Edit Profile."}, + }}, + {ID: "thegeeks", Name: "The Geeks", Description: "The Geeks is a Private Torrent Tracker for Technology E-LEARNING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://thegeeks.click/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_tcg", Type: "info", Label: "Message from TCG staff", Default: "We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unparked accounts that haven't visited (read: browsed) the site for 38 days (and are over 28 days old) are pruned. Parked accounts are pruned when 112 days have elapsed since the last recorded activity (read: browsed). Seeding activity does NOT count, you must BROWSE the site. Donators with a star (and ONLY donators with a star) are immune to auto-pruning. Power Users and above are also immune. We regularly clean out accounts with very low share ratios that are subject to the Ratio Watch system."}, + }}, + {ID: "thekitchen", Name: "The Kitchen", Description: "TheKitchen (TK) is a Private Torrent Tracker for COOKING / CUISINES / RECIPES", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other", "TV"}, URLs: []string{"https://thekitchen.click/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_tcg", Type: "info", Label: "Message from the TCG staff", Default: "We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unparked accounts that haven't visited (read: browsed) the site for 38 days (and are over 28 days old) are pruned. Parked accounts are pruned when 112 days have elapsed since the last recorded activity (read: browsed). Seeding activity does NOT count, you must BROWSE the site. Donators with a star (and ONLY donators with a star) are immune to auto-pruning. Power Users and above are also immune. We regularly clean out accounts with very low share ratios that are subject to the Ratio Watch system."}, + }}, + {ID: "newretro", Name: "The New Retro", Description: "The New Retro is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://new-retro.eu/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "pin", Type: "text", Label: "Pin"}, + {Name: "onlyupload", Type: "checkbox", Label: "Filter OnlyUpload only", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at The New Retro", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents pro Seite: setting to 100 on your UserCP page. The default is 15."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts are automatically deleted after 42 days."}, + {Name: "info_seedhours", Type: "info", Label: "Seeding Hours", Default: "Before using this indexer, make sure that you have set Meine Seedzeit on your UserCP page."}, + }}, + {ID: "theoccult", Name: "The Occult", Description: "TheOccult (TO) is a Private Torrent Tracker for CULT / MYTHOLOGY E-LEARNING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://theoccult.click/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_tcg", Type: "info", Label: "Message from the TCG staff", Default: "We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unparked accounts that haven't visited (read: browsed) the site for 38 days (and are over 28 days old) are pruned. Parked accounts are pruned when 112 days have elapsed since the last recorded activity (read: browsed). Seeding activity does NOT count, you must BROWSE the site. Donators with a star (and ONLY donators with a star) are immune to auto-pruning. Power Users and above are also immune. We regularly clean out accounts with very low share ratios that are subject to the Ratio Watch system."}, + }}, + {ID: "theoldschool-api", Name: "The Old School (API)", Description: "The Old School (TOS) is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Movies", "Other", "TV"}, URLs: []string{"https://theoldschool.cc/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your The Old School account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "tmdbidonly", Type: "checkbox", Label: "Disable IMDB and TVDB ID search (only support TMDB ID) to potentially improve Sonarr and Radarr results", Default: "false"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "vfq", Type: "checkbox", Label: "Replace VFQ with FRENCH", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "'Pruning' account"}, + }}, + {ID: "theparadiese", Name: "The Paradiese", Description: "The Paradiese is a GERMAN Private tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://theparadiese.hopto.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "pin", Type: "text", Label: "Pin"}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at The Paradiese", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents pro Seite: setting to 60 on your Control Panel. The default is 15."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts are automatically deleted after 42 days."}, + }}, + {ID: "theplace", Name: "The Place", Description: "ThePlace (TP) is a Private Torrent Tracker for SEDUCTION / SELF-IMPROVEMENT E-LEARNING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://theplace.click/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_tcg", Type: "info", Label: "Message from the TCG staff", Default: "We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unparked accounts that haven't visited (read: browsed) the site for 38 days (and are over 28 days old) are pruned. Parked accounts are pruned when 112 days have elapsed since the last recorded activity (read: browsed). Seeding activity does NOT count, you must BROWSE the site. Donators with a star (and ONLY donators with a star) are immune to auto-pruning. Power Users and above are also immune. We regularly clean out accounts with very low share ratios that are subject to the Ratio Watch system."}, + }}, + {ID: "theshow", Name: "The Show", Description: "TheShow (TSBZ) is a Private Torrent Tracker for ENTERTAINMENT-INDUSTRY E-LEARNING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://theshow.click/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_tcg", Type: "info", Label: "Message from TCG staff", Default: "We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unparked accounts that haven't visited (read: browsed) the site for 38 days (and are over 28 days old) are pruned. Parked accounts are pruned when 112 days have elapsed since the last recorded activity (read: browsed). Seeding activity does NOT count, you must BROWSE the site. Donators with a star (and ONLY donators with a star) are immune to auto-pruning. Power Users and above are also immune. We regularly clean out accounts with very low share ratios that are subject to the Ratio Watch system."}, + }}, + {ID: "thevault", Name: "The Vault", Description: "TheVault (TVBZ) is a Private Torrent Tracker for BUSINESS / MARKETING E-LEARNING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://thevault.click/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_tcg", Type: "info", Label: "Message from the TCG staff", Default: "We wish to encourage all members to participate in the communities we are creating. We have worked with the Jackett maintainers to ensure that the security and longevity of our trackers continues, and as such some torrents are removed from the results in Jackett."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Unparked accounts that haven't visited (read: browsed) the site for 38 days (and are over 28 days old) are pruned. Parked accounts are pruned when 112 days have elapsed since the last recorded activity (read: browsed). Seeding activity does NOT count, you must BROWSE the site. Donators with a star (and ONLY donators with a star) are immune to auto-pruning. Power Users and above are also immune. We regularly clean out accounts with very low share ratios that are subject to the Ratio Watch system."}, + }}, + {ID: "thenewfun", Name: "The-New-Fun", Description: "The-New-Fun is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://the-new-fun.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "onlyupload", Type: "checkbox", Label: "Filter OnlyUpload only", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at T-N-F", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents pro Seite: setting to 100 on your UserCP page. The default is 15."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts are automatically deleted after 42 days and leechers are also kicked."}, + {Name: "info_seedhours", Type: "info", Label: "Seeding Hours", Default: "Before using this indexer, make sure that you have set Meine Seedzeit on your UserCP page."}, + }}, + {ID: "theleachzone-api", Name: "TheLeachZone (API)", Description: "The Leach Zone (TLZ) is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://tlzdigital.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your TLZ account Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "tjupt", Name: "TJUPT (北洋园PT)", Description: "TJUPT (北洋园PT) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://tjupt.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Banning rules for account inactivity:
  1. Within 180 days, an account is considered active if it meets any of the following conditions: has checked in for at least 1 day; has published at least 1 seed, fun box or new forum topic (non-reply); actually uploaded increments > 5TiB and the seeding integral increment is > 30W
  2. Users of Megatron level and above ignore the inactivity rules and will keep their accounts forever
  3. Users with Sword Down the Mountain and above will not be disabled due to inactivity after parking their accounts in the control panel
  4. Un-parked accounts below the level of Megatron will be disabled if they have been 'inactive' for 180 consecutive days (Effective from 2024).
  5. Accounts parked below the level of Down the Mountain with a Sword will be disabled if they are 'inactive' for 300 consecutive days (Effective from 2024).
"}, + }}, + {ID: "tlfbits", Name: "TLFBits", Description: "TLFBits is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.eastgame.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "tmghub", Name: "TmGHuB", Description: "TmGHuB (TH) is an INDIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://tmghub.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile. Default is 30."}, + {Name: "info_grabs", Type: "info", Label: "Search results", Default: "Note that torrents that you have previously downloaded will not be included in results.
You are not allowed to download a torrent twice without informing admin."}, + {Name: "thankyou", Type: "text", Label: "Thank You Comment"}, + {Name: "info", Type: "info", Label: "Thank you comment", Default: "This site requires you to leave a Thank You comment before you can download.
Enter your personalised comment above, at least 8 characters long."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "3"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + }}, + {ID: "tocashare", Name: "Toca Share (API)", Description: "Toca Share is a PORTUGUESE Private Torrent Tracker for EBOOKS / AUDIOBOOKS / COURSES", Language: "pt-PT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Other", "TV", "XXX"}, URLs: []string{"https://tocashare.biz/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Toca Share account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "The inactivation system was created with the purpose of encouraging member participation. This way, after 7 days without accessing the website, 30 BONs will be deducted per day. If your account balance reaches 0 and you don't have any torrents being seeded, it will be automatically deactivated."}, + }}, + {ID: "tokyopt", Name: "TokyoPT", Description: "TokyoPT is a CHINESE Private Torrent Tracker for MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "Other", "TV"}, URLs: []string{"https://www.tokyopt.xyz/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "tormac", Name: "Tormac", Description: "Tormac is a RUSSIAN Private Torrent Tracker for MAC SOFTWARE", Language: "ru-RU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://tormac.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "stripcyrillic", Type: "checkbox", Label: "Strip Cyrillic Letters", Default: "false"}, + {Name: "addrussiantotitle", Type: "checkbox", Label: "Add RUS to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "freeleech_50", Type: "checkbox", Label: "Search freeleech and 50% freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "1"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "2"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts are automatically deleted after 90 days from the moment the system first detects inactivity.
A user is considered inactive if they meet one of the following conditions:Immunity from inactivity is automatically granted to users holding any title from the list or being a member of groups."}, + }}, + {ID: "tornado", Name: "Tornado", Description: "Tornado is a SLOVENIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "sl-SI", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.tornado.si/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error Found no results while trying to browse this tracker then first access the site with your browser and check that you are not being forced to change your password because it has expired after 180 days."}, + }}, + {ID: "torr9", Name: "Torr9", Description: "Torr9 is a FRENCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://torr9.net/"}, Settings: []Field{ + {Name: "passkey", Type: "text", Label: "PassKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your PassKey", Default: "You can find the API PassKey by accessing your Torr9 Profile page and scrolling down to the Passkey Tracker section."}, + {Name: "apiurl", Type: "text", Label: "API URL", Default: "api.torr9.net"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, + {Name: "info_3x", Type: "info", Label: "Including 3X", Default: "IF you want to see 3x torrents access your Torr9 Profile page and enabling the Contenu adulte option."}, + }}, + {ID: "torrent-heaven", Name: "Torrent Heaven", Description: "Torrent Heaven is a DUTCH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "nl-NL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.torrentheaven.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "thankyou", Type: "text", Label: "Thank You Comment"}, + {Name: "info", Type: "info", Label: "Thank you comment", Default: "This site requires you to leave a Thank You comment before you can download. Enter your personalised comment above."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Your account will be deleted after 90 days of not logging in to the site."}, + }}, + {ID: "torrenttrader", Name: "Torrent Trader", Description: "Torrent Trader is a GERMAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://the-torrent-trader.com/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "pin", Type: "text", Label: "Pin"}, + {Name: "onlyupload", Type: "checkbox", Label: "Filter OnlyUpload only", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About OnlyUpload at Torrent Trader", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents pro Seite: setting to 100 on your UserCP page. The default is 15."}, + {Name: "info_seedhours", Type: "info", Label: "Seeding Hours", Default: "Before using this indexer, make sure that you have set Seed-Angaben on your UserCP page."}, }}, - {ID: "yggtorrent", Name: "YGGTorrent", Description: "YGGTorrent is the largest French-language general torrent tracker.", Language: "fr-FR", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books", "Other"}, URLs: []string{"https://www.yggtorrent.qa"}, Settings: []Field{ + {ID: "torrent-turk", Name: "TOrrent-tuRK", Description: "TOrrent-tuRK (TORK) is a TURKISH Private Torrent Tracker for HD MOVIES / TV / GENERAL", Language: "tr-TR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://torrent-turk.de/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "info", Type: "info", Label: "Layout", Default: ""}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_results", Type: "info", Label: "Search results", Default: "If you are getting the error: An error has occurred!You can't view this page unless you read all your unread messages, then access the site with your browser and mark as read all PMs."}, + }}, + {ID: "torrentlt", Name: "Torrent.LT", Description: "Torrent.LT is a LITHUANIAN Private Torrent Tracker for 0DAY / GENERAL", Language: "lt-LT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://torrent.lt/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "0"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "torrentbd", Name: "TorrentBD", Description: "TorrentBD is a BANGLADESH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.torrentbd.net/", "https://www.torrentbd.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + }}, + {ID: "torrentccf", Name: "TorrentCCF", Description: "TorrentCCF (TCCF) is a CHINESE Private Torrent Tracker for HD MOVIES / TV", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://et8.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted. updated @ 2020.03.19
  2. Insane User or above would never be deleted if parked (at User CP)
  3. Parked accounts would be disabled if users have not logged in for more than 365 days in a row. updated @ 2020.09.20
  4. Un-parked accounts would be disabled if users have not logged in for more than 90 days in a row. updated @ 2020.09.20
  5. Accounts with both uploaded and downloaded amount being 0 would be disabled if users have not logged in for more than 30 days in a row.
"}, + }}, + {ID: "torrentdd", Name: "TorrentDD", Description: "TorrentDD (TodayBit) is a THAI Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "th-TH", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.torrentdd.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + }}, + {ID: "torrenteros-api", Name: "Torrenteros (API)", Description: "Torrenteros (TTR) is a SPANISH Torrent Tracker for MOVIES / TV / GENERAL", Language: "es-ES", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://torrenteros.org/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your TTR account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "torrenthr", Name: "TorrentHR", Description: "TorrentHR is a ratioless CROATIAN Private Torrent Tracker for 0DAY / GENERAL", Language: "hr-HR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.torrenthr.org/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "torrenting", Name: "Torrenting", Description: "Torrenting (TT) is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://torrenting.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "All members are required to log into their account at least every 89 days or you will be deleted without warning."}, + }}, + {ID: "torrentleech", Name: "TorrentLeech", Description: "TorrentLeech (TL) is a Private Torrent Tracker for 0DAY / GENERAL. not here _ not scene", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://www.torrentleech.org/", "https://www.torrentleech.cc/", "https://www.torrentleech.me/", "https://www.tleechreload.org/", "https://www.tlgetin.cc/", "https://rss.torrentleech.cc/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "alt2fatoken", Type: "text", Label: "Alt 2FA Token"}, + {Name: "info_alt2fatoken", Type: "info", Label: "About Alt 2FA Token", Default: "(Site Profile => Alt 2FA Token) Only fill in the Alt 2FA Token if you have enabled 2FA on the TorrentLeech Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "exclude_scene", Type: "checkbox", Label: "Exclude SCENE torrents from results", Default: "false"}, + {Name: "exclude_archives", Type: "checkbox", Label: "Exclude torrents with the tag RAR from results (does not support IMDBID search)", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + }}, + {ID: "torrentleech-pl", Name: "Torrentleech.pl", Description: "Torrentleech.pl is a POLISH Private Torrent Tracker for 0DAY / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://torrentleech.pl/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "drop_polish_prefix", Type: "checkbox", Label: "Drop the Polish title prefix", Default: "false"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Users of the Power User class and below who have been inactive for more than 62 days are deleted. Therefore, if for some reason you can't enter TorrentLeech.pl for a while, Park your account. You won't be able to download torrents, but you can be sure that you won't have to log in for 122 days. However, if you do not log in to your account after this time, it will be deleted."}, + }}, + {ID: "totheglory", Name: "ToTheGlory", Description: "ToTheGlory (TTG) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://totheglory.im/"}, Settings: []Field{ + {Name: "info_2fa", Type: "info", Label: "About 2FA", Default: "If you want to enable 2FA then use the ToTheGlory2FA indexer instead."}, {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "passid", Type: "select", Label: "Security Question ID", Default: "0"}, + {Name: "info_passid", Type: "info", Label: "About Security ID", Default: "Only select the Security Question ID from the pulldown if you have set it on the TTG Web Site. Otherwise just leave it as Ignore not set."}, + {Name: "passan", Type: "text", Label: "Security Question Answer"}, + {Name: "info_passan", Type: "info", Label: "About Security Question Answer", Default: "Only fill in the Security Question Answer box if you have set it on the TTG Web Site. Don't forget to write your answer in the same language you saved it on the TTG Web Site. Otherwise just leave it empty."}, }}, - {ID: "sharewood", Name: "Sharewood", Description: "Sharewood is a French semi-private tracker for movies, TV, music, and software.", Language: "fr-FR", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://www.sharewood.tv"}, Settings: []Field{ + {ID: "totheglory2fa", Name: "ToTheGlory2FA", Description: "ToTheGlory (TTG) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL. This indexer uses cookie login for 2FA.", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://totheglory.im/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + }}, + {ID: "trackermk", Name: "TrackerMK", Description: "TrackerMK is a MACEDONIAN Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "mk-MK", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://trackermk.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "To keep records updated reguarly, all inactive accounts will be deleted after 60 days of inactivity."}, + }}, + {ID: "trackerzero", Name: "TrackerZero", Description: "TrackerZero is an ITALIAN Private PAY2DL Torrent Tracker for MOVIES / TV / MUSIC / SOFTWARE", Language: "it-IT", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://trackerzero.it/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "API key", Required: true}, + {Name: "info_apikey", Type: "info", Label: "About your API key", Default: "Find your API key by accessing your TrackerZero Profile page and scrolling down to the img.trackerzero.it section."}, {Name: "passkey", Type: "text", Label: "Passkey", Required: true}, + {Name: "info_passkey", Type: "info", Label: "About your Passkey", Default: "Find your Passkey by accessing your TrackerZero Profile page and scrolling down to the Passkey section."}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "trancetraffic", Name: "TranceTraffic", Description: "TranceTraffic is a Private Torrent Tracker for MUSIC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Other"}, URLs: []string{"https://www.trancetraffic.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, }}, - {ID: "cpasbien", Name: "Cpasbien", Description: "Cpasbien is a popular French public torrent site for movies and TV.", Language: "fr-FR", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://www.cpasbien.tw"}, Settings: []Field{}}, - {ID: "mejortorrent", Name: "MejorTorrent", Description: "MejorTorrent is the largest Spanish-language public torrent site.", Language: "es-ES", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV"}, URLs: []string{"https://mejortorrent.wtf"}, Settings: []Field{}}, - {ID: "dontorrent", Name: "DonTorrent", Description: "DonTorrent is a Spanish public torrent site for movies, series, and music.", Language: "es-ES", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://dontorrent.earth"}, Settings: []Field{}}, - {ID: "divxtotal", Name: "DivxTotal", Description: "DivxTotal is a Spanish public torrent site with a large catalog of dubbed content.", Language: "es-ES", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV"}, URLs: []string{"https://www.divxtotal.mov"}, Settings: []Field{}}, - {ID: "ilcorsaronero", Name: "ilCorSaRoNeRo", Description: "ilCorSaRoNeRo is the largest Italian public torrent tracker.", Language: "it-IT", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://ilcorsaronero.link"}, Settings: []Field{}}, - {ID: "tntvillage", Name: "TNTVillage", Description: "TNTVillage is an Italian semi-private tracker with a community-moderated library.", Language: "it-IT", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books"}, URLs: []string{"https://tntvillage.scambioetico.org"}, Settings: []Field{ + {ID: "trezzor", Name: "TreZzoR", Description: "TreZzoR is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "cs-CZ", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://tracker.czech-server.com/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter FreeLeech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "data"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentu na strance: setting to 100 on your account profile."}, + {Name: "info_xxx", Type: "info", Label: "XXX Results", Default: "To include XXX in results, click Kategoria XXX sa nezobrazuje!!!. povolit zobrazenie on the tracker search page."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Park your account to protect it against deletion due to the fact that you have not logged in at least once every 3 months."}, }}, - {ID: "kinozal", Name: "Kinozal", Description: "Kinozal is a major Russian semi-private tracker for movies, TV, and music.", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://kinozal.tv"}, Settings: []Field{ + {ID: "trezzorcookie", Name: "TreZzoRCookie", Description: "TreZzoR is a CZECH Private Torrent Tracker for MOVIES / TV / GENERAL. This uses the cookie method for access", Language: "cs-CZ", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://tracker.czech-server.com/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Filter FreeLeech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "data"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentu na strance: setting to 100 on your account profile."}, + {Name: "info_xxx", Type: "info", Label: "XXX Results", Default: "To include XXX in results, click Kategoria XXX sa nezobrazuje!!!. povolit zobrazenie on the tracker search page."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Park your account to protect it against deletion due to the fact that you have not logged in at least once every 3 months."}, + }}, + {ID: "turkseed-api", Name: "TurkSeed (API)", Description: "TurkSeed (Aturk) is a TURKISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "tr-TR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://turkseed.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your TurkSeed account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts that do not download a 15GB torrent from our site within a month will receive a warning (will be closed)! Accounts that do not upload (seed, share) 20gb on our site within a month will receive a warning (will be closed)! The account that receives three warnings will be automatically closed! No objections are accepted to the deletion of accounts that have not been on our site for six months and have not been active in any way!"}, + }}, + {ID: "turktorrent", Name: "TurkTorrent", Description: "TurkTorrent (TT) is a TURKISH Private PAY2DL Torrent Tracker for MOVIES / TV / GENERAL", Language: "tr-TR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://turktorrent.us/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "useragent", Type: "text", Label: "User-Agent"}, + {Name: "info_useragent", Type: "text", Label: ""}, + {Name: "info_profile", Type: "info", Label: "Layout", Default: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "tvchaosuk", Name: "TVChaosUK", Description: "TV Chaos UK (TVCUK) is a Private Torrent Tracker for UK TV", Language: "en-GB", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://tvchaosuk.com/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "u2", Name: "U2", Description: "U2 (U2分享園@動漫花園) is a CHINESE Private Torrent Tracker for ANIME", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://u2.dmhy.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + }}, + {ID: "ubits", Name: "UBits", Description: "UBits is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://ubits.club/"}, Settings: []Field{ + {Name: "username", Type: "text", Label: "Username", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the UBits Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Userswith a parked account will be deleted if they do not log in for 180 consecutive days
  4. Users with non-parked account will be deleted if they do not log in for 120 consecutive days
  5. Users with no traffic (ie, upload/download data are both 0) will be deleted if they do not log in for 60 consecutive days.
"}, + }}, + {ID: "ultrahd", Name: "UltraHD", Description: "UltraHD is a CHINESE Private Torrent Tracker for UHD MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://ultrahd.net/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Inactive accounts (i.e. not logged in for a long time) are automatically deleted."}, + }}, + {ID: "unlimitz", Name: "Unlimitz", Description: "Unlimitz is a THAI Private Torrent Tracker for GENERAL", Language: "th-TH", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://www.unlimitz.biz/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "staffpass", Type: "text", Label: "Staff Pass"}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "uploadcx", Name: "upload.cx (API)", Description: "upload.cx (ULCX) is a Private Torrent Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://upload.cx/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your upload.cx account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "All members must engage with the site, through either logging in or navigating upload.cx. Any account that remains inactive for over two months will be deactivated and pruned after an additional two months of deactivation."}, }}, - {ID: "nnmclub", Name: "NNM-Club", Description: "NNM-Club is a large Russian torrent tracker covering movies, TV, software, and games.", Language: "ru-RU", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Other"}, URLs: []string{"https://nnmclub.to"}, Settings: []Field{ + {ID: "upscalevault-api", Name: "Upscale Vault (API)", Description: "Upscale Vault is a Private Torrent Tracker for AI upscaled and remastered MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "TV"}, URLs: []string{"https://upscalevault.com/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your Upscale Vault account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "utopia", Name: "UTOPIA (API)", Description: "UTOPIA is a UKRAINIAN Private Tracker for HD MOVIES and TV", Language: "uk-UA", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://utp.to/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your UTOPIA account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "addukrainiantotitle", Type: "checkbox", Label: "Add UKR to end of all titles to improve language detection by Sonarr and Radarr. Will cause English-only results to be misidentified.", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "If you stop visiting the site or downloading torrents your account will be automatically deactivated after 180 days."}, + }}, + {ID: "vault-network", Name: "Vault network", Description: "Vault network is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://vault-network.net/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Filter freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 40 on your account profile. The default is 20."}, }}, - {ID: "toloka", Name: "Toloka", Description: "Toloka is a Ukrainian torrent tracker with a large community and diverse catalog.", Language: "uk-UA", Protocol: "torrent", Privacy: "semi-private", Categories: []string{"Movies", "TV", "Audio", "Books", "Other"}, URLs: []string{"https://toloka.to"}, Settings: []Field{ + {ID: "vietmediaf", Name: "VietMediaF", Description: "VietMediaF is a VIETNAMESE Private Torrent Tracker for MOVIES / TV", Language: "vi-VN", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://tracker.vietmediaf.store/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your VietMediaF account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "whiteangel", Name: "White Angel", Description: "White Angel is a HUNGARIAN Private Tracker for MOVIES / TV", Language: "hu-HU", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://white-angel.hu/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search FreeLeech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrentek száma egy oldalon: setting to 100 on your account profile."}, }}, - {ID: "brasiltrackers", Name: "BrasilTrackers", Description: "BrasilTrackers is the largest Brazilian Portuguese private tracker.", Language: "pt-BR", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://brasiltrackers.org"}, Settings: []Field{ + {ID: "wintersakura", Name: "WinterSakura", Description: "WinterSakura is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://wintersakura.net/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "2facode", Type: "text", Label: "2FA code"}, + {Name: "info_2fa", Type: "info", Label: "About 2FA code", Default: "Only fill in the 2FA code box if you have enabled 2FA on the WinterSakura Web Site. Otherwise just leave it empty."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, }}, - {ID: "torrentland", Name: "TorrentLand", Description: "TorrentLand is a Spanish private tracker with a focus on HD movie and TV releases.", Language: "es-ES", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://torrentland.li"}, Settings: []Field{ + {ID: "wihd", Name: "World-In-HD", Description: "World-In-HD is a Private Torrent Tracker. Your world in HD", Language: "fr-FR", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://world-in-hd.net/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "FRENCH"}, + {Name: "vostfr", Type: "checkbox", Label: "Replace VOSTFR and SUBFRENCH with ENGLISH", Default: "false"}, }}, - {ID: "tokyotosho", Name: "Tokyo Toshokan", Description: "Tokyo Toshokan is a Japanese BitTorrent library for anime, manga, and Japanese media.", Language: "ja-JP", Protocol: "torrent", Privacy: "public", Categories: []string{"TV", "Audio", "Books", "Other"}, URLs: []string{"https://www.tokyotosho.info"}, Settings: []Field{}}, - {ID: "anidex", Name: "AniDex", Description: "AniDex is a public torrent tracker for anime, manga, and East Asian media.", Language: "ja-JP", Protocol: "torrent", Privacy: "public", Categories: []string{"TV", "Audio", "Books"}, URLs: []string{"https://anidex.info"}, Settings: []Field{}}, - {ID: "elitetorrent", Name: "EliteTorrent", Description: "EliteTorrent is a Spanish public torrent site for movies and series.", Language: "es-ES", Protocol: "torrent", Privacy: "public", Categories: []string{"Movies", "TV"}, URLs: []string{"https://elitetorrent.wf"}, Settings: []Field{}}, - {ID: "unionfansub", Name: "Union Fansub", Description: "Union Fansub is a Spanish anime fansubbing community with its own torrent tracker.", Language: "es-ES", Protocol: "torrent", Privacy: "public", Categories: []string{"TV"}, URLs: []string{"https://foro.unionfansub.com"}, Settings: []Field{}}, - {ID: "german-palast", Name: "German Palast", Description: "German Palast is a German private tracker for movies, TV, and music.", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://german-palast.to"}, Settings: []Field{ + {ID: "world-of-tomorrow", Name: "World-of-Tomorrow", Description: "World-of-Tomorrow is a GERMAN Private tracker", Language: "de-DE", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://w-o-t.pro/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "pin", Type: "text", Label: "Pin"}, + {Name: "freeleech", Type: "checkbox", Label: "Search FreeLeech", Default: "false"}, + {Name: "onlyupload", Type: "checkbox", Label: "Search OnlyUpload", Default: "false"}, + {Name: "info_free", Type: "info", Label: "About Freeleech and OnlyUpload at World-of-Tomorrow", Default: ""}, + {Name: "sortby", Type: "select", Label: "Sort requested from site", Default: "added"}, + {Name: "typeby", Type: "select", Label: "Order requested from site", Default: "DESC"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "All accounts up to platinum users that are inactive for more than 8 weeks will be deleted!"}, + }}, + {ID: "xingwan", Name: "Xingwan (星湾)", Description: "Xingwan (星湾) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://xingwan.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "xingyung", Name: "Xingyung (星陨阁)", Description: "Xingyung (星陨阁) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://pt.xingyungept.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, + }}, + {ID: "xloli", Name: "xloli", Description: "xloli (ilolicon PT) is a CHINESE Private Torrent Tracker for LOLICON / MOVIES / 3X", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://mua.xloli.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile.
Choosing more may cause the web site to fail to deliver complete results."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Cherish your user account. Inactive accounts would be deleted based on the following rules:
  1. Veteran User or above would never be deleted.
  2. Elite User or above would never be deleted if parked (at User CP).
  3. Parked accounts would be deleted if users have not logged in for more than 400 days in a row.
  4. Unparked accounts would be deleted if users have not logged in for more than 150 days in a row.
  5. Accounts with both uploaded and downloaded amount being 0 would be deleted if users have not logged in for more than 100 days in a row.
"}, + }}, + {ID: "xtorrenty", Name: "xTorrenty", Description: "xTorrenty is a POLISH Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "pl-PL", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://xtorrenty.org/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "multilang", Type: "checkbox", Label: "Replace MULTi by another language in release name", Default: "false"}, + {Name: "multilanguage", Type: "select", Label: "Replace MULTi by this language", Default: "POLISH"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "date"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, }}, - {ID: "hdarea", Name: "HDArea", Description: "HDArea is a Chinese private tracker for HD movies and TV shows.", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://www.hdarea.co"}, Settings: []Field{ + {ID: "xtremebytes", Name: "Xtreme Bytes", Description: "Xtreme Bytes (TorrentSurf) is a Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV", "XXX"}, URLs: []string{"https://xtremebytes.net/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "seedbox", Type: "checkbox", Label: "Use SeedBox Download Link", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, }}, - {ID: "chdbits", Name: "CHDBits", Description: "CHDBits is a prestigious Chinese private HD tracker.", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV"}, URLs: []string{"https://chdbits.co"}, Settings: []Field{ + {ID: "xwtclassics", Name: "XWT-Classics", Description: "XWT-Classics is a Private Torrent Tracker for CLASSIC PROFESSIONAL WRESTLING", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://xwt-classics.net/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, - {Name: "passkey", Type: "password", Label: "Passkey", Required: true}, + {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "seedbox", Type: "checkbox", Label: "Use SeedBox Download Link", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Accounts inactive for more than 42 days are automatically deleted."}, }}, - {ID: "polishtracker", Name: "PolishTracker", Description: "PolishTracker is the largest Polish private tracker with Polish-dubbed and subtitled content.", Language: "pl-PL", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://pte.nu"}, Settings: []Field{ + {ID: "xwtorrents", Name: "XWtorrents", Description: "XtremeWrestlingTorrents (XWT) is a Private Torrent Tracker for PROFESSIONAL WRESTLING / MMA", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Books", "Movies", "TV"}, URLs: []string{"https://xtremewrestlingtorrents.net/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "seedbox", Type: "checkbox", Label: "Use SeedBox Download Link", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, }}, - {ID: "danishbytes", Name: "DanishBytes", Description: "DanishBytes is a Danish private tracker for Danish-language and international content.", Language: "da-DK", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://danishbytes.club"}, Settings: []Field{ - {Name: "api_key", Type: "text", Label: "API Key", Required: true}, + {ID: "yuscene-api", Name: "YUSCENE (API)", Description: "YUSCENE is a Private Tracker for MOVIES / TV", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Books", "Movies", "Other", "TV"}, URLs: []string{"https://yu-scene.net/"}, Settings: []Field{ + {Name: "apikey", Type: "text", Label: "APIKey", Required: true}, + {Name: "info_key", Type: "info", Label: "About your API key", Default: "Find or Generate a new API Token by accessing your YUSCENE account My Settings page and clicking on the API Key tab."}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "single_file_release_use_filename", Type: "checkbox", Label: "Use filename as title for single file releases", Default: "true"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "You must log in once every 30 days or seed at least 1 torrent to not get disabled."}, + {Name: "info_flaresolverr", Type: "text", Label: ""}, }}, - {ID: "nordicbits", Name: "NordicBits", Description: "NordicBits is a Nordic private tracker for Scandinavian-language movies, TV, and music.", Language: "sv-SE", Protocol: "torrent", Privacy: "private", Categories: []string{"Movies", "TV", "Audio"}, URLs: []string{"https://nordicbits.net"}, Settings: []Field{ + {ID: "zappateers", Name: "Zappateers", Description: "Zappateers is a Private Torrent Tracker for Frank Zappa MUSIC", Language: "en-US", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Other"}, URLs: []string{"https://zappateers.com/"}, Settings: []Field{ {Name: "username", Type: "text", Label: "Username", Required: true}, {Name: "password", Type: "password", Label: "Password", Required: true}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "created_at"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + }}, + {ID: "zmpt", Name: "ZmPT (织梦)", Description: "ZmPT (织梦) is a CHINESE Private Torrent Tracker for MOVIES / TV / GENERAL", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"Audio", "Movies", "Other", "TV"}, URLs: []string{"https://zmpt.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Dou Sheng users and above will be retained forever
  2. Dou Huang and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 180 consecutive days
  4. Users with a non-parked account will be banned if they do not log in for 45 consecutive days
  5. Users with no traffic (ie, upload/download data are both 0) will be banned if they do not log in for 7 consecutive days.
"}, + }}, + {ID: "zrpt", Name: "ZRPT (自然)", Description: "ZRPT (自然) is a CHINESE Private Torrent Tracker for Documentaries", Language: "zh-CN", Protocol: "torrent", Privacy: "private", Categories: []string{"TV"}, URLs: []string{"https://zrpt.cc/"}, Settings: []Field{ + {Name: "cookie", Type: "text", Label: "Cookie", Required: true}, + {Name: "info_cookie", Type: "text", Label: ""}, + {Name: "freeleech", Type: "checkbox", Label: "Search freeleech only", Default: "false"}, + {Name: "sort", Type: "select", Label: "Sort requested from site", Default: "4"}, + {Name: "type", Type: "select", Label: "Order requested from site", Default: "desc"}, + {Name: "info_tpp", Type: "info", Label: "Results Per Page", Default: "For best results, change the Torrents per page: setting to 100 on your account profile."}, + {Name: "info_activity", Type: "info", Label: "Account Inactivity", Default: "Account retention rules:
  1. Veteran User and above will be retained forever
  2. Elite User and above will not have their account deleted after parking (in the control panel)
  3. Users with a parked account will be deleted if they do not log in for 400 consecutive days
  4. Users with a non-parked account will be deleted if they do not log in for 150 consecutive days
  5. Users who have no traffic (i.e. upload/download data are both 0) will be deleted if they do not log in for 100 consecutive days.
"}, }}, }