Kodi Community Forum
v18 No episode names in PVR recordings list - 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: Pellucid (https://forum.kodi.tv/forumdisplay.php?fid=267)
+---- Thread: v18 No episode names in PVR recordings list (/showthread.php?tid=345302)



No episode names in PVR recordings list - delboy711 - 2019-07-10

I am really enjoying using Kodi with Pellucid skin, apart from a small problem with the PVR recordings list for a given programme  where it lists the same programme name on every line, but not the episode name.
I took a look at the skin code, and found an easy fix in MyPVRRecordings.xml

Here is a patch
Code:
--- pellucid/MyPVRRecordings.xml    2019-07-10 16:47:02.967584304 +0100
+++ MyPVRRecordings.xml    2019-07-10 16:46:03.829419554 +0100
@@ -69,7 +69,7 @@
                             <font>itemTitle</font>
                             <textcolor>textActive</textcolor>
                             <shadowcolor></shadowcolor>
-                            <label>$INFO[ListItem.Label]</label>
+                            <label>$INFO[ListItem.Label]$INFO[ListItem.EpisodeName,  - ,]</label>
                         </control>
                         <control type="label">
                             <right>12</right>
@@ -129,7 +129,7 @@
                             <textcolor>textActive</textcolor>
                             <selectedcolor>textActive</selectedcolor>
                             <shadowcolor></shadowcolor>
-                            <label>$INFO[ListItem.Label]</label>
+                            <label>$INFO[ListItem.Label]$INFO[ListItem.EpisodeName,  - ,]</label>
                         </control>
                         <control type="label">
                             <right>12</right>



RE: No episode names in PVR recordings list - thedeadman - 2019-08-14

thanks delboy711, will include in next update.