mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-03-09 11:35:31 -04:00
Changed how covers are merged together. Now a cover image will always be generated for reading list and collections. Fixed reading list page being a bit laggy due to a missing trackby function. Reading list page will now show the cover image always. Collection detail page will only hide the image if there is no summary on the collection.
26 lines
680 B
TypeScript
26 lines
680 B
TypeScript
import { EncodeFormat } from "./encode-format";
|
|
import {CoverImageSize} from "./cover-image-size";
|
|
|
|
export interface ServerSettings {
|
|
cacheDirectory: string;
|
|
taskScan: string;
|
|
taskBackup: string;
|
|
loggingLevel: string;
|
|
port: number;
|
|
ipAddresses: string;
|
|
allowStatCollection: boolean;
|
|
enableOpds: boolean;
|
|
baseUrl: string;
|
|
bookmarksDirectory: string;
|
|
emailServiceUrl: string;
|
|
encodeMediaAs: EncodeFormat;
|
|
totalBackups: number;
|
|
totalLogs: number;
|
|
enableFolderWatching: boolean;
|
|
hostName: string;
|
|
cacheSize: number;
|
|
onDeckProgressDays: number;
|
|
onDeckUpdateDays: number;
|
|
coverImageSize: CoverImageSize;
|
|
}
|