2013-11-27, 01:33
@paul Salem - I literally had just added the fix for plugins to git as you posted. Thanks for the System.IdleTime tip, it does make navigation much smoother - however, it does make the extrafanart loading less smooth. Edit: System.IdleTime by itself defeats the purpose of extrafanart in seasons or episode views because each time you scroll it resets the slideshow of extrafanart (because the system is no longer idle) -- fixed it with a condition of
Also, System.IdleTime caused occasional issues when changing to a different show / movie and the previous extrafanart briefly flashing up before it faded to the next fanart. Fixed this with a delayed visible fade to give it time to change before showing.
@ferent - if you are talking about song info in "panel list" view then it should be fixed in the latest git. I've still got to do an actual song info screen - at the moment it just reroutes to the album info screen (music section in general needs a little bit of work). I see what you are saying about favourites... this one has me stumped - I can't think of a way to fix this without completely changing the style of the favourites context menu. I'll look into it.
Code:
[System.IdleTime(1.4) | Container.Content(episodes) | Container.Content(seasons) | Container.Content(songs)]
Also, System.IdleTime caused occasional issues when changing to a different show / movie and the previous extrafanart briefly flashing up before it faded to the next fanart. Fixed this with a delayed visible fade to give it time to change before showing.
Code:
<animation type="Visible">
<effect type="slide" start="0" end="0" time="1400"/>
<effect type="fade" start="0" end="100" delay="800" time="600"/>
</animation>
@ferent - if you are talking about song info in "panel list" view then it should be fixed in the latest git. I've still got to do an actual song info screen - at the moment it just reroutes to the album info screen (music section in general needs a little bit of work). I see what you are saying about favourites... this one has me stumped - I can't think of a way to fix this without completely changing the style of the favourites context menu. I'll look into it.