mirror of https://github.com/Jackett/Jackett
pt99: add config sort options
This commit is contained in:
parent
d200e61de8
commit
4b415cbd81
|
@ -40,6 +40,22 @@
|
||||||
type: info
|
type: info
|
||||||
label: How to get the Cookie
|
label: How to get the Cookie
|
||||||
default: "<ol><li>Login to this tracker in your browser<li>Open the <b>DevTools</b> panel by pressing <b>F12</b><li>Select the <b>Network</b> tab<li>Click on the <b>Doc</b> button<li>Refresh the page by pressing <b>F5</b><li>Select the <b>Headers</b> tab<li>Find 'cookie:' in the <b>Request Headers</b> section<li>Copy & paste the whole cookie string to here</ol>"
|
default: "<ol><li>Login to this tracker in your browser<li>Open the <b>DevTools</b> panel by pressing <b>F12</b><li>Select the <b>Network</b> tab<li>Click on the <b>Doc</b> button<li>Refresh the page by pressing <b>F5</b><li>Select the <b>Headers</b> tab<li>Find 'cookie:' in the <b>Request Headers</b> section<li>Copy & paste the whole cookie string to here</ol>"
|
||||||
|
- 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:
|
login:
|
||||||
method: cookie
|
method: cookie
|
||||||
|
@ -61,13 +77,20 @@
|
||||||
paths:
|
paths:
|
||||||
- path: torrents.php
|
- path: torrents.php
|
||||||
inputs:
|
inputs:
|
||||||
$raw: "{{range .Categories}}cat{{.}}=1&{{end}}"
|
$raw: "{{ range .Categories }}cat{{.}}=1&{{end}}"
|
||||||
incldead: "0"
|
# 0 incldead 1 active 2 dead
|
||||||
spstate: "0"
|
incldead: 0
|
||||||
inclbookmarked: "0"
|
# 0 all 1 normal 2 free 3 2x 4 2xfree 5 50% 6 2x50% 7 30%
|
||||||
search: "{{if .Query.IMDBID}}{{.Query.IMDBID}}{{else}}{{.Keywords}}{{end}}"
|
spstate: 0
|
||||||
search_area: "{{if .Query.IMDBID}}4{{else}}0{{end}}"
|
# 0 all 1 bookmrk 2 not
|
||||||
search_mode: "0"
|
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:
|
rows:
|
||||||
selector: table.torrents tr:has(a[href^="?cat="])
|
selector: table.torrents tr:has(a[href^="?cat="])
|
||||||
|
@ -112,15 +135,15 @@
|
||||||
args: "2006-01-02 15:04:05"
|
args: "2006-01-02 15:04:05"
|
||||||
downloadvolumefactor:
|
downloadvolumefactor:
|
||||||
case:
|
case:
|
||||||
img.pro_free: "0"
|
img.pro_free: 0
|
||||||
img.pro_free2up: "0"
|
img.pro_free2up: 0
|
||||||
img.pro_50pctdown: "0.5"
|
img.pro_50pctdown: 0.5
|
||||||
img.pro_50pctdown2up: "0.5"
|
img.pro_50pctdown2up: 0.5
|
||||||
img.pro_30pctdown: "0.3"
|
img.pro_30pctdown: 0.3
|
||||||
"*": "1"
|
"*": 1
|
||||||
uploadvolumefactor:
|
uploadvolumefactor:
|
||||||
case:
|
case:
|
||||||
img.pro_50pctdown2up: "2"
|
img.pro_50pctdown2up: 2
|
||||||
img.pro_free2up: "2"
|
img.pro_free2up: 2
|
||||||
img.pro_2up: "2"
|
img.pro_2up: 2
|
||||||
"*": "1"
|
"*": 1
|
||||||
|
|
Loading…
Reference in New Issue