Kodi Community Forum

Full Version: Issues Cleaning Library
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Has any one else ran into an issue where after telling Kodi to clean the library the next time a TV show is added it will also add already watched tv shows as recently added?

Same thing happened in Helix and is now also happening in Isengard beta.
Library is maintained using mysql. (i've rebuilt the library and it didn't help)
AFAIK, there's no way to exclude watched from recently added. I can recall a PR that will address this though.
that PR is closed
(2015-05-24, 10:55)Martijn Wrote: [ -> ]that PR is closed

Hm.. OK.
make a playlist for recently added,
and exclude watched
http://kodi.wiki/view/Custom_video_nodes (smart playlist based) is another way to replace the old listing.

Custom recentlyaddedmovies.xml filter node example..
Code:
<node order="10" type="filter" visible="Library.HasContent(Movies)">
  <label>20386</label>
  <icon>DefaultRecentlyAddedMovies.png</icon>
  <content>movies</content>
  <rule field="playcount" operator="is">
    <value>0</value>
  </rule>
  <order direction="descending">dateadded</order>
  <limit>25</limit>
</node>