diff --git a/README.md b/README.md index f1d5f01e6..cc2b597f7 100644 --- a/README.md +++ b/README.md @@ -41,7 +41,6 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht * BitRu * BitSearch * BT.etree - * BTDIGG * BTMET * BTSOW * BullTorrent diff --git a/src/Jackett.Common/Definitions/btdigg.yml b/src/Jackett.Common/Definitions/btdigg.yml deleted file mode 100644 index f24815cd2..000000000 --- a/src/Jackett.Common/Definitions/btdigg.yml +++ /dev/null @@ -1,89 +0,0 @@ ---- -id: btdigg -name: BTDigg -description: "BTDigg is a Public BitTorrent DHT search engine." -language: en-US -type: public -encoding: UTF-8 -links: - - https://btdig.com/ -legacylinks: - - http://btdiggwzoyrwwbiv.onion.ly/ - - https://btdiggwzoyrwwbiv.onion.ly/ - - https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion.ws/ # redirects to spam - - https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion.pet/ # not found - - https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.onion.ly/ # 504 gateway timeout - - https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.tor2web.to/ # 504 gateway timeout - - https://btdigggink2pdqzqrik3blmqemsbntpzwxottujilcdjfz56jumzfsyd.tor2web.link/ # Origin is unreachable Error code 523 - -caps: - categories: - Other: Other - - modes: - search: [q] - tv-search: [q, season, ep] - movie-search: [q] - music-search: [q] - book-search: [q] - -settings: - - name: info_8000 - type: info - label: About BTDigg Categories - default: BTDigg does not return categories in its search results.
To add to your Apps' Torznab indexer, replace all categories with 8000(Other). - - name: sort - type: select - label: Sort requested from site - default: 0 - options: - 0: relevance - 2: created - 3: size - -search: - # https://btdig.com/search?q=test&order=2 - # only 10 results per page - paths: - - path: search - inputs: - q: "{{ if .Keywords }}{{ .Keywords }}{{ else }}{{ .Today.Year }}{{ end }}" - # 0 relevance 2 age 3 size 4 files - order: "{{ .Config.sort }}" - - rows: - selector: div.one_result - filters: - - name: andmatch - - fields: - category: - text: Other - title: - selector: div.torrent_name a - details: - selector: div.torrent_name a - attribute: href - download: - selector: a[href^="magnet:?xt="] - attribute: href - date: - selector: span.torrent_age - filters: - - name: replace - args: ["found ", ""] - files: - selector: span.torrent_files - optional: true - default: 1 - size: - selector: span.torrent_size - seeders: - text: 1 - leechers: - text: 1 - downloadvolumefactor: - text: 0 - uploadvolumefactor: - text: 1 -# dhtcrawler2 diff --git a/src/Jackett.Updater/Program.cs b/src/Jackett.Updater/Program.cs index cc251006e..066f984fd 100644 --- a/src/Jackett.Updater/Program.cs +++ b/src/Jackett.Updater/Program.cs @@ -307,6 +307,7 @@ namespace Jackett.Updater "Definitions/bt-scene.yml", "Definitions/bt4g.yml", "Definitions/btbit.yml", + "Definitions/btdigg.yml", "Definitions/btdb.yml", "Definitions/bteye.yml", "Definitions/btgigs.yml",