Joseph Milazzo
7790cf31fd
In Progress Query Update ( #145 )
...
* Fixed a bug where chapter cover images weren't being updated due to a missed not.
* Removed a piece of code that was needed for upgrading, since all beta users agreed to wipe db.
* Fixed InProgress to properly respect order and show more recent activity first. Issue is with IEntityDate LastModified not updating in DataContext.
* Updated dependencies to lastest stable.
* LastModified on Volumes wasn't updating, validated it does update when data is changed.
2021-04-01 16:11:06 -05:00
Joseph Milazzo
ca5c666b7b
In Progress Activity Stream Fixes ( #136 )
...
* Fixed a bug in In-Progress where it wasn't properly fetching series.
2021-03-31 14:50:03 -05:00
Joseph Milazzo
70cc163cb0
More cleanup
2021-03-23 14:41:14 -05:00
Joseph Milazzo
d73bd22db2
Some code cleanup
2021-03-23 12:22:47 -05:00
Joseph Milazzo
f77de66d97
ContinueReading has been pulled from UI. The query doesn't work and no longer sure I need.
2021-03-20 12:44:18 -05:00
Joseph Milazzo
a125b2ac0b
Fixed GetInProgress API - The condition for PagesRead needed to be a sum for all progress, not each row.
2021-03-18 14:18:56 -05:00
Joseph Milazzo
0a85555f38
Temp commit to record attempts. Stream APIs are implemented and working. Added some new test cases based on deployed Kavita server testing.
2021-03-17 14:29:50 -05:00
Joseph Milazzo
fad4ca4414
Lots of Hangfire attempts to solve the lock issue. Not sure how to fix it. Added some APIs for streams.
2021-03-15 13:49:13 -05:00
Joseph Milazzo
9035b6cc4e
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
Joseph Milazzo
1f24725905
Added indexes to Series table for searching. Removed byte[] from SearchResultDTO. Added response caching for all APIs. Responses are cached for 10 seconds.
2021-03-12 18:21:13 -06:00
Joseph Milazzo
24118da49c
Added localizedName for search function
2021-03-12 13:23:21 -06:00
Joseph Milazzo
af35d8aad5
Cleanup of lazy loading code. Made some DTOs use init rather than set to keep it clean.
2021-03-12 13:20:08 -06:00
Joseph Milazzo
33515ad865
First pass for supporting lazy loading and not using base64 strings for loading images in UI.
2021-03-12 12:22:04 -06:00
Joseph Milazzo
5be01b529b
Removed failed attempts
2021-02-17 15:29:27 -06:00
Joseph Milazzo
922c0153d3
Added series progress/rating information back in. Left attempts at doing via a JOIN or raw SQL.
2021-02-17 15:28:57 -06:00
Joseph Milazzo
222959981f
Implemented pagination on GetSeriesForLibrary
2021-02-17 11:23:08 -06:00
Joseph Milazzo
b4ee16d8d1
Code cleanup. Implemented ability to schedule Library Backups.
2021-02-17 08:58:36 -06:00
Joseph Milazzo
83b9394b17
Implemented ability to mark a series as Read/Unread.
2021-02-16 12:48:04 -06:00
Joseph Milazzo
2887fab53f
Implements search functionality and prepares for upcoming paging in v0.3.
2021-02-15 13:08:30 -06:00
Joseph Milazzo
10c8ea34fe
Cleanup after feature implementation.
2021-02-04 17:01:37 -06:00
Joseph Milazzo
0f82b45b9d
Refactored Cache Cleanup code.
2021-02-02 09:38:10 -06:00
Joseph Milazzo
53e85317f9
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
Joseph Milazzo
6b76c8b211
Refactored archive code into a service so that I can write tests for it.
2021-01-26 09:55:15 -06:00
Joseph Milazzo
a057e3ce1d
Lots of bug fixes around publishing and handling weird cases on a real manga library. Implemented ability to have Volumes number 0 aka just latest chapters. Refactored DirectoryService code for scanning into it's own service. Lots of debug code, will be cleaned up later.
2021-01-23 17:44:48 -06:00
Joseph Milazzo
ac993a59ba
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
Joseph Milazzo
3c8e4b2240
Cleaned up some warnings and implemented re-occuring scan libraries task. Customization of task schedules is in v0.2.
2021-01-19 14:41:50 -06:00
Joseph Milazzo
e180032a8e
ScanLibrary now respects the library a series belongs to, doesn't reset series every run but updates/removes/inserts as needed.
2021-01-19 14:35:24 -06:00
Joseph Milazzo
14e8c3b820
Fixed some APIs that worked mins ago....something strange happening with EF relationships.
2021-01-19 10:45:37 -06:00
Joseph Milazzo
4a2296a18a
Minor cleanup. Next commit will cleanup repositories and code base to be more concise.
2021-01-18 10:46:42 -06:00
Joseph Milazzo
effdf07cef
Very messy code that implements read status tracking. Needs major cleanup.
2021-01-17 15:05:27 -06:00
Joseph Milazzo
56e8a0059e
Implemented ability to delete a series. Refactored some operations to remove unneeded parameters.
2021-01-12 16:51:23 -06:00
Joseph Milazzo
28ce2bbba1
Refactored volume to contain pages and removed /reader/info API endpoint.
2021-01-11 17:36:11 -06:00
Joseph Milazzo
731e3a9c5e
Cache cleanup implemented
2021-01-11 15:39:25 -06:00
Joseph Milazzo
7ab7e8acc4
Implemented the ability to extract an archive image to a cache directory.
2021-01-08 13:28:59 -06:00
Joseph Milazzo
0b35ec70fd
Refactored GetCoverImage to create a thumbnail (optional) instead of raw image (raw images are large and bloat API, using thumbnail is indistiguishable); b) Ability to force updating cover images in DB even if they are already set.
2021-01-07 10:30:54 -06:00
Joseph Milazzo
7b1714349d
Refactored ScanLibrary to accept and library id rather than DTO. Refactored ScanLibrary to use Task.Run() rather than having synchronous repo methods.
2021-01-02 12:48:48 -06:00
Joseph Milazzo
9168e12483
Refactored Volume to have Name and Number (int) so that we can properly sort and still handle possible split volumes.
...
Refactored ScanLibrary into Library controller and updated it so it adds the new library to all admins.
2021-01-02 12:21:36 -06:00
Joseph Milazzo
c429c50ba2
Fixed a bug in ScanLibrary that caused duplicated Volumes. Implemented APIs for navigating down to Volume for webui.
...
This is rough code and needs to be polished and refactored.
2021-01-01 14:04:31 -06:00
Joseph Milazzo
380c3e7b3c
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