From 4b415cbd81f202b4d5556b26579b80b805a4f6f1 Mon Sep 17 00:00:00 2001 From: Garfield69 Date: Fri, 20 Dec 2019 08:01:20 +1300 Subject: [PATCH] pt99: add config sort options --- src/Jackett.Common/Definitions/pt99.yml | 57 +++++++++++++++++-------- 1 file changed, 40 insertions(+), 17 deletions(-) diff --git a/src/Jackett.Common/Definitions/pt99.yml b/src/Jackett.Common/Definitions/pt99.yml index fd2806134..2fc808dbf 100644 --- a/src/Jackett.Common/Definitions/pt99.yml +++ b/src/Jackett.Common/Definitions/pt99.yml @@ -40,6 +40,22 @@ type: info label: How to get the Cookie default: "
  1. Login to this tracker in your browser
  2. Open the DevTools panel by pressing F12
  3. Select the Network tab
  4. Click on the Doc button
  5. Refresh the page by pressing F5
  6. Select the Headers tab
  7. Find 'cookie:' in the Request Headers section
  8. Copy & paste the whole cookie string to here
" + - name: sort + type: select + label: Sort requested from site + default: "4" + options: + "4": "created" + "7": "seeders" + "5": "size" + "1": "title" + - name: type + type: select + label: Order requested from site + default: "desc" + options: + "desc": "desc" + "asc": "asc" login: method: cookie @@ -61,13 +77,20 @@ paths: - path: torrents.php inputs: - $raw: "{{range .Categories}}cat{{.}}=1&{{end}}" - incldead: "0" - spstate: "0" - inclbookmarked: "0" - search: "{{if .Query.IMDBID}}{{.Query.IMDBID}}{{else}}{{.Keywords}}{{end}}" - search_area: "{{if .Query.IMDBID}}4{{else}}0{{end}}" - search_mode: "0" + $raw: "{{ range .Categories }}cat{{.}}=1&{{end}}" + # 0 incldead 1 active 2 dead + incldead: 0 + # 0 all 1 normal 2 free 3 2x 4 2xfree 5 50% 6 2x50% 7 30% + spstate: 0 + # 0 all 1 bookmrk 2 not + inclbookmarked: 0 + search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{else}}{{ .Keywords }}{{end}}" + # 0 title 1 descr 3 uploader 4 imdb + search_area: "{{ if .Query.IMDBID }}4{{else}}0{{end}}" + # 0 AND 1 OR 2 exact + search_mode: 0 + sort: "{{ .Config.sort }}" + type: "{{ .Config.type }}" rows: selector: table.torrents tr:has(a[href^="?cat="]) @@ -112,15 +135,15 @@ args: "2006-01-02 15:04:05" downloadvolumefactor: case: - img.pro_free: "0" - img.pro_free2up: "0" - img.pro_50pctdown: "0.5" - img.pro_50pctdown2up: "0.5" - img.pro_30pctdown: "0.3" - "*": "1" + img.pro_free: 0 + img.pro_free2up: 0 + img.pro_50pctdown: 0.5 + img.pro_50pctdown2up: 0.5 + img.pro_30pctdown: 0.3 + "*": 1 uploadvolumefactor: case: - img.pro_50pctdown2up: "2" - img.pro_free2up: "2" - img.pro_2up: "2" - "*": "1" + img.pro_50pctdown2up: 2 + img.pro_free2up: 2 + img.pro_2up: 2 + "*": 1