2016-03-03, 23:01
(2016-03-03, 22:43)WolvesPhil Wrote:(2016-03-03, 00:43)bsoriano Wrote:(2016-03-02, 23:52)WolvesPhil Wrote: I know you put the info in the first few posts but I am unable to find out how to configure smart playlists in the new version. We use it for recently added shows in a certain playlist etc
WolvesPhil,
Go into Skin Settings, Customizers, Set up the Aeon MadNox Main Menu, and add your playlist as a menu item, or, if that is what you are looking for, as a widget for one of your menu items. Please look at this post from schimi that shows all of the options and explains them: http://forum.kodi.tv/showthread.php?tid=...pid2040817.
Please let me know if you still need help after looking at that. Thanks.
Regards,
Bart
Yes what I would like is to show as a widget with the recent unwatched added movies or episodes to that playlist.
I am able to follow your instructions and set the playlist up a as widget however this appears to show all items in the playlist alphabetically rather than recently added unwatched items.
I can't find the smartplaylist manager by following schimi's post - copied below
Most of the Settings here are for the Optics and Colors u want - important settings here is to set the paths to the wanted icons in "Customize Icons"
- under General Settings u can configure the Playlists in "Smartplaylist Manager" - if u dont see your playlists here, u dont have the Addons needed
(script.randomandlastitems and script.playlists) u should see your playlists directly > no need to search for them when u have them inside your playlistfolder
- In Main menu item customizer u configure your main menu - u can choose what items u want, widgets, backrounds etc...
Thanks
Phil
Phil,
In the RC1 version of MadNox, we don't have a smartplaylist manager anymore, it is actually not needed anymore.
To do what you want, create a playlist and include playcount = 0 as a rule, and order it by dateadded descending. You can also limit it to a certain number of items. Then, use that playlist as a widget.
Since I cannot add files here, here follow the contents my Recent Top 250 playlist, which shows the 25 most recent unwatched movies in my IMDB Top 250 playlist:
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
<name>RecentTop250</name>
<match>all</match>
<rule field="playlist" operator="is">
<value>IMDB Top 250</value>
</rule>
<rule field="playcount" operator="is">
<value>0</value>
</rule>
<limit>25</limit>
<order direction="descending">dateadded</order>
</smartplaylist>
Hopefully that will be useful to you.
Regards,
Bart