* update data files
This commit is contained in:
parent
19bc3cbe2e
commit
19738c3d53
|
@ -223,6 +223,7 @@ SYNCED
|
|||
SYNCFIX
|
||||
TC
|
||||
theatrical.cut
|
||||
to.be.sorted
|
||||
ToSort
|
||||
TPB
|
||||
TRUEFRENCH
|
||||
|
|
|
@ -293,6 +293,7 @@ CLDD
|
|||
CLERKS
|
||||
CLUE
|
||||
CME
|
||||
CMS
|
||||
cNLDVDR
|
||||
cntc
|
||||
Coalgirls
|
||||
|
@ -1014,6 +1015,7 @@ NicoNico
|
|||
NicoNicoDaoga
|
||||
NiF
|
||||
NightHawk
|
||||
niizk
|
||||
NikonXP
|
||||
Nile
|
||||
NiX
|
||||
|
|
|
@ -1,7 +1,9 @@
|
|||
BSG Battlestar Galactica
|
||||
epl English Premier League
|
||||
HIMYM How I Met your Mother
|
||||
Hml8p Homeland
|
||||
hoc House of Cards
|
||||
law.and.order.svu Law & Order: Special Victims Unit
|
||||
M.A.S.H M*A*S*H
|
||||
MASH M*A*S*H
|
||||
NCIS.LA NCIS: Los Angeles
|
||||
|
|
|
@ -30,7 +30,7 @@ def gmail = tryQuietly{ gmail.split(':', 2) }
|
|||
def pushover = tryQuietly{ pushover.toString() }
|
||||
|
||||
// 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
|
||||
def format = [
|
||||
|
|
|
@ -39,8 +39,8 @@ try {
|
|||
// xattr write, read and verify
|
||||
def xattr = new net.sourceforge.filebot.media.MetaAttributes(f)
|
||||
def payload = new Date()
|
||||
xattr.setMetaData(payload)
|
||||
assert xattr.getMetaData() == payload
|
||||
xattr.setObject(payload)
|
||||
assert xattr.getObject() == payload
|
||||
println 'OK'
|
||||
} else {
|
||||
println 'DISABLED'
|
||||
|
|
Loading…
Reference in New Issue