1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-24 16:58:51 -05:00

* update data files

This commit is contained in:
Reinhard Pointner 2013-05-17 18:48:31 +00:00
parent 19bc3cbe2e
commit 19738c3d53
5 changed files with 8 additions and 3 deletions

View File

@ -223,6 +223,7 @@ SYNCED
SYNCFIX SYNCFIX
TC TC
theatrical.cut theatrical.cut
to.be.sorted
ToSort ToSort
TPB TPB
TRUEFRENCH TRUEFRENCH

View File

@ -293,6 +293,7 @@ CLDD
CLERKS CLERKS
CLUE CLUE
CME CME
CMS
cNLDVDR cNLDVDR
cntc cntc
Coalgirls Coalgirls
@ -1014,6 +1015,7 @@ NicoNico
NicoNicoDaoga NicoNicoDaoga
NiF NiF
NightHawk NightHawk
niizk
NikonXP NikonXP
Nile Nile
NiX NiX

View File

@ -1,7 +1,9 @@
BSG Battlestar Galactica
epl English Premier League epl English Premier League
HIMYM How I Met your Mother HIMYM How I Met your Mother
Hml8p Homeland Hml8p Homeland
hoc House of Cards hoc House of Cards
law.and.order.svu Law & Order: Special Victims Unit
M.A.S.H M*A*S*H M.A.S.H M*A*S*H
MASH M*A*S*H MASH M*A*S*H
NCIS.LA NCIS: Los Angeles NCIS.LA NCIS: Los Angeles

View File

@ -30,7 +30,7 @@ def gmail = tryQuietly{ gmail.split(':', 2) }
def pushover = tryQuietly{ pushover.toString() } def pushover = tryQuietly{ pushover.toString() }
// user-defined filters // user-defined filters
def minFileSize = tryQuietly{ minFileSize.toLong() }; if (minFileSize == null) { minFileSize = 104857600 }; // files smaller than 100 MB will be considered clutter by default def minFileSize = tryQuietly{ minFileSize.toLong() }; if (minFileSize == null) { minFileSize = 0 };
// series/anime/movie format expressions // series/anime/movie format expressions
def format = [ def format = [

View File

@ -39,8 +39,8 @@ try {
// xattr write, read and verify // xattr write, read and verify
def xattr = new net.sourceforge.filebot.media.MetaAttributes(f) def xattr = new net.sourceforge.filebot.media.MetaAttributes(f)
def payload = new Date() def payload = new Date()
xattr.setMetaData(payload) xattr.setObject(payload)
assert xattr.getMetaData() == payload assert xattr.getObject() == payload
println 'OK' println 'OK'
} else { } else {
println 'DISABLED' println 'DISABLED'