mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
turktorrent: add freeleech filter #9456
update dlvf and ulvf detection add minimumratio
This commit is contained in:
@@ -81,6 +81,10 @@ settings:
|
|||||||
type: info
|
type: info
|
||||||
label: Layout
|
label: Layout
|
||||||
default: "<ol><li>Only the English Classic profile is supported.<li>Make sure to set the <b>Torrent Listing (Listeleme Biçimi)</b> option in your profile to <b>Classic (Klasik)</b><li>And set the <b>Language (Dil)</b> to <b>English</b><li>Using the <i>Modern</i> theme will prevent results, and using <i>Turkish</i> will prevent upload dates.</ol>"
|
default: "<ol><li>Only the English Classic profile is supported.<li>Make sure to set the <b>Torrent Listing (Listeleme Biçimi)</b> option in your profile to <b>Classic (Klasik)</b><li>And set the <b>Language (Dil)</b> to <b>English</b><li>Using the <i>Modern</i> theme will prevent results, and using <i>Turkish</i> will prevent upload dates.</ol>"
|
||||||
|
- name: freeleech
|
||||||
|
type: checkbox
|
||||||
|
label: Filter freeleech only
|
||||||
|
default: false
|
||||||
- name: sort
|
- name: sort
|
||||||
type: select
|
type: select
|
||||||
label: Sort requested from site
|
label: Sort requested from site
|
||||||
@@ -134,7 +138,7 @@ search:
|
|||||||
"sortOptions[sortOrder]": "{{ .Config.type }}"
|
"sortOptions[sortOrder]": "{{ .Config.type }}"
|
||||||
|
|
||||||
rows:
|
rows:
|
||||||
selector: table#torrents_table_classic > tbody > tr:has(td.torrent_name)
|
selector: "table#torrents_table_classic > tbody > tr:has(td.torrent_name){{ if .Config.freeleech }}:has(img[src$=\"/freedownload.gif\"]){{ else }}{{ end }}"
|
||||||
|
|
||||||
fields:
|
fields:
|
||||||
category:
|
category:
|
||||||
@@ -194,11 +198,13 @@ search:
|
|||||||
attribute: href
|
attribute: href
|
||||||
downloadvolumefactor:
|
downloadvolumefactor:
|
||||||
case:
|
case:
|
||||||
"img[title=\"FREE!\"]": 0
|
"img[src$=\"/freedownload.gif\"]": 0
|
||||||
"img[title=\"Download Multiplier: 0.5\"]": 0.5
|
"img[src$=\"/silverdownload.gif\"]": 0.5
|
||||||
"*": 1
|
"*": 1
|
||||||
uploadvolumefactor:
|
uploadvolumefactor:
|
||||||
case:
|
case:
|
||||||
"img[title=\"Upload Multiplier: 2\"]": 2
|
"img[src$=\"/torrent_x2.png\"]": 2
|
||||||
"*": 1
|
"*": 1
|
||||||
|
minimumratio:
|
||||||
|
text: 0.5
|
||||||
# TSUE 2.2
|
# TSUE 2.2
|
||||||
|
Reference in New Issue
Block a user