PVR recordings - watched icon
#1
I can't see the watched overlay on my PVR recordings (using MythTV).

If I use the context menu I have the option to "mark as unwatched" to XBMC clearly recognises the program as watched.

Is this missing from the skin? If so, can someone point me to the right XML file and I'll see if I can add it.

thanks,

el_P
BBC Live Football Scores: Football scores notifications service.
script.squeezeinfo: shows what's playing on your Logitech Media Server
Reply
#2
Got this working. Will upload the edited code when I get a chance.
BBC Live Football Scores: Football scores notifications service.
script.squeezeinfo: shows what's playing on your Logitech Media Server
Reply
#3
(2013-08-04, 08:59)el_Paraguayo Wrote: Got this working. Will upload the edited code when I get a chance.

thanks! looking forward
Reply
#4
Ok. You need to edit the "ViewsLiveTV.xml" file.

At about line 462 there's a section starting "<include name="ViewLiveTVRecordings">"

Replace the whole view with the code below (use an editor that collapses xml files to see where this section ends). Also, back up the file first in case something goes wrong!

Code:
    <include name="ViewLiveTVRecordings">
    <control type="group">
    <animation effect="fade" reversible="true" time="300">VisibleChange</animation>
    <visible>Control.IsVisible(13)</visible>
    <control type="group">
    <posx>0</posx>
    <posy>30</posy>
    <control type="panel" id="13">
    <posx>165</posx>
    <posy>65</posy>
    <width>950</width>
    <height>360</height>
    <onleft>34</onleft>
    <onright>73</onright>
    <onup>13</onup>
    <ondown>13</ondown>
    <viewtype label="544">list</viewtype>
    <pagecontrol>73</pagecontrol>
    <scrolltime>200</scrolltime>
    <itemlayout height="45" width="950">
    <control type="image">
    <posx>5</posx>
    <posy>3</posy>
    <width>55</width>
    <height>39</height>
    <texture fallback="DefaultAudioCover.png" background="true">$INFO[ListItem.Icon]</texture>
    <bordertexture border="-2">black.png</bordertexture>
    </control>
    <control type="label">
    <posx>70</posx>
    <posy>0</posy>
    <width>800</width>
    <height>45</height>
    <align>left</align>
    <aligny>center</aligny>
    <font>Font_22</font>
    <textcolor>FFFFFAF0</textcolor>
    <label>$INFO[ListItem.Label]</label>
    </control>
    <control type="label">
    <posx>915</posx>
    <posy>0</posy>
    <width>695</width>
    <height>45</height>
    <align>right</align>
    <aligny>center</aligny>
    <font>Font_15</font>
    <textcolor>FFFFFAF0</textcolor>
    <label>$INFO[ListItem.Date]</label>
    </control>
    <control type="image">
    <posx>893</posx>
    <posy></posy>
    <width>80</width>
    <height>37</height>
    <info>ListItem.Overlay</info>
    <visible>!Skin.HasSetting(nooverlays)</visible>
    </control>
    
        </itemlayout>
    <focusedlayout height="45" width="950">
    <control type="image">
    <posx>0</posx>
    <posy>0</posy>
    <width>950</width>
    <height>45</height>
    <texture>settings_button_focus.png</texture>
    </control>
    <control type="image">
    <posx>5</posx>
    <posy>3</posy>
    <width>55</width>
    <height>39</height>
    <texture fallback="DefaultAudioCover.png" background="true">$INFO[ListItem.Icon]</texture>
    <bordertexture border="-2">grey.png</bordertexture>
    </control>
    <control type="label">
    <posx>70</posx>
    <posy>0</posy>
    <width>800</width>
    <height>45</height>
    <align>left</align>
    <aligny>center</aligny>
    <font>Font_22</font>
    <textcolor>E4101010</textcolor>
    <label>$INFO[ListItem.Label]</label>
    </control>
    <control type="label">
    <posx>915</posx>
    <posy>0</posy>
    <width>695</width>
    <height>45</height>
    <align>right</align>
    <aligny>center</aligny>
    <font>Font_22</font>
    <textcolor>E4101010</textcolor>
    <label>$INFO[ListItem.Date]</label>
    </control>
    <control type="image">
    <posx>893</posx>
    <posy></posy>
    <width>80</width>
    <height>37</height>
    <info>ListItem.Overlay</info>
    <visible>!Skin.HasSetting(nooverlays)</visible>
    </control>

    </focusedlayout>
    </control>
    <control type="group">
    <control type="label">
    <posx>360</posx>
    <posy>470</posy>
    <width>840</width>
    <height>35</height>
    <scroll>true</scroll>
    <align>left</align>
    <aligny>center</aligny>
    <font>Font_22</font>
    <textcolor>E4101010</textcolor>
    <label>$INFO[ListItem.Label]</label>
    </control>
    <control type="image">
    <posx>80</posx>
    <posy>470</posy>
    <width>266</width>
    <height>150</height>
    <texture fallback="DefaultAudioCover.png" background="true">$INFO[ListItem.Icon]</texture>
    <aspectratio align="right">keep</aspectratio>
    <bordertexture border="-2">grey.png</bordertexture>
    <fadetime>FanartCrossFadeTime</fadetime>
    </control>
    <control type="textbox">
    <posx>360</posx>
    <posy>510</posy>
    <width>840</width>
    <height>105</height>
    <scroll>true</scroll>
    <align>left</align>
    <label>$VAR[value_plot]</label>
    <font>Font_16</font>
    <textcolor>FFFFFAF0</textcolor>
    <autoscroll delay="8000" time="2000" repeat="8000">!Skin.HasSetting(noallowscroll)</autoscroll>
    </control>
    </control>
    </control>
    <control type="scrollbar" id="73">
    <include>ScrollBar_Vertical</include>
    <posx>1195</posx>
    <posy>108</posy>
    <height>530</height>
    <onleft>13</onleft>
    <onright>34</onright>
    <ondown>73</ondown>
    <onup>73</onup>
    </control>
    </control>
    </include>
BBC Live Football Scores: Football scores notifications service.
script.squeezeinfo: shows what's playing on your Logitech Media Server
Reply

Logout Mark Read Team Forum Stats Members Help
PVR recordings - watched icon0