mirror of
https://github.com/Jackett/Jackett
synced 2025-03-10 14:14:25 +00:00
parent
1811ddbd2c
commit
43622f8f59
2 changed files with 10 additions and 2 deletions
|
@ -145,6 +145,10 @@ settings:
|
||||||
type: checkbox
|
type: checkbox
|
||||||
label: Normalize release names by moving year after the title
|
label: Normalize release names by moving year after the title
|
||||||
default: false
|
default: false
|
||||||
|
- name: strip_season
|
||||||
|
type: checkbox
|
||||||
|
label: Strip season only (e.g. S01) from searches, as tracker does not support partial matches
|
||||||
|
default: true
|
||||||
- name: enhancedAnime
|
- name: enhancedAnime
|
||||||
type: checkbox
|
type: checkbox
|
||||||
label: Enhance Sonarr compatibility with anime by renaming episodes (xxx > Exxx). Can disturb movies search (e.g. Back To The Future 3 > Back To The Future E3).
|
label: Enhance Sonarr compatibility with anime by renaming episodes (xxx > Exxx). Can disturb movies search (e.g. Back To The Future 3 > Back To The Future E3).
|
||||||
|
@ -353,7 +357,7 @@ search:
|
||||||
args: ["[\\\\\\-\\.\\/!\\s]+", " "]
|
args: ["[\\\\\\-\\.\\/!\\s]+", " "]
|
||||||
# strip season as site does not support partial matches
|
# strip season as site does not support partial matches
|
||||||
- name: re_replace
|
- name: re_replace
|
||||||
args: ["(?i)\\bS\\d{1,3}\\b", ""]
|
args: ["(?i)\\b(S\\d{1,3})\\b", "{{ if .Config.strip_season }}{{ else }}$1{{ end }}"]
|
||||||
- name: trim
|
- name: trim
|
||||||
# put each word in quotations to prevent exact phrase search
|
# put each word in quotations to prevent exact phrase search
|
||||||
- name: re_replace
|
- name: re_replace
|
||||||
|
|
|
@ -137,6 +137,10 @@ settings:
|
||||||
type: checkbox
|
type: checkbox
|
||||||
label: Normalize release names by moving year after the title
|
label: Normalize release names by moving year after the title
|
||||||
default: false
|
default: false
|
||||||
|
- name: strip_season
|
||||||
|
type: checkbox
|
||||||
|
label: Strip season only (e.g. S01) from searches, as tracker does not support partial matches
|
||||||
|
default: true
|
||||||
- name: enhancedAnime
|
- name: enhancedAnime
|
||||||
type: checkbox
|
type: checkbox
|
||||||
label: Enhance Sonarr compatibility with anime by renaming episodes (xxx > Exxx). Can disturb movies search (e.g. Back To The Future 3 > Back To The Future E3).
|
label: Enhance Sonarr compatibility with anime by renaming episodes (xxx > Exxx). Can disturb movies search (e.g. Back To The Future 3 > Back To The Future E3).
|
||||||
|
@ -357,7 +361,7 @@ search:
|
||||||
args: ["[\\\\\\-\\.\\/!\\s]+", " "]
|
args: ["[\\\\\\-\\.\\/!\\s]+", " "]
|
||||||
# strip season as site does not support partial matches
|
# strip season as site does not support partial matches
|
||||||
- name: re_replace
|
- name: re_replace
|
||||||
args: ["(?i)\\bS\\d{1,3}\\b", ""]
|
args: ["(?i)\\b(S\\d{1,3})\\b", "{{ if .Config.strip_season }}{{ else }}$1{{ end }}"]
|
||||||
- name: trim
|
- name: trim
|
||||||
# put each word in quotations to prevent exact phrase search
|
# put each word in quotations to prevent exact phrase search
|
||||||
- name: re_replace
|
- name: re_replace
|
||||||
|
|
Loading…
Add table
Reference in a new issue