diff --git a/README.md b/README.md index f0ae5883e..cee458c0a 100644 --- a/README.md +++ b/README.md @@ -39,7 +39,6 @@ Developer note: The software implements the [Torznab](https://github.com/Sonarr/ * Frozen Layer * GkTorrent * Horrible Subs - * IdopeClone * Il Corsaro Nero * Il Corsaro Blu * Isohunt2 diff --git a/src/Jackett.Common/Definitions/idopeclone.yml b/src/Jackett.Common/Definitions/idopeclone.yml deleted file mode 100644 index 40e932918..000000000 --- a/src/Jackett.Common/Definitions/idopeclone.yml +++ /dev/null @@ -1,92 +0,0 @@ ---- - site: idopeclone - name: IdopeClone - description: "This Clone of iDope is a Public torrent search engine" - language: en-us - type: public - encoding: UTF-8 - links: - - https://www.idope.site/ - legacylinks: - - https://idope.top/ - - caps: - categorymappings: - - {id: other, cat: Other, desc: "Others"} - - {id: movies, cat: Movies, desc: "Movies"} - - {id: videos, cat: Other, desc: "Videos"} - - {id: tv, cat: TV, desc: "TV"} - - {id: anime, cat: TV/Anime, desc: "Anime"} - - {id: xxx, cat: XXX, desc: "XXX"} - - {id: adult, cat: XXX, desc: "XXX"} - - {id: music, cat: Audio, desc: "Music"} - - {id: games, cat: PC/Games, desc: "Games"} - - {id: apps, cat: PC/0day, desc: "Apps"} - - {id: applications, cat: PC/0day, desc: "Apps"} - - {id: android, cat: PC/Phone-Android, desc: "Android"} - - {id: software, cat: PC/0day, desc: "Apps"} - - {id: books, cat: Books, desc: "Books"} - - modes: - search: [q] - tv-search: [q, season, ep] - movie-search: [q] - - settings: [] - - search: - paths: - - path: "{{if .Keywords}}search/{{ .Keywords}}/{{else}}recent/{{end}}" - - path: "{{if .Keywords}}s/{{ .Keywords}}/page/2{{else}}recent/2{{end}}" - - path: "{{if .Keywords}}s/{{ .Keywords}}/page/3{{else}}recent/3{{end}}" - - path: "{{if .Keywords}}s/{{ .Keywords}}/page/4{{else}}recent/4{{end}}" - - path: "{{if .Keywords}}s/{{ .Keywords}}/page/5{{else}}recent/5{{end}}" - rows: - selector: li:has(div.opt-text-w3layouts) - filters: - - name: andmatch - fields: - title: - selector: div.opt-text-w3layouts a - details: - selector: div.opt-text-w3layouts a - attribute: href - category: - optional: true - selector: a[href^="/browse/"] - filters: - - name: replace - args: ["/browse/", ""] - magnet: - selector: a[href^="magnet:?"] - attribute: href - date: - selector: div.seedbar span:nth-child(4) - filters: - - name: replace - args: ["Age: ", ""] - - name: timeago - files: - selector: div.seedbar span:nth-child(5) - filters: - - name: replace - args: ["Files: ", ""] - size: - selector: div.seedbar span:nth-child(3) - filters: - - name: replace - args: ["Size: ", ""] - seeders: - selector: div.seedbar span:nth-child(1) - filters: - - name: replace - args: ["Seed: ", ""] - leechers: - selector: div.seedbar span:nth-child(2) - filters: - - name: replace - args: ["Leech: ", ""] - downloadvolumefactor: - text: "0" - uploadvolumefactor: - text: "1" diff --git a/src/Jackett.Updater/Program.cs b/src/Jackett.Updater/Program.cs index 1eb484d40..bd6ef283b 100644 --- a/src/Jackett.Updater/Program.cs +++ b/src/Jackett.Updater/Program.cs @@ -289,6 +289,7 @@ namespace Jackett.Updater "Definitions/extratorrentclone.yml", "Definitions/btdb.yml", "Definitions/torrentcouch.yml", + "Definitions/idopeclone.yml", }; foreach (var oldFile in oldFiles)