Kodi Community Forum

Full Version: Looking to hide TV series based on "all watched" - possible??
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I'd like to get a smart playlist that only showed TV series with unwatched episodes.

I don't want to turn on hide watched globally and I want the watched items to be shown as well, only hide the shows where ALL are watched.

So if episode count = watched count, hide whole series.
If episode count > watched count, show whole series.

I've got
Code:
<hideemptyseries>true</hideemptyseries>
to hide empty.

Idea is, this playlist will only show series where there are new episodes but all the content, watched or not.

Any clues?

Thanks.
IIRC the iswatched field can be used in a tvshow smartplaylist?
Thanks for the pointer.

The option isn't available in the UI so looked at my other playlists and tried these:

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
    <name>CurrentTV</name>
    <match>all</match>
    <rule field="iswatched" operator="is">false</rule>
</smartplaylist>

and

Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="tvshows">
    <name>CurrentTV</name>
    <match>all</match>
    <rule field="iswatched" operator="false"></rule>
</smartplaylist>

That value isn't in the wiki and the only google turns up this thread!

What should be the correct syntax?
If it's not in the UI then it's not what you want. What is in the UI?