Clearing out "Recently Added" TV shows
#1
Is it possible to change what's displayed in "Recently added"? The only things I'd like to find in there are shows I've actually never watched. So if I download back episodes of a series that I've already seen (but wish to archive), I don't want those to show up once I've toggled them as 'watched' and they have the check-mark beside them. Is this somehow doable?
Reply
#2
Currently no, but it is an often requested feature, so maybe in the future.
Reply
#3
can't you just hide watched? or does the Recently Added window not allow that feature?
Reply
#4
This was annoying me too, so I came up with two workarounds that might be of interest to you

1. Increase the number of items in the Recently Added Episodes list (advancedsettings.xml) so that newly scanned back episodes don't push newer ones off the list. Hide watched episodes while viewing.
Code:
<advancedsettings>
    <videolibrary>
        <recentlyaddeditems>500</recentlyaddeditems> <!-- number of recently added items. Defaults to 25 -->
    </videolibrary>
</advancedsettings>

2. Create a playlist that shows the last 500 episodes by airdate. Hide watched episodes while viewing.
Code:
<?xml version="1.0" encoding="UTF-8" standalone="yes" ?>
<smartplaylist type="episodes">
    <name>TV - Latest 500 Episodes by Airdate</name>
    <limit>500</limit>
    <order direction="descending">year</order>
</smartplaylist>
4x R-Pi4b LibreELEC v10 | Aeon Nox: SiLVO | Flirc cases
Storage Synology DS411 | 4 x WD RED 6TB
Software MariaDB 10.4.19 | Filebot | Ember Media Manager
wiki (wiki) | First time user (wiki) | Debug_Log (wiki) | mysql (wiki) | artwork (wiki)
Reply

Logout Mark Read Team Forum Stats Members Help
Clearing out "Recently Added" TV shows0