mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 06:03:09 +00:00
parent
e177081ab7
commit
f85e608498
1 changed files with 8 additions and 4 deletions
|
@ -268,6 +268,10 @@ settings:
|
||||||
- name: password
|
- name: password
|
||||||
type: password
|
type: password
|
||||||
label: Password
|
label: Password
|
||||||
|
- name: freeleech
|
||||||
|
type: checkbox
|
||||||
|
label: Search freeleech only
|
||||||
|
default: false
|
||||||
- name: sort
|
- name: sort
|
||||||
type: select
|
type: select
|
||||||
label: Sort requested from site
|
label: Sort requested from site
|
||||||
|
@ -310,11 +314,11 @@ search:
|
||||||
- path: torrents-search.php
|
- path: torrents-search.php
|
||||||
inputs:
|
inputs:
|
||||||
$raw: "{{range .Categories}}filter_cat[{{.}}]=1&{{end}}"
|
$raw: "{{range .Categories}}filter_cat[{{.}}]=1&{{end}}"
|
||||||
search: "{{if .Keywords}}\"{{.Keywords}}\"{{else}}{{end}}"
|
search: "{{ if .Keywords }}\"{{ .Keywords }}\"{{ else }}{{ end }}"
|
||||||
# 0 only active 1 incl dead 2 only dead
|
# 0 only active 1 incl dead 2 only dead
|
||||||
incldead: 0
|
incldead: 0
|
||||||
# 0 all 1 not freeleech 2 only freeleech
|
# 0 all 1 not freeleech 2 only freeleech
|
||||||
freeleech: 0
|
freeleech: "{{ if .Config.freeleech }}2{{ else }}0{{ end }}"
|
||||||
# 0 all 1 english 2 french 3 german 4 italian 5 japanese 6 spanish 7 russian 8 other
|
# 0 all 1 english 2 french 3 german 4 italian 5 japanese 6 spanish 7 russian 8 other
|
||||||
lang: 0
|
lang: 0
|
||||||
sort: "{{ .Config.sort }}"
|
sort: "{{ .Config.sort }}"
|
||||||
|
@ -357,5 +361,5 @@ search:
|
||||||
img[src="images/free.gif"]: 0
|
img[src="images/free.gif"]: 0
|
||||||
"*": 1
|
"*": 1
|
||||||
uploadvolumefactor:
|
uploadvolumefactor:
|
||||||
case:
|
text: 1
|
||||||
"*": 1
|
# engine tbd
|
||||||
|
|
Loading…
Add table
Reference in a new issue