mirror of
https://github.com/Jackett/Jackett.git
synced 2025-09-17 17:34:09 +02:00
xbytes2: tag xbtit engine #6821
aff torrent per page info add sort config option
This commit is contained in:
@@ -146,7 +146,7 @@
|
|||||||
args: ["[^a-zA-Z0-9]+", " "]
|
args: ["[^a-zA-Z0-9]+", " "]
|
||||||
inputs:
|
inputs:
|
||||||
page: torrents
|
page: torrents
|
||||||
$raw: "&category={{range .Categories}}{{.}};{{end}}"
|
$raw: "&category={{ range .Categories }}{{.}};{{end}}"
|
||||||
active: 1
|
active: 1
|
||||||
search: "{{ .Keywords }}"
|
search: "{{ .Keywords }}"
|
||||||
order: "{{ .Config.sort }}"
|
order: "{{ .Config.sort }}"
|
||||||
|
@@ -88,8 +88,6 @@
|
|||||||
options:
|
options:
|
||||||
"2": "desc"
|
"2": "desc"
|
||||||
"1": "asc"
|
"1": "asc"
|
||||||
- name: info
|
|
||||||
type: info
|
|
||||||
- name: info
|
- name: info
|
||||||
type: info
|
type: info
|
||||||
label: Results Per Page
|
label: Results Per Page
|
||||||
|
@@ -31,6 +31,34 @@
|
|||||||
tv-search: [q, season, ep]
|
tv-search: [q, season, ep]
|
||||||
movie-search: [q]
|
movie-search: [q]
|
||||||
|
|
||||||
|
settings:
|
||||||
|
- name: username
|
||||||
|
type: text
|
||||||
|
label: Username
|
||||||
|
- name: password
|
||||||
|
type: password
|
||||||
|
label: Password
|
||||||
|
- name: sort
|
||||||
|
type: select
|
||||||
|
label: Sort requested from site
|
||||||
|
default: "3"
|
||||||
|
options:
|
||||||
|
"3": "created"
|
||||||
|
"5": "seeders"
|
||||||
|
"4": "size"
|
||||||
|
"2": "title"
|
||||||
|
- name: type
|
||||||
|
type: select
|
||||||
|
label: Order requested from site
|
||||||
|
default: "2"
|
||||||
|
options:
|
||||||
|
"2": "desc"
|
||||||
|
"1": "asc"
|
||||||
|
- name: info
|
||||||
|
type: info
|
||||||
|
label: Results Per Page
|
||||||
|
default: For best results, change the <b>Torrents per page:</b> setting to <b>100</b> on your account profile.
|
||||||
|
|
||||||
login:
|
login:
|
||||||
path: index.php?page=login
|
path: index.php?page=login
|
||||||
method: post
|
method: post
|
||||||
@@ -46,12 +74,16 @@
|
|||||||
- name: re_replace
|
- name: re_replace
|
||||||
args: ["S(\\d{1,2})E(\\d{1,2})", "S$1/E$2"]
|
args: ["S(\\d{1,2})E(\\d{1,2})", "S$1/E$2"]
|
||||||
inputs:
|
inputs:
|
||||||
page: "torrents"
|
page: torrents
|
||||||
$raw: "&category={{range .Categories}}{{.}};{{end}}"
|
$raw: "&category={{ range .Categories }}{{.}};{{end}}"
|
||||||
active: "1"
|
active: 1
|
||||||
search: "{{ .Keywords }}"
|
search: "{{ .Keywords }}"
|
||||||
|
order: "{{ .Config.sort }}"
|
||||||
|
by: "{{ .Config.type }}"
|
||||||
|
|
||||||
rows:
|
rows:
|
||||||
selector: "#Mcol > div > div.block-content > div > div > div > table > tbody > tr:nth-child(3) > td > table tr:not(:first-child):not(:last-child)"
|
selector: "#Mcol > div > div.block-content > div > div > div > table > tbody > tr:nth-child(3) > td > table tr:not(:first-child):not(:last-child)"
|
||||||
|
|
||||||
fields:
|
fields:
|
||||||
category:
|
category:
|
||||||
selector: td:nth-child(1) a
|
selector: td:nth-child(1) a
|
||||||
@@ -118,17 +150,18 @@
|
|||||||
attribute: href
|
attribute: href
|
||||||
downloadvolumefactor:
|
downloadvolumefactor:
|
||||||
case:
|
case:
|
||||||
img[src$="gold.png"]: "0"
|
img[src$="gold.png"]: 0
|
||||||
img[src$="silver.png"]: "0.5"
|
img[src$="silver.png"]: 0.5
|
||||||
"*": "1"
|
"*": 1
|
||||||
uploadvolumefactor:
|
uploadvolumefactor:
|
||||||
case:
|
case:
|
||||||
img[src$="2x.gif"]: "2"
|
img[src$="2x.gif"]: 2
|
||||||
img[src$="3x.gif"]: "3"
|
img[src$="3x.gif"]: 3
|
||||||
img[src$="4x.gif"]: "4"
|
img[src$="4x.gif"]: 4
|
||||||
img[src$="5x.gif"]: "5"
|
img[src$="5x.gif"]: 5
|
||||||
img[src$="6x.gif"]: "6"
|
img[src$="6x.gif"]: 6
|
||||||
img[src$="7x.gif"]: "7"
|
img[src$="7x.gif"]: 7
|
||||||
img[src$="8x.gif"]: "8"
|
img[src$="8x.gif"]: 8
|
||||||
img[src$="9x.gif"]: "9"
|
img[src$="9x.gif"]: 9
|
||||||
"*": "1"
|
"*": 1
|
||||||
|
# xbtitFM 2.1.08
|
||||||
|
Reference in New Issue
Block a user