Kodi Community Forum
Limit for unwatched movies - Printable Version

+- Kodi Community Forum (https://forum.kodi.tv)
+-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33)
+--- Forum: Skins Support (https://forum.kodi.tv/forumdisplay.php?fid=67)
+---- Forum: Aeon Nox: Silvo (https://forum.kodi.tv/forumdisplay.php?fid=142)
+---- Thread: Limit for unwatched movies (/showthread.php?tid=365790)



Limit for unwatched movies - cgi2011 - 2021-12-02

Hello everyone,

i am using two different Kodi instances (Matrix 19.3) on two different devices. I have more than 25 unwatched movies, but Kodi will show me only the "newest" 25.

Does anyone has the same problem or an idea how to fix this? With Kodi 18.x, I haven't had that problem...

Thanks already
cgi


RE: Limit for unwatched movies - Klojum - 2021-12-02

Where is this? AFAIK, there is a limit of 15 on Kodi's home screen.

On the movie listing page, with the all/watched/unwatched filter, the Estuary default is 25, but you can change that a bit via the advancedsettings.xml file.


RE: Limit for unwatched movies - cgi2011 - 2021-12-04

I'm using Aeon Nox Silvo with a submenu that should show all unwatched movies. I thought the function behind the menu is like "show all movies and then filter to all unwatched movies" or something like that.

Thanks for the tip. I'll try to change the advancedsetting.xml on sunday...


RE: Limit for unwatched movies - Klojum - 2021-12-04

My tip was for the default Estuary skin, since you did not mention any other skin in the opening post.
I will move the thread to the Aeon Nox skin subsection.


RE: Limit for unwatched movies - cgi2011 - 2021-12-04

Thank you! I've missed to tell you about the skin. I'm using it for years as default so I didn't think about Estuary....


RE: Limit for unwatched movies - piscator74 - 2024-01-21

So any clue how to set amount of unwatched movies in Aeon Nox?

The following in advancedsettings.xml still keeps the amount set to the default (15).

Code:

    <videolibrary>
        <recentlyaddeditems>50</recentlyaddeditems> <!-- number of recently added items. Defaults to 25 -->
    </videolibrary>



RE: Limit for unwatched movies - piscator74 - 2024-02-05

I finally did find the solution to increase the amount of unwatched movies in Aeon Nox.

If you look in:
* addon_data\script.skinshortcuts\20342.DATA.xml

You see the line
Code:
<action>ActivateWindow(Videos,/storage/.kodi/addons/skin.aeon.nox.silvo/extras/UnwatchedMovies.xsp,return)</action>

If you open the file in:
* /storage/.kodi/addons/skin.aeon.nox.silvo/extras/UnwatchedMovies.xsp

You see:
xml:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="movies">
    <name>Unwatched Movies</name>
    <match>all</match>
    <limit>15</limit>
    <group>none</group>
    <order direction="ascending">random</order>
    <rule field="playcount" operator="is">
        <value>0</value>
    </rule>
</smartplaylist>

And increasing the amount in <limit> solves the problem.


RE: Limit for unwatched movies - mikeSiLVO - 2024-02-09

This would get overridden by a skin update. I suggest making your own smartplaylist and using that instead of the built in ones.


RE: Limit for unwatched movies - cgi2011 - 2024-06-08

Thank you! I didn't think of that. Problem solved for me Smile.