Video Node
#1
I have a video node on the main menu called comics it's content is set to TV Shows with Local info.
As info on the wiki says I have copied C:\Program Files\Kodi\system\library to %appdata%\Kodi\userdata\library.
I have created an .xml file which is this:-
xml:
<?xml version='1.0' encoding='UTF-8'?>
<node order="30" type="filter" visible="visible">
    <label>Comics</label>
    <content>TV Shows</content>
    <match>all</match>
    <icon>DefaultCOMICS.png</icon>
    <rule field="path" operator="doesnotcontain">
        <value>TV</value>
    </rule>
    <rule field="path" operator="contains">
        <value>COMICS</value>
    </rule>
    <limit>100000</limit>
</node>

Is what I have put here correct <icon>DefaultCOMICS.png</icon> . Does Kodi create an image of whatever you call something?
What should I  do with the file now.Should I create a folder called comics like so \userdata\library\video\comics, if so will I need to have a index.xml in it.
index.xml would be like this:-
xml:

<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<node order="1" visible="Library.HasContent(TV Shows)">
<label>?</label>
<icon>DefaultComics.png</icon>
</node>
I not sure about:-
 "Library.HasContent(TV Shows)"> I'm guessing that it would be TV Shows as that is what I have set the content to.
<label>?</label>  Would I have to add COMICS to the strings.po file and enter the number in here
I'm assuming <icon>DefaultComics.png</icon>  will be whatever the answer is to above.
Reply

Logout Mark Read Team Forum Stats Members Help
Video Node0