Text View, View & Filter All Annotations, and More OPDS Love (#4062)

Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
This commit is contained in:
Joe Milazzo
2025-09-28 14:28:21 -05:00
committed by GitHub
parent becb3d8c3b
commit 5290fd8959
139 changed files with 12399 additions and 2516 deletions
@@ -180,6 +180,12 @@ namespace API.Data.Migrations
b.Property<string>("Comment")
.HasColumnType("TEXT");
b.Property<string>("CommentHtml")
.HasColumnType("TEXT");
b.Property<string>("CommentPlainText")
.HasColumnType("TEXT");
b.Property<bool>("ContainsSpoiler")
.HasColumnType("INTEGER");
@@ -231,6 +237,8 @@ namespace API.Data.Migrations
b.HasIndex("ChapterId");
b.HasIndex("SeriesId");
b.ToTable("AppUserAnnotation");
});
@@ -732,9 +740,6 @@ namespace API.Data.Migrations
.HasColumnType("TEXT")
.HasDefaultValue("#000000");
b.Property<int>("BookReaderEpubPageCalculationMethod")
.HasColumnType("INTEGER");
b.Property<string>("BookReaderFontFamily")
.HasColumnType("TEXT");
@@ -2983,9 +2988,17 @@ namespace API.Data.Migrations
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.HasOne("API.Entities.Series", "Series")
.WithMany()
.HasForeignKey("SeriesId")
.OnDelete(DeleteBehavior.Cascade)
.IsRequired();
b.Navigation("AppUser");
b.Navigation("Chapter");
b.Navigation("Series");
});
modelBuilder.Entity("API.Entities.AppUserBookmark", b =>