Sorting of Playlist in Widgets ?
#1
Hi

I was wondering if it is possible to arrange the Playlist Widgets by last added ?

And also i was wondering it is possible to hide the watched movies from the playlist widgets ?

Thanks
Reply
#2
the best way for solve this, is create smarplaylist, with recents first and don´t show watched item via recents widget, include smarplaylist main menu (show off in customize main menu for this item), now you have widget available for recents and don´t watch movies item for use with Movies item in main menu.

Image

example:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>recents</name>
    <match>all</match>
    <rule field="playcount" operator="is">
        <value>0</value>
    </rule>
    <group>none</group>
    <limit>35</limit>
    <order direction="descending">dateadded</order>
</smartplaylist>

Info: Aeon MQ6, MarcosQui prefer use resource native kodi for show all items in library at home via recents widget, don´t use any script more for recents widget. Have many requests for don´t limit recents 12 items equal happen MQ5. Native widget now show all items in library with status watched or not on cover.

MQ7 use script for recents again..
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply
#3
Nope , not working , the Smartlist is not displayed by Date last Added :

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>Kids</name>
    <match>one</match>
    <rule field="genre" operator="is">
        <value>Animation</value>
        <value>Familie</value>
        <value>Family</value>
        <value>Short</value>
        <value>Sport</value>
        <value>Sport Film</value>
        <value>Sports Film</value>
    </rule>
    <rule field="path" operator="contains">
        <value>smb://DISKSTATION/Kids/</value>
    </rule>
    <rule field="path" operator="contains">
        <value>smb://THECUS/Bluray_Kids/</value>
    </rule>
    <limit>50</limit>
    <order direction="descending">dateadded</order>
</smartplaylist>
Reply
#4
@DrPepper, try change operator path of "contains" for "begin with"...
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply
#5
the look changed , but still not last added first ...
Reply
#6
Try change match "one" for "all of the rules"
MediaBrazil forum Website - Youtube Channel
MQ9-1.6.0.29 - 09.15.2023 - Aeon MQ Skin Team
MarcosQui Website Donate and support us.
Reply

Logout Mark Read Team Forum Stats Members Help
Sorting of Playlist in Widgets ?0