Progress Overhaul + Profile Page and a LOT more! (#4262)

Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
Co-authored-by: Robbie Davis <robbie@therobbiedavis.com>
This commit is contained in:
Joe Milazzo
2025-12-09 10:00:11 -07:00
committed by GitHub
parent 4ac13f1f25
commit 9f29fa593d
645 changed files with 25585 additions and 4805 deletions
+12 -2
View File
@@ -38,10 +38,15 @@ public class ChapterDto : IHasReadTimeEstimate, IHasCoverImage
/// </summary>
public ICollection<MangaFileDto> Files { get; init; } = default!;
/// <summary>
/// Calculated at API time. Number of pages read for this Chapter for logged in user.
/// Calculated at API time. Number of pages read for this Chapter for logged-in user.
/// </summary>
public int PagesRead { get; set; }
/// <summary>
/// Total number of complete reads
/// </summary>
/// <remarks>Calculated at API-time</remarks>
public int TotalReads { get; set; }
/// <summary>
/// The last time a chapter was read by current authenticated user
/// </summary>
public DateTime LastReadingProgressUtc { get; set; }
@@ -152,7 +157,12 @@ public class ChapterDto : IHasReadTimeEstimate, IHasCoverImage
public bool LocationLocked { get; set; }
/// <inheritdoc cref="API.Entities.Chapter.CoverArtistLocked"/>
public bool CoverArtistLocked { get; set; }
public bool ReleaseYearLocked { get; set; }
/// <inheritdoc cref="API.Entities.Chapter.ReleaseDateLocked"/>
public bool ReleaseDateLocked { get; set; }
/// <inheritdoc cref="API.Entities.Chapter.TitleNameLocked"/>
public bool TitleNameLocked { get; set; }
/// <inheritdoc cref="API.Entities.Chapter.SortOrderLocked"/>
public bool SortOrderLocked { get; set; }
#endregion