Add max parental rating and max days recent filters to configuration

This commit is contained in:
CodeDevMLH
2026-03-08 19:19:20 +01:00
parent 05529e5627
commit 8f8e251054
4 changed files with 63 additions and 15 deletions

View File

@@ -15,6 +15,8 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Configuration
public int MaxMovies { get; set; } = 15;
public int MaxTvShows { get; set; } = 15;
public int MaxItems { get; set; } = 500;
public int MaxParentalRating { get; set; } = 0;
public int MaxDaysRecent { get; set; } = 0;
public int PreloadCount { get; set; } = 3;
public int FadeTransitionDuration { get; set; } = 500;
public int MaxPaginationDots { get; set; } = 15;