Kodi Community Forum

Full Version: Add Year to Movies "Info2"
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
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
Thank you very much....