Kavita/API/Data/Migrations
2025-07-05 15:18:11 -07:00
..
20201213205325_AddUser.cs Added User with ability to login and register. By default, user is not an admin. DTO expects an integer and will convert to Boolean. 2020-12-13 16:07:25 -06:00
20201213205325_AddUser.Designer.cs Added User with ability to login and register. By default, user is not an admin. DTO expects an integer and will convert to Boolean. 2020-12-13 16:07:25 -06:00
20201215195007_AddedLibrary.cs Lots of changes to get code ready to add library. 2020-12-17 11:27:19 -06:00
20201215195007_AddedLibrary.Designer.cs Lots of changes to get code ready to add library. 2020-12-17 11:27:19 -06:00
20201218173135_ManyToManyLibraries.cs Added new many to many migration for libraries and users. Add Library now works and you can get Library (entity) objects from a user. LibraryDto project is upcoming. 2020-12-18 12:01:45 -06:00
20201218173135_ManyToManyLibraries.Designer.cs Added new many to many migration for libraries and users. Add Library now works and you can get Library (entity) objects from a user. LibraryDto project is upcoming. 2020-12-18 12:01:45 -06:00
20201221141047_IdentityAdded.cs Forgot to add migrations 2020-12-21 11:18:51 -06:00
20201221141047_IdentityAdded.Designer.cs Forgot to add migrations 2020-12-21 11:18:51 -06:00
20201224155621_MiscCleanup.cs Added Hangfire with LiteDB for a task running system. At the most basic, this allows us to monitor tasks running on the system (during dev only) and run tasks on a reoccuring or ad-hoc basis. 2020-12-26 14:03:35 -06:00
20201224155621_MiscCleanup.Designer.cs Added Policy for getUsers and moved some APIs. 2020-12-24 10:13:22 -06:00
20201229190216_SeriesAndVolumeEntities.cs Rough version of Saving Series, Volumes, and MangaFiles to the DB. Relies on Cascaded delete rather than manually handling updating of file changes. 2020-12-30 11:30:12 -06:00
20201229190216_SeriesAndVolumeEntities.Designer.cs Rough version of Saving Series, Volumes, and MangaFiles to the DB. Relies on Cascaded delete rather than manually handling updating of file changes. 2020-12-30 11:30:12 -06:00
20210101180935_AddedCoverImageToSeries.cs Fixed a bug in ScanLibrary that caused duplicated Volumes. Implemented APIs for navigating down to Volume for webui. 2021-01-01 14:04:31 -06:00
20210101180935_AddedCoverImageToSeries.Designer.cs Fixed a bug in ScanLibrary that caused duplicated Volumes. Implemented APIs for navigating down to Volume for webui. 2021-01-01 14:04:31 -06:00
20210102165536_EntityTimestamps.cs Added ability to automatically track last modified and created timestamps for entities via an interface. DBContext will automatically update for us. 2021-01-02 10:59:52 -06:00
20210102165536_EntityTimestamps.Designer.cs Added ability to automatically track last modified and created timestamps for entities via an interface. DBContext will automatically update for us. 2021-01-02 10:59:52 -06:00
20210102173326_VolumeNumberRefactor.cs Refactored Volume to have Name and Number (int) so that we can properly sort and still handle possible split volumes. 2021-01-02 12:21:36 -06:00
20210102173326_VolumeNumberRefactor.Designer.cs Refactored Volume to have Name and Number (int) so that we can properly sort and still handle possible split volumes. 2021-01-02 12:21:36 -06:00
20210103201043_RemoveUserIsAdmin.cs Added migration for removing IsAdmin column since we use IdentityService Roles instead. 2021-01-03 14:16:06 -06:00
20210103201043_RemoveUserIsAdmin.Designer.cs Added migration for removing IsAdmin column since we use IdentityService Roles instead. 2021-01-03 14:16:06 -06:00
20210103230812_SeriesCoverImage.cs adding initial coverimage functionality 2021-01-03 19:50:10 -06:00
20210103230812_SeriesCoverImage.Designer.cs adding initial coverimage functionality 2021-01-03 19:50:10 -06:00
20210104011624_VolumeCoverImage.cs adding initial coverimage functionality 2021-01-03 19:50:10 -06:00
20210104011624_VolumeCoverImage.Designer.cs adding initial coverimage functionality 2021-01-03 19:50:10 -06:00
20210109205034_CacheMetadata.cs Refactored ScanLibrary to produce page numbers on the Manga File, Format and to update existing series/volumes rather than always create new entries. 2021-01-09 15:27:04 -06:00
20210109205034_CacheMetadata.Designer.cs Refactored ScanLibrary to produce page numbers on the Manga File, Format and to update existing series/volumes rather than always create new entries. 2021-01-09 15:27:04 -06:00
20210111231840_VolumePages.cs Refactored volume to contain pages and removed /reader/info API endpoint. 2021-01-11 17:36:11 -06:00
20210111231840_VolumePages.Designer.cs Refactored volume to contain pages and removed /reader/info API endpoint. 2021-01-11 17:36:11 -06:00
20210114214506_UserProgress.cs Very messy code that implements read status tracking. Needs major cleanup. 2021-01-17 15:05:27 -06:00
20210114214506_UserProgress.Designer.cs Very messy code that implements read status tracking. Needs major cleanup. 2021-01-17 15:05:27 -06:00
20210117180406_ReadStatusModifications.cs Very messy code that implements read status tracking. Needs major cleanup. 2021-01-17 15:05:27 -06:00
20210117180406_ReadStatusModifications.Designer.cs Very messy code that implements read status tracking. Needs major cleanup. 2021-01-17 15:05:27 -06:00
20210117181421_SeriesPages.cs Very messy code that implements read status tracking. Needs major cleanup. 2021-01-17 15:05:27 -06:00
20210117181421_SeriesPages.Designer.cs Very messy code that implements read status tracking. Needs major cleanup. 2021-01-17 15:05:27 -06:00
20210119213837_AppUserRatingAndReviews.cs Implemented ability to leave a rating (up to 5 stars) and a text review (not UI supported until v0.2). 2021-01-19 17:06:26 -06:00
20210119213837_AppUserRatingAndReviews.Designer.cs Implemented ability to leave a rating (up to 5 stars) and a text review (not UI supported until v0.2). 2021-01-19 17:06:26 -06:00
20210121180051_AddedServerSettings.cs Implemented ability to have server settings. Currently cache directory is there but it is not configurable (or used in this commit) 2021-01-23 09:01:10 -06:00
20210121180051_AddedServerSettings.Designer.cs Implemented ability to have server settings. Currently cache directory is there but it is not configurable (or used in this commit) 2021-01-23 09:01:10 -06:00
20210121215532_ServerSettingsAdjustment.cs Implemented ability to have server settings. Currently cache directory is there but it is not configurable (or used in this commit) 2021-01-23 09:01:10 -06:00
20210121215532_ServerSettingsAdjustment.Designer.cs Implemented ability to have server settings. Currently cache directory is there but it is not configurable (or used in this commit) 2021-01-23 09:01:10 -06:00
20210122165809_ServerSettingsChange.cs Implemented ability to have server settings. Currently cache directory is there but it is not configurable (or used in this commit) 2021-01-23 09:01:10 -06:00
20210122165809_ServerSettingsChange.Designer.cs Implemented ability to have server settings. Currently cache directory is there but it is not configurable (or used in this commit) 2021-01-23 09:01:10 -06:00
20210122172455_ServerSettingsPrimaryKey.cs Implemented ability to have server settings. Currently cache directory is there but it is not configurable (or used in this commit) 2021-01-23 09:01:10 -06:00
20210122172455_ServerSettingsPrimaryKey.Designer.cs Implemented ability to have server settings. Currently cache directory is there but it is not configurable (or used in this commit) 2021-01-23 09:01:10 -06:00
20210128143348_SeriesVolumeChapterChange.cs Refactored DB to be Series->Volumes->Chapters instead. All functionality that previously worked still works. Cleanup still needed. 2021-02-01 09:29:11 -06:00
20210128143348_SeriesVolumeChapterChange.Designer.cs Refactored DB to be Series->Volumes->Chapters instead. All functionality that previously worked still works. Cleanup still needed. 2021-02-01 09:29:11 -06:00
20210128201832_MangaFileChapterRelationship.cs Refactored DB to be Series->Volumes->Chapters instead. All functionality that previously worked still works. Cleanup still needed. 2021-02-01 09:29:11 -06:00
20210128201832_MangaFileChapterRelationship.Designer.cs Refactored DB to be Series->Volumes->Chapters instead. All functionality that previously worked still works. Cleanup still needed. 2021-02-01 09:29:11 -06:00
20210203164258_ServerSettingsKey.cs Ability to update settings. Take effect on next reboot. 2021-02-04 16:49:48 -06:00
20210203164258_ServerSettingsKey.Designer.cs Ability to update settings. Take effect on next reboot. 2021-02-04 16:49:48 -06:00
20210205220227_UserPreferences.cs Fixed a deployment bug where we weren't listening on port properly. New way will force firewall exception dialog on Windows and work across board. Implemented user preferences and ability to update them. 2021-02-06 13:08:48 -06:00
20210205220227_UserPreferences.Designer.cs Fixed a deployment bug where we weren't listening on port properly. New way will force firewall exception dialog on Windows and work across board. Implemented user preferences and ability to update them. 2021-02-06 13:08:48 -06:00
20210207231256_SeriesNormalizedName.cs A hefty refactor of the ScanLibrary code. There were significant fallouts due to duplicate entities getting created and SingleOrDefaults failing. 2021-02-08 12:03:52 -06:00
20210207231256_SeriesNormalizedName.Designer.cs A hefty refactor of the ScanLibrary code. There were significant fallouts due to duplicate entities getting created and SingleOrDefaults failing. 2021-02-08 12:03:52 -06:00
20210225150830_AddLocalizedName.cs Implemented the ability to correct a match from UI and further scans will show that new Series name. 2021-03-08 09:33:35 -06:00
20210225150830_AddLocalizedName.Designer.cs Implemented the ability to correct a match from UI and further scans will show that new Series name. 2021-03-08 09:33:35 -06:00
20210315134028_SearchIndexAndProgressDates.cs Hangfire now dies gracefully when using CTRL+C rather than Stop button in Rider. Implemented one stream method for testing. Regenerated a few migrations due to oversight in index not taking account of library. 2021-03-15 08:43:43 -05:00
20210315134028_SearchIndexAndProgressDates.Designer.cs Hangfire now dies gracefully when using CTRL+C rather than Stop button in Rider. Implemented one stream method for testing. Regenerated a few migrations due to oversight in index not taking account of library. 2021-03-15 08:43:43 -05:00
20210322212724_MangaFileToPages.cs Some code cleanup 2021-03-23 12:22:47 -05:00
20210322212724_MangaFileToPages.Designer.cs Some code cleanup 2021-03-23 12:22:47 -05:00
20210323213507_LastModifiedOnMangaFiles.cs When we scan a library, store the last write time for a file so we can skip page calculation if there were no modifications. 2021-03-23 17:28:48 -05:00
20210323213507_LastModifiedOnMangaFiles.Designer.cs When we scan a library, store the last write time for a file so we can skip page calculation if there were no modifications. 2021-03-23 17:28:48 -05:00
20210330134414_IsSpecialOnChapters.cs Special Grouping (#134) 2021-03-31 12:10:26 -05:00
20210330134414_IsSpecialOnChapters.Designer.cs Special Grouping (#134) 2021-03-31 12:10:26 -05:00
20210419222000_BookReaderPreferences.cs EPUB Support (#178) 2021-04-28 16:16:22 -05:00
20210419222000_BookReaderPreferences.Designer.cs EPUB Support (#178) 2021-04-28 16:16:22 -05:00
20210419234652_BookReaderPreferencesFontSize.cs EPUB Support (#178) 2021-04-28 16:16:22 -05:00
20210419234652_BookReaderPreferencesFontSize.Designer.cs EPUB Support (#178) 2021-04-28 16:16:22 -05:00
20210423132900_CustomChapterTitle.cs EPUB Support (#178) 2021-04-28 16:16:22 -05:00
20210423132900_CustomChapterTitle.Designer.cs EPUB Support (#178) 2021-04-28 16:16:22 -05:00
20210504184715_TapToPaginatePref.cs Tap to Paginate User Pref (#197) 2021-05-04 17:01:27 -05:00
20210504184715_TapToPaginatePref.Designer.cs Tap to Paginate User Pref (#197) 2021-05-04 17:01:27 -05:00
20210509014029_SiteDarkModePreference.cs Implemented Dark Mode (#203) 2021-05-09 08:44:12 -05:00
20210509014029_SiteDarkModePreference.Designer.cs Implemented Dark Mode (#203) 2021-05-09 08:44:12 -05:00
20210519215934_CollectionTag.cs Don't log exceptions to Sentry when debugging locally. Fixed a constraint issue with collection tags that prevented deleting series. Ensure when we scan we add SeriesMetadata objects to existing series. (#265) 2021-06-04 17:49:19 -05:00
20210519215934_CollectionTag.Designer.cs Collection Support (#234) 2021-05-30 17:24:23 -05:00
20210528150353_CollectionCoverImage.cs Collection Support (#234) 2021-05-30 17:24:23 -05:00
20210528150353_CollectionCoverImage.Designer.cs Collection Support (#234) 2021-05-30 17:24:23 -05:00
20210530201541_CollectionSummary.cs Collection Support (#234) 2021-05-30 17:24:23 -05:00
20210530201541_CollectionSummary.Designer.cs Collection Support (#234) 2021-05-30 17:24:23 -05:00
20210603133957_BookReadingDirectionPref.cs Added book reader reading direction preference (#249) 2021-06-03 09:05:07 -05:00
20210603133957_BookReadingDirectionPref.Designer.cs Added book reader reading direction preference (#249) 2021-06-03 09:05:07 -05:00
20210603212429_BookScrollIdProgress.cs Book Reading Progress Enhancement (#259) 2021-06-03 18:33:13 -05:00
20210603212429_BookScrollIdProgress.Designer.cs Book Reading Progress Enhancement (#259) 2021-06-03 18:33:13 -05:00
20210622164318_NewUserPreferences.cs Manga Redesign (#321) 2021-06-24 19:31:42 -05:00
20210622164318_NewUserPreferences.Designer.cs Manga Redesign (#321) 2021-06-24 19:31:42 -05:00
20210722223304_AddedSeriesFormat.cs PDF Support + MORE!!!! (#416) 2021-07-22 21:13:24 -05:00
20210722223304_AddedSeriesFormat.Designer.cs PDF Support + MORE!!!! (#416) 2021-07-22 21:13:24 -05:00
20210809210326_BookmarkPages.cs Bookmarking Pages within the Reader (#469) 2021-08-10 18:18:07 -05:00
20210809210326_BookmarkPages.Designer.cs Bookmarking Pages within the Reader (#469) 2021-08-10 18:18:07 -05:00
20210813010210_CoverImageLockFieldsPart1.cs Custom Cover Images (#499) 2021-08-15 10:36:47 -07:00
20210813010210_CoverImageLockFieldsPart1.Designer.cs Custom Cover Images (#499) 2021-08-15 10:36:47 -07:00
20210814215831_CoverImageLockedFieldsPart2.cs Custom Cover Images (#499) 2021-08-15 10:36:47 -07:00
20210814215831_CoverImageLockedFieldsPart2.Designer.cs Custom Cover Images (#499) 2021-08-15 10:36:47 -07:00
20210817152226_ProgressConcurencyCheck.cs Misc Bugfixes and Enhancements (#507) 2021-08-17 14:15:32 -07:00
20210817152226_ProgressConcurencyCheck.Designer.cs Misc Bugfixes and Enhancements (#507) 2021-08-17 14:15:32 -07:00
20210826203258_userApiKey.cs OPDS Support (#526) 2021-08-27 10:19:25 -07:00
20210826203258_userApiKey.Designer.cs OPDS Support (#526) 2021-08-27 10:19:25 -07:00
20210901150310_ReadingLists.cs Reading Lists & More (#564) 2021-09-08 12:03:27 -05:00
20210901150310_ReadingLists.Designer.cs Reading Lists & More (#564) 2021-09-08 12:03:27 -05:00
20210901200442_ReadingListsAdditions.cs Reading Lists & More (#564) 2021-09-08 12:03:27 -05:00
20210901200442_ReadingListsAdditions.Designer.cs Reading Lists & More (#564) 2021-09-08 12:03:27 -05:00
20210902110705_ReadingListsExtraRealationships.cs Reading Lists & More (#564) 2021-09-08 12:03:27 -05:00
20210902110705_ReadingListsExtraRealationships.Designer.cs Reading Lists & More (#564) 2021-09-08 12:03:27 -05:00
20210906140845_ReadingListsChanges.cs Reading Lists & More (#564) 2021-09-08 12:03:27 -05:00
20210906140845_ReadingListsChanges.Designer.cs Reading Lists & More (#564) 2021-09-08 12:03:27 -05:00
20210916142418_EntityImageRefactor.cs Foundational Cover Image Rework (#584) 2021-09-21 19:15:29 -05:00
20210916142418_EntityImageRefactor.Designer.cs Foundational Cover Image Rework (#584) 2021-09-21 19:15:29 -05:00
20211001113608_LastScannedLibrary.cs Polishing and Bugfixes (#613) 2021-10-01 08:13:55 -07:00
20211001113608_LastScannedLibrary.Designer.cs Polishing and Bugfixes (#613) 2021-10-01 08:13:55 -07:00
20211127200244_MetadataFoundation.cs Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
20211127200244_MetadataFoundation.Designer.cs Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
20211129231007_RemoveChapterMetadata.cs Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
20211129231007_RemoveChapterMetadata.Designer.cs Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
20211130134642_GenreProvider.cs Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
20211130134642_GenreProvider.Designer.cs Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
20211201230003_GenreTitle.cs Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
20211201230003_GenreTitle.Designer.cs Local Metadata Integration Part 1 (#817) 2021-12-02 09:02:34 -08:00
20211205185207_MetadataAgeRating.cs Feature/local metadata more tags (#832) 2021-12-06 11:59:47 -08:00
20211205185207_MetadataAgeRating.Designer.cs Feature/local metadata more tags (#832) 2021-12-06 11:59:47 -08:00
20211206193225_AgeRatingAndReleaseDate.cs Feature/local metadata more tags (#832) 2021-12-06 11:59:47 -08:00
20211206193225_AgeRatingAndReleaseDate.Designer.cs Feature/local metadata more tags (#832) 2021-12-06 11:59:47 -08:00
20211217013734_BookmarkRefactor.cs Bookmark Refactor (#893) 2022-01-05 09:56:49 -08:00
20211217013734_BookmarkRefactor.Designer.cs Bookmark Refactor (#893) 2022-01-05 09:56:49 -08:00
20211217180457_filteringChanges.cs Fixes v0.4.19! (#855) 2021-12-17 10:46:01 -08:00
20211217180457_filteringChanges.Designer.cs Fixes v0.4.19! (#855) 2021-12-17 10:46:01 -08:00
20211227180752_FullscreenPref.cs Reader Fixes and Enhancements (#880) 2022-01-02 17:10:37 -08:00
20211227180752_FullscreenPref.Designer.cs Reader Fixes and Enhancements (#880) 2022-01-02 17:10:37 -08:00
20220107232822_ChapterMetadataOptimization.cs Metadata Optimizations (#910) 2022-01-08 06:41:47 -08:00
20220107232822_ChapterMetadataOptimization.Designer.cs Metadata Optimizations (#910) 2022-01-08 06:41:47 -08:00
20220108200822_CountMetadata.cs Implemented Publication Status in SeriesMetadata and the ability to filter it. (#915) 2022-01-08 13:10:03 -08:00
20220108200822_CountMetadata.Designer.cs Implemented Publication Status in SeriesMetadata and the ability to filter it. (#915) 2022-01-08 13:10:03 -08:00
20220108202027_PublicationStatus.cs Implemented Publication Status in SeriesMetadata and the ability to filter it. (#915) 2022-01-08 13:10:03 -08:00
20220108202027_PublicationStatus.Designer.cs Implemented Publication Status in SeriesMetadata and the ability to filter it. (#915) 2022-01-08 13:10:03 -08:00
20220215163317_SiteTheme.cs Custom Theme Support (#1077) 2022-02-16 07:12:38 -08:00
20220215163317_SiteTheme.Designer.cs Custom Theme Support (#1077) 2022-02-16 07:12:38 -08:00
20220303205301_SeriesLockedFields.cs Metadata Editing from the UI! (#1135) 2022-03-04 13:04:15 -08:00
20220303205301_SeriesLockedFields.Designer.cs Metadata Editing from the UI! (#1135) 2022-03-04 13:04:15 -08:00
20220306155456_MangaReaderBackgroundAndLayoutMode.cs Manga Reader Refresh (#1137) 2022-03-07 09:35:27 -08:00
20220306155456_MangaReaderBackgroundAndLayoutMode.Designer.cs Manga Reader Refresh (#1137) 2022-03-07 09:35:27 -08:00
20220307153053_ScreenHints.cs Manga Reader Refresh (#1137) 2022-03-07 09:35:27 -08:00
20220307153053_ScreenHints.Designer.cs Manga Reader Refresh (#1137) 2022-03-07 09:35:27 -08:00
20220410230540_SeriesLastChapterAddedAndReadingListNormalization.cs On Deck + Misc Fixes and Changes (#1215) 2022-04-11 15:43:40 -07:00
20220410230540_SeriesLastChapterAddedAndReadingListNormalization.Designer.cs On Deck + Misc Fixes and Changes (#1215) 2022-04-11 15:43:40 -07:00
20220416211340_RemoveCustomIndex.cs Filtering Bugfixes (#1220) 2022-04-16 16:29:11 -07:00
20220416211340_RemoveCustomIndex.Designer.cs Filtering Bugfixes (#1220) 2022-04-16 16:29:11 -07:00
20220421214448_SeriesRelations.cs Linked Series (#1230) 2022-04-24 09:59:09 -07:00
20220421214448_SeriesRelations.Designer.cs Linked Series (#1230) 2022-04-24 09:59:09 -07:00
20220425125505_ChangeCountToTotalCount.cs Publication Status Enhancements (#1231) 2022-04-25 13:52:36 -05:00
20220425125505_ChangeCountToTotalCount.Designer.cs Publication Status Enhancements (#1231) 2022-04-25 13:52:36 -05:00
20220425131122_AddMaxCountToSeriesMetadata.cs Publication Status Enhancements (#1231) 2022-04-25 13:52:36 -05:00
20220425131122_AddMaxCountToSeriesMetadata.Designer.cs Publication Status Enhancements (#1231) 2022-04-25 13:52:36 -05:00
20220508162841_BookReaderUpdate.cs Book Reader Redesign with e-ink focus (#1246) 2022-05-08 17:52:15 -07:00
20220508162841_BookReaderUpdate.Designer.cs Book Reader Redesign with e-ink focus (#1246) 2022-05-08 17:52:15 -07:00
20220513234708_BookReaderImmersiveMode.cs Book Reader Bugfixes (#1254) 2022-05-13 17:30:37 -07:00
20220513234708_BookReaderImmersiveMode.Designer.cs Book Reader Bugfixes (#1254) 2022-05-13 17:30:37 -07:00
20220524172543_WordCount.cs Word Count (#1286) 2022-05-25 14:53:39 -07:00
20220524172543_WordCount.Designer.cs Word Count (#1286) 2022-05-25 14:53:39 -07:00
20220610153822_TimeEstimateInDB.cs Infinite Scroll + List View + Cover Upload Redesign (#1319) 2022-06-13 14:37:49 -07:00
20220610153822_TimeEstimateInDB.Designer.cs Infinite Scroll + List View + Cover Upload Redesign (#1319) 2022-06-13 14:37:49 -07:00
20220613131125_RenamedBookReaderLayoutMode.cs Infinite Scroll + List View + Cover Upload Redesign (#1319) 2022-06-13 14:37:49 -07:00
20220613131125_RenamedBookReaderLayoutMode.Designer.cs Infinite Scroll + List View + Cover Upload Redesign (#1319) 2022-06-13 14:37:49 -07:00
20220613131302_GlobalPageLayoutModeUserSetting.cs Infinite Scroll + List View + Cover Upload Redesign (#1319) 2022-06-13 14:37:49 -07:00
20220613131302_GlobalPageLayoutModeUserSetting.Designer.cs Infinite Scroll + List View + Cover Upload Redesign (#1319) 2022-06-13 14:37:49 -07:00
20220615190640_LastFileAnalysis.cs New PDF Reader (#1324) 2022-06-15 14:43:32 -07:00
20220615190640_LastFileAnalysis.Designer.cs New PDF Reader (#1324) 2022-06-15 14:43:32 -07:00
20220625215526_BlurUnreadSummaries.cs Swagger, Tachiyomi, and some new settings (#1331) 2022-06-25 15:52:21 -07:00
20220625215526_BlurUnreadSummaries.Designer.cs Swagger, Tachiyomi, and some new settings (#1331) 2022-06-25 15:52:21 -07:00
20220712161611_PromptForDownloadSizeUserOption.cs Better Caching & Global Downloads (#1372) 2022-07-13 07:45:14 -07:00
20220712161611_PromptForDownloadSizeUserOption.Designer.cs Better Caching & Global Downloads (#1372) 2022-07-13 07:45:14 -07:00
20220717145254_UserConfirmationLink.cs Create Users Manually (Email still required) (#1381) 2022-07-17 08:43:03 -07:00
20220717145254_UserConfirmationLink.Designer.cs Create Users Manually (Email still required) (#1381) 2022-07-17 08:43:03 -07:00
20220728193758_WantToReadList.cs Want to Read List (#1392) 2022-07-28 15:18:35 -07:00
20220728193758_WantToReadList.Designer.cs Want to Read List (#1392) 2022-07-28 15:18:35 -07:00
20220802222910_BookmarkHasDate.cs Security Hotfix (#1415) 2022-08-08 13:47:37 -07:00
20220802222910_BookmarkHasDate.Designer.cs Security Hotfix (#1415) 2022-08-08 13:47:37 -07:00
20220814134725_MangaFileCreatedDate.cs File Created Date (#1434) 2022-08-14 07:35:02 -07:00
20220814134725_MangaFileCreatedDate.Designer.cs File Created Date (#1434) 2022-08-14 07:35:02 -07:00
20220817173731_SeriesFolder.cs v0.5.6 - Performance Part 2 (Is that a new scan loop?) (#1500) 2022-09-02 05:52:51 -07:00
20220817173731_SeriesFolder.Designer.cs v0.5.6 - Performance Part 2 (Is that a new scan loop?) (#1500) 2022-09-02 05:52:51 -07:00
20220819223212_NormalizedLocalizedName.cs v0.5.6 - Performance Part 2 (Is that a new scan loop?) (#1500) 2022-09-02 05:52:51 -07:00
20220819223212_NormalizedLocalizedName.Designer.cs v0.5.6 - Performance Part 2 (Is that a new scan loop?) (#1500) 2022-09-02 05:52:51 -07:00
20220921023455_DeviceSupport.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20220921023455_DeviceSupport.Designer.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20220926145902_AddNoTransitions.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20220926145902_AddNoTransitions.Designer.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20221006013956_ReleaseYearOnSeriesEdit.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20221006013956_ReleaseYearOnSeriesEdit.Designer.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20221009172653_ReadingListAgeRating.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20221009172653_ReadingListAgeRating.Designer.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20221009211237_UserAgeRating.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20221009211237_UserAgeRating.Designer.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20221017131711_IncludeUnknowns.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20221017131711_IncludeUnknowns.Designer.cs v0.6.0 - Polish, Polish, Polish + Send To Support! (#1604) 2022-10-22 09:34:20 -07:00
20221115021908_SeriesRelationChange.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20221115021908_SeriesRelationChange.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20221118131123_ExtendedLibrarySettings.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20221118131123_ExtendedLibrarySettings.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20221126133824_FileLengthAndExtension.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20221126133824_FileLengthAndExtension.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20221128230726_UserProgressLibraryId.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20221128230726_UserProgressLibraryId.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20221212215914_EmulateBookPref.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20221212215914_EmulateBookPref.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230111014852_YearlyStats.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230111014852_YearlyStats.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230129210741_SwipeToPaginatePref.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230129210741_SwipeToPaginatePref.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230130210252_AutoCollections.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230130210252_AutoCollections.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230202182602_ReadingListFields.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230202182602_ReadingListFields.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230203112022_RemoveExternalFromTagAndGenre.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230203112022_RemoveExternalFromTagAndGenre.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230210153842_UtcTimes.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230210153842_UtcTimes.Designer.cs v0.7 - Who doesn't like Stats? (#1798) 2023-02-18 07:01:04 -08:00
20230220203128_CollapseSeriesRelationships.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230220203128_CollapseSeriesRelationships.Designer.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230304202540_BookWritingStylePref.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230304202540_BookWritingStylePref.Designer.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230310142630_MoveCollapseSeriesToUserPref.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230310142630_MoveCollapseSeriesToUserPref.Designer.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230313125914_ReadingListDateRange.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230313125914_ReadingListDateRange.Designer.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230316123908_SecurityEvent.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230316123908_SecurityEvent.Designer.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230316233133_RemoveSecurityEvent.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230316233133_RemoveSecurityEvent.Designer.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230415123449_ManageReadingListOnLibrary.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230415123449_ManageReadingListOnLibrary.Designer.cs v0.7.2 - Reading Lists, CBL Support, OPDS Flattening and More! (#1959) 2023-05-06 06:44:46 -07:00
20230505124430_MediaError.cs Report Media Issues (#1964) 2023-05-07 10:14:39 -07:00
20230505124430_MediaError.Designer.cs Report Media Issues (#1964) 2023-05-07 10:14:39 -07:00
20230511165427_WebLinksForChapter.cs Web Links (#1983) 2023-05-11 14:27:04 -07:00
20230511165427_WebLinksForChapter.Designer.cs Web Links (#1983) 2023-05-11 14:27:04 -07:00
20230511183339_WebLinksForSeries.cs Web Links (#1983) 2023-05-11 14:27:04 -07:00
20230511183339_WebLinksForSeries.Designer.cs Web Links (#1983) 2023-05-11 14:27:04 -07:00
20230512004545_ChapterISBN.cs ISBN Support (#1985) 2023-05-11 18:13:58 -07:00
20230512004545_ChapterISBN.Designer.cs ISBN Support (#1985) 2023-05-11 18:13:58 -07:00
20230527215722_LicenseAndScrobble.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230527215722_LicenseAndScrobble.Designer.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230601172306_ScrobbleErrors.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230601172306_ScrobbleErrors.Designer.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230612154313_ScrobbleEventProcessed.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230612154313_ScrobbleEventProcessed.Designer.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230615133219_ReviewTaglineAndOptInShares.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230615133219_ReviewTaglineAndOptInShares.Designer.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230618150728_ScrobbleHolds.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230618150728_ScrobbleHolds.Designer.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230621211421_RemoveUserLicense.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230621211421_RemoveUserLicense.Designer.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230623192231_ScrobbleReview.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230623192231_ScrobbleReview.Designer.cs v0.7.4 - Kavita+ Launch (#2117) 2023-07-11 11:14:18 -07:00
20230715125951_OnDeckRemoval.cs Remove From On Deck (#2131) 2023-07-15 07:27:21 -07:00
20230715125951_OnDeckRemoval.Designer.cs Remove From On Deck (#2131) 2023-07-15 07:27:21 -07:00
20230719173458_PersonalToC.cs Personal Table of Contents (#2148) 2023-07-21 15:29:35 -07:00
20230719173458_PersonalToC.Designer.cs Personal Table of Contents (#2148) 2023-07-21 15:29:35 -07:00
20230725133536_ChangeRatingScale.cs Rating Overhaul (#2159) 2023-07-25 09:57:07 -07:00
20230725133536_ChangeRatingScale.Designer.cs Rating Overhaul (#2159) 2023-07-25 09:57:07 -07:00
20230727175518_AddLocaleOnPrefs.cs Localization - First Pass (#2174) 2023-08-03 08:33:51 -07:00
20230727175518_AddLocaleOnPrefs.Designer.cs Localization - First Pass (#2174) 2023-08-03 08:33:51 -07:00
20230904184205_SmartFilters.cs Smart Filters & Dashboard Customization (#2282) 2023-09-12 11:24:47 -07:00
20230904184205_SmartFilters.Designer.cs Smart Filters & Dashboard Customization (#2282) 2023-09-12 11:24:47 -07:00
20230908190713_DashboardStream.cs Smart Filters & Dashboard Customization (#2282) 2023-09-12 11:24:47 -07:00
20230908190713_DashboardStream.Designer.cs Smart Filters & Dashboard Customization (#2282) 2023-09-12 11:24:47 -07:00
20231013194957_SideNavStreamAndExternalSource.cs Side Nav Redesign (#2310) 2023-10-14 08:07:53 -07:00
20231013194957_SideNavStreamAndExternalSource.Designer.cs Side Nav Redesign (#2310) 2023-10-14 08:07:53 -07:00
20231113215006_LibraryFileTypes.cs .kavitaignore no more (#2442) 2023-11-19 10:15:32 -08:00
20231113215006_LibraryFileTypes.Designer.cs .kavitaignore no more (#2442) 2023-11-19 10:15:32 -08:00
20231117234829_LibraryExcludePatterns.cs .kavitaignore no more (#2442) 2023-11-19 10:15:32 -08:00
20231117234829_LibraryExcludePatterns.Designer.cs .kavitaignore no more (#2442) 2023-11-19 10:15:32 -08:00
20240121223643_ExternalSeriesMetadata.cs Customized Scheduler + Saved Kavita+ Details (#2644) 2024-01-22 10:10:57 -08:00
20240121223643_ExternalSeriesMetadata.Designer.cs Customized Scheduler + Saved Kavita+ Details (#2644) 2024-01-22 10:10:57 -08:00
20240128153433_VolumeMinMaxNumbers.cs Float-based Volumes (#2659) 2024-01-28 09:37:38 -08:00
20240128153433_VolumeMinMaxNumbers.Designer.cs Float-based Volumes (#2659) 2024-01-28 09:37:38 -08:00
20240130190617_WantToReadFix.cs Sort by Average Rating and Big Want to Read fix (#2672) 2024-02-01 04:23:45 -08:00
20240130190617_WantToReadFix.Designer.cs Sort by Average Rating and Big Want to Read fix (#2672) 2024-02-01 04:23:45 -08:00
20240204141206_BlackListSeries.cs Stability (I hope) (#2688) 2024-02-04 08:51:07 -08:00
20240204141206_BlackListSeries.Designer.cs Stability (I hope) (#2688) 2024-02-04 08:51:07 -08:00
20240205184724_ScrobbleEventError.cs Last PR before Release (#2692) 2024-02-05 18:58:03 -06:00
20240205184724_ScrobbleEventError.Designer.cs Last PR before Release (#2692) 2024-02-05 18:58:03 -06:00
20240209224347_DBTweaks.cs Background Prefetching for Kavita+ (#2707) 2024-02-10 07:43:17 -08:00
20240209224347_DBTweaks.Designer.cs Background Prefetching for Kavita+ (#2707) 2024-02-10 07:43:17 -08:00
20240214232436_ChapterNumber.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240214232436_ChapterNumber.Designer.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240216000223_MangaFileNameTemp.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240216000223_MangaFileNameTemp.Designer.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240222125420_ChapterIssueSort.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240222125420_ChapterIssueSort.Designer.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240225235816_VolumeLookupName.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240225235816_VolumeLookupName.Designer.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240309140117_SeriesImprints.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240309140117_SeriesImprints.Designer.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240313112552_SeriesLowestFolderPath.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240313112552_SeriesLowestFolderPath.Designer.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240314194402_TeamsAndLocations.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240314194402_TeamsAndLocations.Designer.cs Comic Rework, New Scanner, Foundation Overahul (is this a full release?) (#2780) 2024-03-17 13:58:32 -04:00
20240321173812_UserMalToken.cs Misc bunch of changes (#2815) 2024-03-23 14:20:16 -07:00
20240321173812_UserMalToken.Designer.cs Misc bunch of changes (#2815) 2024-03-23 14:20:16 -07:00
20240328130057_PdfSettings.cs PDF Reader Settings, New Reading Modes, and lots of fixes (#2828) 2024-03-30 13:07:03 -07:00
20240328130057_PdfSettings.Designer.cs PDF Reader Settings, New Reading Modes, and lots of fixes (#2828) 2024-03-30 13:07:03 -07:00
20240331172900_UserBasedCollections.cs Collection Rework (#2830) 2024-04-06 10:03:49 -07:00
20240331172900_UserBasedCollections.Designer.cs Collection Rework (#2830) 2024-04-06 10:03:49 -07:00
20240418163829_ChapterSortOrderLock.cs Last Batch before Release (#2899) 2024-04-21 08:53:40 -07:00
20240418163829_ChapterSortOrderLock.Designer.cs Last Batch before Release (#2899) 2024-04-21 08:53:40 -07:00
20240503120147_SmartCollectionFields.cs MAL Interest Stacks (#2932) 2024-05-04 13:23:58 -07:00
20240503120147_SmartCollectionFields.Designer.cs MAL Interest Stacks (#2932) 2024-05-04 13:23:58 -07:00
20240510134030_SiteThemeFields.cs Theme Viewer + Theme Updater (#2952) 2024-05-13 15:00:13 -07:00
20240510134030_SiteThemeFields.Designer.cs Theme Viewer + Theme Updater (#2952) 2024-05-13 15:00:13 -07:00
20240704144224_PersonFields.cs New Scanner + People Pages (#3286) 2024-10-23 15:11:18 -07:00
20240704144224_PersonFields.Designer.cs New Scanner + People Pages (#3286) 2024-10-23 15:11:18 -07:00
20240808100353_CoverPrimaryColors.cs UX Overhaul Part 1 (#3047) 2024-08-09 10:55:31 -07:00
20240808100353_CoverPrimaryColors.Designer.cs UX Overhaul Part 1 (#3047) 2024-08-09 10:55:31 -07:00
20240811154857_ChapterMetadataLocks.cs UX Overhaul Part 2 (#3112) 2024-08-16 17:37:12 -07:00
20240811154857_ChapterMetadataLocks.Designer.cs UX Overhaul Part 2 (#3112) 2024-08-16 17:37:12 -07:00
20240813194728_VolumeCoverLocked.cs UX Overhaul Part 2 (#3112) 2024-08-16 17:37:12 -07:00
20240813194728_VolumeCoverLocked.Designer.cs UX Overhaul Part 2 (#3112) 2024-08-16 17:37:12 -07:00
20240917180034_AvgReadingTimeFloat.cs Stats Fix & Library Bulk Actions (#3209) 2024-09-23 06:07:37 -07:00
20240917180034_AvgReadingTimeFloat.Designer.cs Stats Fix & Library Bulk Actions (#3209) 2024-09-23 06:07:37 -07:00
20241011143144_PeopleOverhaulPart1.cs New Scanner + People Pages (#3286) 2024-10-23 15:11:18 -07:00
20241011143144_PeopleOverhaulPart1.Designer.cs New Scanner + People Pages (#3286) 2024-10-23 15:11:18 -07:00
20241011152321_PeopleOverhaulPart2.cs New Scanner + People Pages (#3286) 2024-10-23 15:11:18 -07:00
20241011152321_PeopleOverhaulPart2.Designer.cs New Scanner + People Pages (#3286) 2024-10-23 15:11:18 -07:00
20241011172428_PeopleOverhaulPart3.cs New Scanner + People Pages (#3286) 2024-10-23 15:11:18 -07:00
20241011172428_PeopleOverhaulPart3.Designer.cs New Scanner + People Pages (#3286) 2024-10-23 15:11:18 -07:00
20250105180131_SeriesDontMatchAndBlacklist.cs Kavita+ Overhaul & New Changelog (#3507) 2025-01-20 06:14:57 -08:00
20250105180131_SeriesDontMatchAndBlacklist.Designer.cs Kavita+ Overhaul & New Changelog (#3507) 2025-01-20 06:14:57 -08:00
20250109173537_EmailHistory.cs Kavita+ Overhaul & New Changelog (#3507) 2025-01-20 06:14:57 -08:00
20250109173537_EmailHistory.Designer.cs Kavita+ Overhaul & New Changelog (#3507) 2025-01-20 06:14:57 -08:00
20250202163454_KavitaPlusUserAndMetadataSettings.cs Metadata Downloading (#3525) 2025-02-05 14:16:44 -08:00
20250202163454_KavitaPlusUserAndMetadataSettings.Designer.cs Metadata Downloading (#3525) 2025-02-05 14:16:44 -08:00
20250208200843_MoreMetadtaSettings.cs More Metadata Stuff (#3537) 2025-02-08 13:37:12 -08:00
20250208200843_MoreMetadtaSettings.Designer.cs More Metadata Stuff (#3537) 2025-02-08 13:37:12 -08:00
20250328125012_AutomaticWebtoonReaderMode.cs Reading List Detail Overhaul + More Bugfixes and Polish (#3687) 2025-03-29 17:47:53 -07:00
20250328125012_AutomaticWebtoonReaderMode.Designer.cs Reading List Detail Overhaul + More Bugfixes and Polish (#3687) 2025-03-29 17:47:53 -07:00
20250408222330_ScrobbleGenerationDbCapture.cs Polish for Release (#3714) 2025-04-08 16:25:37 -07:00
20250408222330_ScrobbleGenerationDbCapture.Designer.cs Polish for Release (#3714) 2025-04-08 16:25:37 -07:00
20250415194829_KavitaPlusCBR.cs Kavita+ Comic Metadata Matching (#3740) 2025-04-25 06:26:48 -07:00
20250415194829_KavitaPlusCBR.Designer.cs Kavita+ Comic Metadata Matching (#3740) 2025-04-25 06:26:48 -07:00
20250429150140_ChapterRatingAndReviews.cs Chapter/Issue level Reviews and Ratings (#3778) 2025-04-29 09:53:24 -07:00
20250429150140_ChapterRatingAndReviews.Designer.cs Chapter/Issue level Reviews and Ratings (#3778) 2025-04-29 09:53:24 -07:00
20250507221026_PersonAliases.cs People Aliases and Merging (#3795) 2025-05-09 15:18:13 -07:00
20250507221026_PersonAliases.Designer.cs People Aliases and Merging (#3795) 2025-05-09 15:18:13 -07:00
20250519151126_KoreaderHash.cs Koreader Progress Sync (#3823) 2025-06-20 10:45:56 -07:00
20250519151126_KoreaderHash.Designer.cs Koreader Progress Sync (#3823) 2025-06-20 10:45:56 -07:00
20250601200056_ReadingProfiles.cs Reading Profiles (#3845) 2025-06-08 07:16:44 -07:00
20250601200056_ReadingProfiles.Designer.cs Reading Profiles (#3845) 2025-06-08 07:16:44 -07:00
20250610210618_AppUserReadingProfileDisableWidthOverrideBreakPoint.cs Browse by Genre/Tag/Person with new metadata system for People (#3835) 2025-06-14 10:14:04 -07:00
20250610210618_AppUserReadingProfileDisableWidthOverrideBreakPoint.Designer.cs Browse by Genre/Tag/Person with new metadata system for People (#3835) 2025-06-14 10:14:04 -07:00
20250620215058_EnableMetadataLibrary.cs Ability to turn off Metadata Parsing (#3872) 2025-06-23 16:57:14 -07:00
20250620215058_EnableMetadataLibrary.Designer.cs Ability to turn off Metadata Parsing (#3872) 2025-06-23 16:57:14 -07:00
20250626162548_TrackKavitaPlusMetadata.cs A few more bug fixes (#3876) 2025-06-28 09:45:02 -07:00
20250626162548_TrackKavitaPlusMetadata.Designer.cs A few more bug fixes (#3876) 2025-06-28 09:45:02 -07:00
20250629153840_LibraryRemoveSortPrefix.cs No More Sort Prefixes (#3895) 2025-07-05 15:18:11 -07:00
20250629153840_LibraryRemoveSortPrefix.Designer.cs No More Sort Prefixes (#3895) 2025-07-05 15:18:11 -07:00
DataContextModelSnapshot.cs No More Sort Prefixes (#3895) 2025-07-05 15:18:11 -07:00