My TVSeries Custom View Last 90 days (1 Viewer)

Charlie TV

MP Donator
  • Premium Supporter
  • February 22, 2014
    81
    27
    Home Country
    United Kingdom United Kingdom
    Hi

    I'm trying to create a view that matches the ALL standard view but shows only episodes added in the last 90 days retaining the format Series/Episode layout.

    I created a view with this config in the database;
    series<;><;><;><nextStep>season<;><;><Season.seasonIndex>;asc<;><nextStep>episode<;><Episode.FileDateCreated>;>=;<today-90><;><Episode.EpisodeIndex>;asc<;>

    But it didnt work, is it possible to create this custom view?

    Cheers
     

    RoChess

    Extension Developer
  • Premium Supporter
  • March 10, 2006
    4,434
    1,897
    The RecentlyAdded view is:

    Code:
    episode<;><Episode.FileDateCreated>;>=;<today-7><;><Episode.FileDateCreated>;desc<;>

    The All view is:

    Code:
    series<;><;><;><nextStep>season<;><;><Season.seasonIndex>;asc<;><nextStep>episode<;><;><Episode.EpisodeIndex>;asc<;>

    So I would try it first as:

    Code:
    series<;><Episode.FileDateCreated>;>=;<today-90><;><;><nextStep>season<;><;><Season.seasonIndex>;asc<;><nextStep>episode<;><;><Episode.EpisodeIndex>;asc<;>
     

    Users who are viewing this thread

    Top Bottom