added support for kodi texturecache:

- setting in addon settings to turn on the cache feature (now for testing, maybe hidden later)
- for all new items the poster and the fanart image will be cached automatically (when setting is on)
- added a option to the plugin root options to perform full cache fill which will pull every single image to the cache.
This commit is contained in:
Marcel van der Veldt 2015-06-06 00:11:24 +02:00
parent 8f8f39bb75
commit cdf78de132
7 changed files with 128 additions and 7 deletions

View file

@ -47,6 +47,10 @@ elif mode == "settings":
elif mode == "manualsync":
from LibrarySync import LibrarySync
LibrarySync().FullLibrarySync(True)
elif mode == "texturecache":
from TextureCache import TextureCache
TextureCache().FullTextureCacheSync()
##### BROWSE EMBY CHANNELS ROOT #####
elif mode == "channels":