Skip to content

Commit

Permalink
jackett indexers as of a1518c775f50db34a382507e76fd585f13ed2fdc
Browse files Browse the repository at this point in the history
  • Loading branch information
mynameisbogdan committed Apr 3, 2024
1 parent 4933ce2 commit cd1ddea
Show file tree
Hide file tree
Showing 9 changed files with 51 additions and 29 deletions.
2 changes: 1 addition & 1 deletion definitions/v7/blutopia-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -173,4 +173,4 @@ search:
optional: true
title:
text: "{{ if and (.Config.single_file_release_use_filename) (eq .Result.files \"1\") (.Result.title_filename) }}{{ .Result.title_filename }}{{ else }}{{ .Result.title_optional }}{{ end }}"
# json UNIT3D 8.0.0
# json UNIT3D 8.0.2
15 changes: 11 additions & 4 deletions definitions/v7/lst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ settings:
type: checkbox
label: Search freeleech only
default: false
- name: single_file_release_use_filename
type: checkbox
label: Use filename as title for single file releases
default: true
- name: sort
type: select
label: Sort requested from site
Expand Down Expand Up @@ -98,7 +102,7 @@ search:
fields:
category:
selector: category_id
title:
title_optional:
selector: name
details:
selector: details_link
Expand All @@ -120,8 +124,6 @@ search:
genre:
selector: meta.genres
filters:
- name: re_replace
args: ["(?i)^None$", ""]
- name: re_replace
args: ["(?i)(Science Fiction)", "Science_Fiction"]
- name: re_replace
Expand Down Expand Up @@ -170,4 +172,9 @@ search:
minimumseedtime:
# 7 days (as seconds = 7 x 24 x 60 x 60)
text: 604800
# json UNIT3D 7.1.2
title_filename:
selector: "files[0].name"
optional: true
title:
text: "{{ if and (.Config.single_file_release_use_filename) (eq .Result.files \"1\") (.Result.title_filename) }}{{ .Result.title_filename }}{{ else }}{{ .Result.title_optional }}{{ end }}"
# json UNIT3D 8.0.2
3 changes: 2 additions & 1 deletion definitions/v7/rudub.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ language: ru-RU
type: semi-private
encoding: windows-1251
links:
- https://02april.rudub.online/
- https://03april.rudub.online/
legacylinks:
- http://baibako.tv/
- https://baibako.tv/
Expand All @@ -16,6 +16,7 @@ legacylinks:
- https://rudub.net/
- https://rudub.pw/
- https://rudub.xyz/
- https://02april.rudub.online/

