(2017-03-30, 21:01)adun79 Wrote: Does it work with in progress movies? If the widget doesn't show up yet, start a movie, skip past 3 min mar and restart Kodi
Also, what version of Estuary have you modified. All I did was put that code in the latest master, didn't change anything else
1. i'm using kodi 17.0 git-20170210-3543708 2/11/2017
2. background fanart works fine for all of the stock / built in kodi widgets as follows (with or without content conditions defined):
<include content="WidgetListPoster">
<param name="content_path" value="videodb://movies/sets/"/>
<param name="widget_target" value="videos"/>
<param name="sortby" value="random"/>
<param name="list_id" value="5600"/>
</include>
<include content="WidgetListPoster" condition="Library.HasContent(movies)">
<param name="content_path" value="special://skin/playlists/inprogress_movies.xsp"/>
<param name="widget_header" value="Recently "/>
<param name="widget_target" value="videos"/>
<param name="list_id" value="5100"/>
</include>
<include content="WidgetListPoster" condition="Library.HasContent(movies)">
<param name="content_path" value="special://skin/playlists/random_movies.xsp"/>
<param name="widget_header" value="Suggestions "/>
<param name="widget_target" value="videos"/>
<param name="list_id" value="5400"/>
</include>
<include content="WidgetListPoster" condition="Library.HasContent(movies)">
<param name="content_path" value="special://skin/playlists/recent_unwatched_movies.xsp"/>
<param name="widget_header" value="Recently Added "/>
<param name="widget_target" value="videos"/>
<param name="list_id" value="5200"/>
</include>
<include content="WidgetListPoster" condition="Library.HasContent(movies)">
<param name="content_path" value="special://skin/playlists/unwatched_movies.xsp"/>
<param name="widget_header" value="Unwatched "/>
<param name="widget_target" value="videos"/>
<param name="list_id" value="5300"/>
</include>
3. all of the custom widget rows i've set up display and function fine given i didn't set up conditions to prevent them from displaying until certain criteria is met, background fanart just doesn't display when the movie poster is focused.... as shown in my previous post, i'm using the following custom widget categories (rows):
family movies
science fiction
comedy
adventure
all movies
and i'm using just one kodi stock / built in widget as follows (which displays background fanart just fine):
movie sets (which displays background art fine)
and i've commented out all other kodi stock / built in widgets (so they don't display / function) as follows, they all display background fanart just fine when activated:
in progress
random
recent unwatched
unwatched
4. if i play a movie from a custom widget, let it run for a while, background art still doesn't work.