File tree Expand file tree Collapse file tree
metadata.tvshows.themoviedb.org.python Expand file tree Collapse file tree Original file line number Diff line number Diff line change 11<?xml version =" 1.0" encoding =" UTF-8" standalone =" yes" ?>
22<addon id =" metadata.tvshows.themoviedb.org.python"
33 name =" TMDb TV Shows"
4- version =" 1.7.5 "
4+ version =" 1.7.6 "
55 provider-name =" Team Kodi" >
66 <requires >
77 <import addon =" xbmc.python" version =" 3.0.0" />
1010 <extension point =" xbmc.metadata.scraper.tvshows" library =" main.py" cachepersistence =" 00:15" />
1111 <extension point =" xbmc.addon.metadata" >
1212 <reuselanguageinvoker >true</reuselanguageinvoker >
13- <news >1.7.5
14- added option to split keyart from posters
15- fixed sorting and trimming so that landscape and keyart aren't deleted
13+ <news >1.7.6
14+ fix for image sort not using separate image language setting
15+ fix for fanarttv landscape art overwriting TMDb landscape art
1616 </news >
1717 <platform >all</platform >
1818 <license >GPL-3.0-or-later</license >
Original file line number Diff line number Diff line change 1+ 1.7.6
2+ fix for image sort not using separate image language setting
3+ fix for fanarttv landscape art overwriting TMDb landscape art
4+
151.7.5
26added option to split keyart from posters
37fixed sorting and trimming so that landscape and keyart aren't deleted
Original file line number Diff line number Diff line change 3636 'clearlogo' : 'clearlogo' ,
3737 'hdclearart' : 'clearart' ,
3838 'clearart' : 'clearart' ,
39- 'tvthumb' : 'landscape ' ,
39+ 'tvthumb' : 'backdrops ' ,
4040 'characterart' : 'characterart' ,
4141 'seasonposter' : 'seasonposters' ,
4242 'seasonbanner' : 'seasonbanner' ,
Original file line number Diff line number Diff line change @@ -391,7 +391,7 @@ def load_fanarttv_art(show_info):
391391 if lang == '' or lang == '00' :
392392 lang = None
393393 filepath = ''
394- if lang is None or lang == source_settings ["LANG_DETAILS " ][0 :2 ] or lang == 'en' :
394+ if lang is None or lang == source_settings ["LANG_IMAGES " ][0 :2 ] or lang == 'en' :
395395 filepath = item .get ('url' )
396396 if filepath :
397397 if tmdb_type .startswith ('season' ):
@@ -522,7 +522,7 @@ def _image_sort(images, image_type):
522522 firstimage = True
523523 for image in images :
524524 image_lang = image .get ('iso_639_1' )
525- if image_lang == source_settings ["LANG_DETAILS " ][0 :2 ]:
525+ if image_lang == source_settings ["LANG_IMAGES " ][0 :2 ]:
526526 lang_pref .append (image )
527527 elif image_lang == 'en' :
528528 lang_en .append (image )
You can’t perform that action at this time.
0 commit comments