ISBN Support (#1985)
* Fixed a bug where weblinks would always show * Started to try and support ico -> png conversion by manually grabbing image data out, but it's hard as hell. * Implemented ability to parse out ISBN codes for books and ISBN-13 codes for ComicInfo. I can't figure out ISBN-10. * Fixed Favicon not working on anything but windows * Implemented ISBN support into Kavita * Don't round so much when transforming bytes
This commit is contained in:
parent
a293500f42
commit
6be9ee39f4
18 changed files with 2083 additions and 15 deletions
|
@ -10591,6 +10591,10 @@
|
|||
"description": "Comma-separated link of urls to external services that have some relation to the Chapter",
|
||||
"nullable": true
|
||||
},
|
||||
"isbn": {
|
||||
"type": "string",
|
||||
"nullable": true
|
||||
},
|
||||
"people": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
|
@ -10750,6 +10754,11 @@
|
|||
"type": "string",
|
||||
"description": "Comma-separated link of urls to external services that have some relation to the Chapter",
|
||||
"nullable": true
|
||||
},
|
||||
"isbn": {
|
||||
"type": "string",
|
||||
"description": "ISBN-13 (usually) of the Chapter",
|
||||
"nullable": true
|
||||
}
|
||||
},
|
||||
"additionalProperties": false,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue