* update clutter patterns
This commit is contained in:
parent
9564e6f770
commit
3d1dbf26e1
|
@ -246,7 +246,7 @@ public class ReleaseInfo {
|
||||||
}
|
}
|
||||||
|
|
||||||
public FileFilter getClutterFileFilter() throws IOException {
|
public FileFilter getClutterFileFilter() throws IOException {
|
||||||
return new ClutterFileFilter(getExcludePattern(), 262144000); // only files smaller than 250 MB may be considered clutter
|
return new ClutterFileFilter(getExcludePattern(), Long.parseLong(getBundle(getClass().getName()).getString("number.clutter.maxfilesize"))); // only files smaller than 250 MB may be considered clutter
|
||||||
}
|
}
|
||||||
|
|
||||||
// fetch release group names online and try to update the data every other day
|
// fetch release group names online and try to update the data every other day
|
||||||
|
|
|
@ -13,6 +13,9 @@ url.query-blacklist: http://filebot.net/data/query-blacklist.txt
|
||||||
# clutter files that will be ignored
|
# clutter files that will be ignored
|
||||||
url.exclude-blacklist: http://filebot.net/data/exclude-blacklist.txt
|
url.exclude-blacklist: http://filebot.net/data/exclude-blacklist.txt
|
||||||
|
|
||||||
|
# only files smaller than 250 MB may be considered clutter
|
||||||
|
number.clutter.maxfilesize: 262144000
|
||||||
|
|
||||||
# list of patterns directly matching files to series names
|
# list of patterns directly matching files to series names
|
||||||
url.series-mappings: http://filebot.net/data/series-mappings.txt
|
url.series-mappings: http://filebot.net/data/series-mappings.txt
|
||||||
|
|
||||||
|
|
|
@ -6,4 +6,6 @@
|
||||||
-s[.]
|
-s[.]
|
||||||
\((sample|trailer)\)
|
\((sample|trailer)\)
|
||||||
\[(sample|trailer)\]
|
\[(sample|trailer)\]
|
||||||
^(sample|trailer)
|
^(sample|trailer)
|
||||||
|
Deleted.and.Extended.Scenes
|
||||||
|
Deleted.Scenes
|
Loading…
Reference in New Issue