Kodi Community Forum
v17 Library Video Node - RecentlyAdded and InProgress - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: General Support (https://forum.kodi.tv/forumdisplay.php?fid=111)
+---- Forum: OS independent / Other (https://forum.kodi.tv/forumdisplay.php?fid=228)
+---- Thread: v17 Library Video Node - RecentlyAdded and InProgress (/showthread.php?tid=289281)



Library Video Node - RecentlyAdded and InProgress - gates - 2016-09-02

Hi,

When I created a video node base on "path contains" (maybe other)
RecentlyAdded and InProgress node returns always the full list of show/movie
and doesnt care of the "rule"

example of the automatic generated xml :

PHP Code:
<?xml version='1.0' encoding='UTF-8'?>
<node order="11" type="folder" visible="Library.HasContent(TVShows)">
    <label>20387</label>
    <icon>DefaultRecentlyAddedEpisodes.png</icon>
    <path>videodb://recentlyaddedepisodes/</path>
    <rule field="path" operator="contains">
        <value>smb://NAS/video/Mangas/</value>
    </rule>
</node> 

I know how to make it work by manually editing

But it seems "type folder" + path videodb://recentlyadded* or videodb://inprogresstvshows + rule based on path doesnt work together

best regards


RE: Library Video Node - RecentlyAdded and InProgress - bg_x - 2017-02-02

And how do you make it work by manually editing it?

I've the same problem here...


RE: Library Video Node - RecentlyAdded and InProgress - gates - 2017-06-17

Hi bg_x,

Sorry, i didn't see your post :/

my working node :

PHP Code:
<?xml version='1.0' encoding='UTF-8'?>
<node order="1" type="filter">
    <label>In Progress TvShow</label>
    <icon>DefaultInProgressShows.png</icon>
    <content>tvshows</content>
    <rule field="inprogress" operator="true">
        <value>|NONE|</value>
    </rule>
    <rule field="path" operator="contains">
        <value>smb://NAS/video/Series/</value>
    </rule>
</node> 



RE: Library Video Node - RecentlyAdded and InProgress - DarrenHill - 2017-06-17

(2017-02-02, 23:24)bg_x Wrote: And how do you make it work by manually editing it?

I've the same problem here...

There's also the library nodes editor addon in the official repo which may help, if you're not aware of it


RE: Library Video Node - RecentlyAdded and InProgress - gates - 2017-06-17

Hi DarrenHill

Maybe this addon has evolved

But that was my problem (see first post)

and bg_w has the same probleme


RE: Library Video Node - RecentlyAdded and InProgress - benfolkman - 2018-06-13

Did you guys figure this one out?  I have the same issue.


RE: Library Video Node - RecentlyAdded and InProgress - Ravens28 - 2019-05-10

Still having the same issue if someone has an idea?