Kodi Community Forum

Full Version: Library Video Node - RecentlyAdded and InProgress
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
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
And how do you make it work by manually editing it?

I've the same problem here...
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> 
(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
Hi DarrenHill

Maybe this addon has evolved

But that was my problem (see first post)

and bg_w has the same probleme
Did you guys figure this one out?  I have the same issue.
Still having the same issue if someone has an idea?