Hi, first off thanks for the offer!
Anime series are going to be a bit of a problem to build into the current architecture of ted I'm afraid. When we started ted we just made it work and didn't really thought of all the future implementations that could be done.
At this moment there is a TedSerie, which is your normal show (like Lost), and there is a TedDailySerie (The Daily Show). You would hope that you could just add a TedAnimeSerie, implement the needed functions and be done with it. Unfortunately, no
This is mainly due to the fact that the TedParser is a real big mess. If you would look at the code there you will see a lot of "if (serie.isDaily) do this else that;" or implicit casts from a TedSerie to a TedDailySerie, etc. You would therefore have to hack the anime series into this already barely hanging together piece of code.
We therefore have decided that for the next release after the upcoming one to go back to the drawing board and
redesign this part of the code. This time keeping into account that you may want to have a
seperate log per show and
anime shows and what have you more.
So for now I wouldn't start on the implementation of anime shows if I were you as that implementation probably wouldn't end up in any released version of ted. But you're of course still welcome to help us with this task it'll only take some more time. If you've looked at the code and can come up with some architecture suggestions we'll certainly take them into account. And you can of course always help with the implementation of the new architecture!
I hope I've not demotivated you too much with this story
If you still want to help take a look at the mentioned pieces in the code to get a bit of a feeling what is going on there.