linkomanija: update indexer (#14795)

thanks to the user that sent the invite
This commit is contained in:
ilike2burnthing 2023-10-25 14:43:36 +01:00 committed by GitHub
parent 26ff74d12d
commit 2c1961fc0d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 10 deletions

View File

@ -432,7 +432,7 @@ A third-party Golang SDK for Jackett is available from [webtor-io/go-jackett](ht
* Lesbians4u * Lesbians4u
* Libble * Libble
* LibraNet (LN) * LibraNet (LN)
* LinkoManija [![(invite needed)][inviteneeded]](#) * LinkoManija
* Locadora * Locadora
* LosslessClub [![(invite needed)][inviteneeded]](#) * LosslessClub [![(invite needed)][inviteneeded]](#)
* LST * LST

View File

@ -44,8 +44,8 @@ caps:
modes: modes:
search: [q] search: [q]
tv-search: [q, season, ep] tv-search: [q, season, ep, imdbid]
movie-search: [q] movie-search: [q, imdbid]
music-search: [q] music-search: [q]
book-search: [q] book-search: [q]
@ -60,10 +60,6 @@ settings:
type: checkbox type: checkbox
label: Search freeleech only label: Search freeleech only
default: false default: false
- name: searchindesc
type: checkbox
label: Search in torrent description (get more results)
default: true
login: login:
path: takelogin.php path: takelogin.php
@ -82,12 +78,15 @@ search:
- path: browse.php - path: browse.php
inputs: inputs:
$raw: "{{ range .Categories }}c{{.}}=1&{{end}}" $raw: "{{ range .Categories }}c{{.}}=1&{{end}}"
search: "{{ .Keywords }}" search: "{{ if .Query.IMDBID }}{{ .Query.IMDBID }}{{ else }}{{ .Keywords }}{{ end }}"
# 0 active, 1 incldead, 2 dead
incldead: 1 incldead: 1
freeleech: "{{ if .Config.freeleech }}1{{ else }}{{ end }}" freeleech: "{{ if .Config.freeleech }}1{{ else }}{{ end }}"
searchindesc: "{{ .Config.searchindesc }}" searchindesc: "{{ if .Query.IMDBID }}1{{ else }}{{ end }}"
keywordsfilters: keywordsfilters:
- name: re_replace
args: ["\\.", " "]
- name: re_replace - name: re_replace
args: ["(\\w+)", "+$1"] # prepend + to each word args: ["(\\w+)", "+$1"] # prepend + to each word
@ -109,8 +108,12 @@ search:
download: download:
selector: a[href^="download.php?id="] selector: a[href^="download.php?id="]
attribute: href attribute: href
genre:
selector: td:nth-child(2) > span
filters:
- name: re_replace
args: [" \\| .+", ""]
description: description:
optional: true
selector: td:nth-child(2) > span selector: td:nth-child(2) > span
files: files:
selector: td:nth-child(3) selector: td:nth-child(3)
@ -135,4 +138,6 @@ search:
"*": 1 "*": 1
uploadvolumefactor: uploadvolumefactor:
text: 1 text: 1
minimumratio:
text: 0.3
# engine tbd # engine tbd