Kodi Community Forum
Add Year to Movies "Info2" - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Confluence (https://forum.kodi.tv/forumdisplay.php?fid=125)
+---- Thread: Add Year to Movies "Info2" (/showthread.php?tid=119640)



Add Year to Movies "Info2" - Undrsiege - 2012-01-11

How would I go about changing the Rating of the movie to the year the movie was release while in Media Info2 View.

Thank You


- mad-max - 2012-01-11

Assuming your looking for this:

Image

You need to open ViewsVideoLibrary.xml in 720p folder of the skin and change line 791 and 860 from "ListItem.Label2" to ListItem.Year...

First one should look like this and second similar:

Code:
<control type="label">
    <posx>510</posx>
    <posy>0</posy>
    <width>500</width>
    <height>40</height>
    <font>font12</font>
    <textcolor>grey2</textcolor>
    <selectedcolor>selected</selectedcolor>
    <align>right</align>
    <aligny>center</aligny>
    <label>$INFO[ListItem.Year]</label>
    <visible>Window.IsVisible(Videos)</visible>
    <animation effect="slide" start="0,0" end="40,0" delay="0" time="0" condition="![Container.Content(Movies) | Container.Content(Episodes) | Container.Content(MusicVideos)]">conditional</animation>
</control>

cheers,
mad-max


- Undrsiege - 2012-01-11

Thank you very much....