Guest - Testers are needed for the reworked CDateTime core component. See... https://forum.kodi.tv/showthread.php?tid=378981 (September 29) x
v17 Library Video Node - RecentlyAdded and InProgress
#1
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
Reply
#2
And how do you make it work by manually editing it?

I've the same problem here...
Reply
#3
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> 
Reply
#4
(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
|Banned add-ons (wiki)|Forum rules (wiki)|VPN policy (wiki)|First time user (wiki)|FAQs (wiki) Troubleshooting (wiki)|Add-ons (wiki)|Free content (wiki)|Debug Log (wiki)|

Kodi Blog Posts
Reply
#5
Hi DarrenHill

Maybe this addon has evolved

But that was my problem (see first post)

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

Logout Mark Read Team Forum Stats Members Help
Library Video Node - RecentlyAdded and InProgress0