caps:
categorymappings:
Expand Down
2 changes: 1 addition & 1 deletion definitions/v9/blutopia-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -179,4 +179,4 @@ search:
optional: true
title:
text: "{{ if and (.Config.single_file_release_use_filename) (eq .Result.files \"1\") (.Result.title_filename) }}{{ .Result.title_filename }}{{ else }}{{ .Result.title_optional }}{{ end }}"
# json UNIT3D 8.0.0b
# json UNIT3D 8.0.2
2 changes: 1 addition & 1 deletion definitions/v9/fearnopeer.yml
Original file line number Diff line number Diff line change
Expand Up @@ -176,4 +176,4 @@ search:
optional: true
title:
text: "{{ if and (.Config.single_file_release_use_filename) (eq .Result.files \"1\") (.Result.title_filename) }}{{ .Result.title_filename }}{{ else }}{{ .Result.title_optional }}{{ end }}"
# json UNIT3D 8.0.1
# json UNIT3D 8.0.2
37 changes: 22 additions & 15 deletions definitions/v9/itatorrents.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,11 +34,15 @@ settings:
- name: info_key
type: info
label: About your API key
default: "Find or Generate a new API Token by accessing your <a href=\"https://itatorrents.xyz/\" target=\"_blank\">ItaTorrents</a> account <i>My Security</i> page and clicking on the <b>API Token</b> tab."
default: "Find or Generate a new API Token by accessing your <a href=\"https://itatorrents.xyz/\" target=\"_blank\">ItaTorrents</a> account <i>My Settings</i> page and clicking on the <b>API Key</b> tab."
- name: freeleech
type: checkbox
label: Search freeleech only
default: false
- name: single_file_release_use_filename
type: checkbox
label: Use filename as title for single file releases
default: true
- name: sort
type: select
label: Sort requested from site
Expand Down Expand Up @@ -107,15 +111,8 @@ search:
fields:
category:
selector: category_id
title:
title_optional:
selector: name
filters:
- name: re_replace
args: ["\\.", " "]
- name: re_replace # Stagione X --> S0X
args: ["(?i)\\bStagion[ei]\\s?(\\d{1})\\b|\\bSeason'?s?\\s?(\\d{1})\\b", "S0$1$2"]
- name: re_replace # Stagione XX --> SXX
args: ["(?i)\\bStagion[ei]\\s?(\\d{2,})\\b|\\bSeason'?s?\\s?(\\d{2,})\\b", "S$1$2"]
details:
selector: details_link
download:
Expand All @@ -136,8 +133,6 @@ search:
genre:
selector: meta.genres
filters:
- name: re_replace
args: ["(?i)^None$", ""]
- name: re_replace
args: ["(?i)(televisione film)", "televisione_film"]
- name: replace
Expand Down Expand Up @@ -173,12 +168,24 @@ search:
100%: 0 # freeleech
"*": 0 # catch errors
uploadvolumefactor:
# api returns 0=false, 1=true
# api returns False, True
selector: double_upload
case:
0: 1 # normal
1: 2 # double
False: 1 # normal
True: 2 # double
minimumseedtime:
# 7 days (as seconds = 7 x 24 x 60 x 60)
text: 604800
# json UNIT3D 6.5.0
title_filename:
selector: "files[0].name"
optional: true
title:
text: "{{ if and (.Config.single_file_release_use_filename) (eq .Result.files \"1\") (.Result.title_filename) }}{{ .Result.title_filename }}{{ else }}{{ .Result.title_optional }}{{ end }}"
filters:
- name: re_replace
args: ["\\.", " "]
- name: re_replace # Stagione X --> S0X
args: ["(?i)\\bStagion[ei]\\s?(\\d{1})\\b|\\bSeason'?s?\\s?(\\d{1})\\b", "S0$1$2"]
- name: re_replace # Stagione XX --> SXX
args: ["(?i)\\bStagion[ei]\\s?(\\d{2,})\\b|\\bSeason'?s?\\s?(\\d{2,})\\b", "S$1$2"]
# json UNIT3D 8.0.2
15 changes: 11 additions & 4 deletions definitions/v9/lst.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,10 @@ settings:
type: checkbox
label: Search freeleech only
default: false
- name: single_file_release_use_filename
type: checkbox
label: Use filename as title for single file releases
default: true
- name: sort
type: select
label: Sort requested from site
Expand Down Expand Up @@ -104,7 +108,7 @@ search:
fields:
category:
selector: category_id
title:
title_optional:
selector: name
details:
selector: details_link
Expand All @@ -126,8 +130,6 @@ search:
genre:
selector: meta.genres
filters:
- name: re_replace
args: ["(?i)^None$", ""]
- name: re_replace
args: ["(?i)(Science Fiction)", "Science_Fiction"]
- name: re_replace
Expand Down Expand Up @@ -176,4 +178,9 @@ search:
minimumseedtime:
# 7 days (as seconds = 7 x 24 x 60 x 60)
text: 604800
# json UNIT3D 7.1.2
title_filename:
selector: "files[0].name"
optional: true
title:
text: "{{ if and (.Config.single_file_release_use_filename) (eq .Result.files \"1\") (.Result.title_filename) }}{{ .Result.title_filename }}{{ else }}{{ .Result.title_optional }}{{ end }}"
# json UNIT3D 8.0.2
2 changes: 1 addition & 1 deletion definitions/v9/onlyencodes-api.yml
Original file line number Diff line number Diff line change
Expand Up @@ -175,4 +175,4 @@ search:
optional: true
title:
text: "{{ if and (.Config.single_file_release_use_filename) (eq .Result.files \"1\") (.Result.title_filename) }}{{ .Result.title_filename }}{{ else }}{{ .Result.title_optional }}{{ end }}"
# json UNIT3D 8.0.1
# json UNIT3D 8.0.2
2 changes: 1 addition & 1 deletion definitions/v9/ubits.yml
Original file line number Diff line number Diff line change
Expand Up @@ -199,4 +199,4 @@ search:
filters:
- name: prepend
args: "{{ .Result.description_verified }} "
# NexusPHP v1.8.8 2023-09-25
# NexusPHP v1.8.9 2024-03-16

0 comments on commit cd1ddea

Please sign in to comment.