Awesome skin! I'm still a noob to Kodi, but I was wondering if it's possible to change the runtime into hh:mm? I was able to change it in the movie info screen (installed skin helper), but not bottom part (it's called the furniture, right?)
DialogVideoinfo.xml
<label fallback="19055">$INFO[ListItem.Duration,, $LOCALIZE[12391]]</label>
changed to
<label fallback="19055">$INFO[Window(Home).Property(SkinHelper.ListItemDuration.Hours)]h $INFO[Window(Home).Property(SkinHelper.ListItemDuration.Minutes)]min</label>
script-extended info-dialogvideoinfo.xml
<label fallback="19055">$INFO[Window.Property(movie.duration),, $LOCALIZE[12391]]</label>
changed to
<label fallback="19055">$INFO[Window(Home).Property(SkinHelper.ListItemDuration.Hours)]h $INFO[Window(Home).Property(SkinHelper.ListItemDuration.Minutes)]min</label>
I tried to modify Includes Furniture.xml, but the runtime disappeared, so I obviously did something wrong. Couldn't apply the same code from above. Any pointers?
Code:
<visible>!IsEmpty([Window(Home).Property(SkinHelper.ListItemDuration.Hours)]h $INFO[Window(Home).Property(SkinHelper.ListItemDuration.Minutes)]min) + [Control.IsVisible(500) | Control.IsVisible(53) | Control.IsVisible(52) | Control.IsVisible(55)]</visible>
</control>
<control type="label">
<width>auto</width>
<centertop>50%</centertop>
<height>64</height>
<align>left</align>
<aligny>center</aligny>
<label>$INFO[Window(Home).Property(SkinHelper.ListItemDuration.Hours)]h $INFO[Window(Home).Property(SkinHelper.ListItemDuration.Minutes)]min,, $LOCALIZE[31102] ]</label>
<font>Flag</font>
<textcolor>Dark1</textcolor>
<visible>!IsEmpty([Window(Home).Property(SkinHelper.ListItemDuration.Hours)]h $INFO[Window(Home).Property(SkinHelper.ListItemDuration.Minutes)]min) + [Control.IsVisible(500) | Control.IsVisible(53) | Control.IsVisible(52) | Control.IsVisible(55)]</visible>
</control>