Feature/performance pdf (#427)

* Added Timeout for Regex matching to ensure malicious filenames don't crash system

* Refactored GetCoverImage to use series format rather than library type

* Refactored download logs to use the download service

* Fixed accent color not looking well on light theme

* Refactored series format into dedicated component and added to search results

* Switch to using MemoryManager for Streams to attempt to minimize GC pressure and reduced bitmap manipulation for transparency hack.

* Refactored PDF extraction to re-use the same MemoryStream for all pages

* Debug code for another issue that only users with OpenMediaVault can run
This commit is contained in:
Joseph Milazzo 2021-07-24 17:17:28 -05:00 committed by GitHub
parent 81dfd63250
commit 107b70226c
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 13 additions and 9 deletions

View file

@ -7,6 +7,6 @@ export interface SearchResult {
name: string;
originalName: string;
sortName: string;
coverImage: string; // byte64 encoded
coverImage: string; // byte64 encoded (not used)
format: MangaFormat;
}