Add sorting options for content in configuration and update sorting logic

This commit is contained in:
CodeDevMLH
2026-02-09 01:30:28 +01:00
parent 2030538acc
commit 9510ae6ba7
3 changed files with 121 additions and 11 deletions

View File

@@ -35,5 +35,7 @@ namespace Jellyfin.Plugin.MediaBarEnhanced.Configuration
public bool EnableSeasonalContent { get; set; } = false;
public bool IsEnabled { get; set; } = true;
public bool EnableClientSideSettings { get; set; } = false;
public string SortBy { get; set; } = "Random";
public string SortOrder { get; set; } = "Ascending";
}
}