Fix sample file issues
@see https://www.filebot.net/forums/viewtopic.php?f=8&t=4785
This commit is contained in:
parent
3415e31a2c
commit
9b7a6041cd
|
@ -351,7 +351,7 @@ public class ReleaseInfo {
|
|||
}
|
||||
|
||||
public Pattern getExcludePattern() throws Exception {
|
||||
return compileWordPattern(excludeBlacklist.get()); // pattern matching any release group name enclosed in separators
|
||||
return compile(or(excludeBlacklist.get()), CASE_INSENSITIVE);
|
||||
}
|
||||
|
||||
private Pattern compileWordPattern(String[] patterns) {
|
||||
|
|
|
@ -5,7 +5,7 @@ pattern.video.source: CAMRip|CAM|PDVD|TS|TELESYNC|PDVD|PTVD|PPVRip|Screener|SCR|
|
|||
pattern.video.tags: (Extended.|Ultimate.)?(Director.?s|Collector.?s|Theatrical|Ultimate|Final|Extended|Rogue|Special|Despecialized).(Cut|Edition|Version)|Extended|Uncensored|Remastered|Unrated|Uncut|IMAX
|
||||
|
||||
# patterns for stereoscopic 3D tags
|
||||
pattern.video.s3d: ((H|HALF|F|FULL)[^\\p{Alnum}]{0,2})?(SBS|TAB|OU)
|
||||
pattern.video.s3d: ((H|HALF|F|FULL)[\\P{Alnum}]{0,2})?(SBS|TAB|OU)
|
||||
|
||||
# patterns for repack tags
|
||||
pattern.video.repack: REPACK|PROPER
|
||||
|
|
Loading…
Reference in New Issue