Implemented a system that will remove common sort prefixes. Disabled by default.

This commit is contained in:
Joseph Milazzo 2025-06-29 10:58:40 -05:00
parent e5d949161e
commit 1044c78bd2
16 changed files with 4097 additions and 3 deletions

View file

@ -52,6 +52,10 @@ public class Library : IEntityDate, IHasCoverImage
/// Should Kavita read metadata files from the library
/// </summary>
public bool EnableMetadata { get; set; } = true;
/// <summary>
/// Should Kavita remove sort articles "The" for the sort name
/// </summary>
public bool RemovePrefixForSortName { get; set; } = false;
public DateTime Created { get; set; }