Automatic Collection Creation (#1768)
* Made the unread badges slightly smaller and rounded on top right. * A bit more tweaks on the not read badges. Looking really nice now. * In order to start the work on managing collections from ScanLoop, I needed to refactor collection apis into the service layer and add unit tests. Removed ToUpper Normalization for new tags. * Hooked up ability to auto generate collections from SeriesGroup metadata tag.
This commit is contained in:
parent
91a2a6854f
commit
1da27f085c
26 changed files with 2222 additions and 121 deletions
|
|
@ -73,6 +73,10 @@ public class Chapter : IEntityDate, IHasReadTimeEstimate
|
|||
/// Number of the Total Count (progress the Series is complete)
|
||||
/// </summary>
|
||||
public int Count { get; set; } = 0;
|
||||
/// <summary>
|
||||
/// SeriesGroup tag in ComicInfo
|
||||
/// </summary>
|
||||
public string SeriesGroup { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// Total Word count of all chapters in this chapter.
|
||||
|
|
|
|||
|
|
@ -27,6 +27,10 @@ public class Library : IEntityDate
|
|||
/// Include library series in Search
|
||||
/// </summary>
|
||||
public bool IncludeInSearch { get; set; } = true;
|
||||
/// <summary>
|
||||
/// Should this library create and manage collections from Metadata
|
||||
/// </summary>
|
||||
public bool ManageCollections { get; set; } = true;
|
||||
public DateTime Created { get; set; }
|
||||
public DateTime LastModified { get; set; }
|
||||
/// <summary>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue