jhonny30 Wrote:So you think there is nothing to do about it?
No, you can alter the tvdb.xml to allow it to pick up the season thumbs. Problem is the tvdb.xml file will be in different positions depending on whether you're using windows, mac or linux and where you've installed xbmc. On windows it should be in 'addons/metadata.tvdb.com' within the xbmc install folder or on Windows Xp: Documents and Settings\[user]\Application Data\XBMC\ or on Vista/Windows 7: Users\[user]\AppData\Roaming\XBMC\ or in all of those locations. As to where it'll be on a mac or linux I have no idea.
Once you've found the file you need to open it and locate the following lines (should be about halfway through the file):
Code:
<RegExp input="$$5" output="<thumb type="season" season="\2">http://thetvdb.com/banners/\1</thumb>" dest="4+">
<expression repeat="yes"><BannerPath>([^<]*)</BannerPath>[^<]*<BannerType>season</BannerType>[^<]*<BannerType2>season</BannerType2>[^<]*<Language>$INFO[language]</Language>[^<]*<Season>([0-9]+)</Season></expression>
</RegExp>
<RegExp input="$$5" output="<thumb type="season" season="\2">http://thetvdb.com/banners/\1</thumb>" dest="4+">
<expression repeat="yes"><BannerPath>([^<]*)</BannerPath>[^<]*<BannerType>season</BannerType>[^<]*<BannerType2>season</BannerType2>[^<]*<Language>[a-z][^$INFO[language]]*</Language>[^<]*<Season>([0-9]+)</Season></expression>
</RegExp>
<RegExp input="$$5" output="<thumb type="season" season="\2">http://thetvdb.com/banners/\1</thumb>" dest="4+">
<expression repeat="yes"><BannerPath>([^<]*)</BannerPath>[^<]*<BannerType>season</BannerType>[^<]*<BannerType2>seasonwide</BannerType2>[^<]*<Language>$INFO[language]</Language>[^<]*<Season>([0-9]+)</Season></expression>
</RegExp>
<RegExp input="$$5" output="<thumb type="season" season="\2">http://thetvdb.com/banners/\1</thumb>" dest="4+">
<expression repeat="yes"><BannerPath>([^<]*)</BannerPath>[^<]*<BannerType>season</BannerType>[^<]*<BannerType2>seasonwide</BannerType2>[^<]*<Language>[a-z][^$INFO[language]]*</Language>[^<]*<Season>([0-9]+)</Season></expression>
</RegExp>
And change them to:
Code:
<RegExp input="$$5" output="<thumb type="season" season="\2">http://thetvdb.com/banners/\1</thumb>" dest="4+">
<expression repeat="yes"><BannerPath>([^<]*)</BannerPath>[^<]*<BannerType>season</BannerType>[^<]*<BannerType2>season</BannerType2>[^<]*<Language>$INFO[language]</Language>[^<]*<Rating>[^<]*</Rating>[^<]*<RatingCount>[^<]*</RatingCount>[^<]*<Season>([0-9]+)</Season></expression>
</RegExp>
<RegExp input="$$5" output="<thumb type="season" season="\2">http://thetvdb.com/banners/\1</thumb>" dest="4+">
<expression repeat="yes"><BannerPath>([^<]*)</BannerPath>[^<]*<BannerType>season</BannerType>[^<]*<BannerType2>season</BannerType2>[^<]*<Language>[a-z][^$INFO[language]]*</Language>[^<]*<Rating>[^<]*</Rating>[^<]*<RatingCount>[^<]*</RatingCount>[^<]*<Season>([0-9]+)</Season></expression>
</RegExp>
<RegExp input="$$5" output="<thumb type="season" season="\2">http://thetvdb.com/banners/\1</thumb>" dest="4+">
<expression repeat="yes"><BannerPath>([^<]*)</BannerPath>[^<]*<BannerType>season</BannerType>[^<]*<BannerType2>seasonwide</BannerType2>[^<]*<Language>$INFO[language]</Language>[^<]*<Rating>[^<]*</Rating>[^<]*<RatingCount>[^<]*</RatingCount>[^<]*<Season>([0-9]+)</Season></expression>
</RegExp>
<RegExp input="$$5" output="<thumb type="season" season="\2">http://thetvdb.com/banners/\1</thumb>" dest="4+">
<expression repeat="yes"><BannerPath>([^<]*)</BannerPath>[^<]*<BannerType>season</BannerType>[^<]*<BannerType2>seasonwide</BannerType2>[^<]*<Language>[a-z][^$INFO[language]]*</Language>[^<]*<Rating>[^<]*</Rating>[^<]*<RatingCount>[^<]*</RatingCount>[^<]*<Season>([0-9]+)</Season></expression>
</RegExp>