mirror of
https://github.com/jellyfin/jellyfin-kodi.git
synced 2025-06-05 07:46:12 +00:00
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:
parent
8f8f39bb75
commit
cdf78de132
7 changed files with 128 additions and 7 deletions
|
@ -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":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue