* update blacklist
This commit is contained in:
parent
5c705427be
commit
32d4e4911e
|
@ -192,7 +192,7 @@ tvdb.values().each{
|
|||
}
|
||||
|
||||
def addSeriesAlias = { from, to ->
|
||||
def se = thetvdb_index.find{ from == it[1] }
|
||||
def se = thetvdb_index.find{ from == it[1] && !it.contains(to) }
|
||||
if (se == null) throw new Exception("Unabled to find series '${from}'")
|
||||
thetvdb_index << [se[0], to]
|
||||
}
|
||||
|
@ -233,7 +233,7 @@ def anidb = new net.sourceforge.filebot.web.AnidbClient('filebot', 4).getAnimeTi
|
|||
def anidb_index = anidb.findResults{
|
||||
def row = []
|
||||
row += it.getAnimeId().pad(5)
|
||||
row += it.effectiveNames*.replaceAll(/\s+/, ' ')*.replaceAll(/['`´‘’ʻ]+/, /'/)*.trim().unique()
|
||||
row += it.effectiveNames*.replaceAll(/\s+/, ' ')*.replaceAll(/['`´‘’ʻ]+/, /'/)*.trim().unique{ it.toLowerCase() }
|
||||
return row
|
||||
}
|
||||
|
||||
|
|
|
@ -16,4 +16,5 @@ haywardb;2013-08-08;Wow, thank you so much for this program. I had a large colle
|
|||
Raydan;2013-09-08;I can really recommend using filebot for sorting, moving, deleting, subtitle searching... I just started the script once... and it was quite mindblowing to be honest.
|
||||
Nitish Kumar;2013-09-21;FileBot is such an amazing piece of work. Been using it for TV Shows renaming but today tried over movies as well. Big time success!
|
||||
mitchfranklin;2013-11-17;Absolutely brilliant application. Does everything so smoothly!
|
||||
Alexander Walter;2013-12-12;Loving FileBot. I only wish I had discovered it sooner. Thank you for saving me so much time.
|
||||
Alexander Walter;2013-12-12;Loving FileBot. I only wish I had discovered it sooner. Thank you for saving me so much time.
|
||||
Saul Chernick;2013-12-25;This is an amazing, amazing open-source project and deserves much success.
|
||||
|
|
|
|
@ -52,6 +52,7 @@
|
|||
^files$
|
||||
^Film$
|
||||
^Filme$
|
||||
^Filme.neu$
|
||||
^Films$
|
||||
^Finished$
|
||||
^folder$
|
||||
|
|
|
@ -93,5 +93,10 @@
|
|||
"user": "Alexander Walter",
|
||||
"date": "2013-12-12",
|
||||
"text": "Loving FileBot. I only wish I had discovered it sooner. Thank you for saving me so much time."
|
||||
},
|
||||
{
|
||||
"user": "Saul Chernick",
|
||||
"date": "2013-12-25",
|
||||
"text": "This is an amazing, amazing open-source project and deserves much success."
|
||||
}
|
||||
]
|
Loading…
Reference in New Issue