mirror of
https://github.com/gotson/komga.git
synced 2025-01-08 11:47:47 +08:00
chore(release): 0.91.0 [skip ci]
# [0.91.0](https://github.com/gotson/komga/compare/v0.90.3...v0.91.0) (2021-05-04) ### Features * **webui:** automatic book conversion in library settings ([1c3e853
](1c3e853202
)) * automatic book conversion to cbz ([dc2663e
](dc2663ecb7
))
This commit is contained in:
parent
1c3e853202
commit
6725a189c0
@ -1,3 +1,11 @@
|
||||
# [0.91.0](https://github.com/gotson/komga/compare/v0.90.3...v0.91.0) (2021-05-04)
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **webui:** automatic book conversion in library settings ([1c3e853](https://github.com/gotson/komga/commit/1c3e853202b9fd5a4d3d7e7686304b20aa8abe8b))
|
||||
* automatic book conversion to cbz ([dc2663e](https://github.com/gotson/komga/commit/dc2663ecb78b70c06a8ba1e364986191b802e638))
|
||||
|
||||
## [0.90.3](https://github.com/gotson/komga/compare/v0.90.2...v0.90.3) (2021-05-04)
|
||||
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
version=0.90.3
|
||||
version=0.91.0
|
||||
org.gradle.jvmargs=-Xmx2G -XX:MaxPermSize=2G
|
||||
|
@ -544,10 +544,6 @@
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -555,6 +551,10 @@
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"totalPages": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -675,10 +675,6 @@
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -686,6 +682,10 @@
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"totalPages": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -721,10 +721,6 @@
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -732,6 +728,10 @@
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"totalPages": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -816,10 +816,6 @@
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -827,6 +823,10 @@
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"totalPages": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -1025,6 +1025,7 @@
|
||||
"LibraryUpdateDto": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"convertToCbz",
|
||||
"importBarcodeIsbn",
|
||||
"importComicInfoBook",
|
||||
"importComicInfoCollection",
|
||||
@ -1039,10 +1040,16 @@
|
||||
"scanForceModifiedTime"
|
||||
],
|
||||
"properties": {
|
||||
"importEpubSeries": {
|
||||
"importComicInfoReadList": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"importComicInfoReadList": {
|
||||
"scanDeep": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"scanForceModifiedTime": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"importEpubSeries": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"importComicInfoSeries": {
|
||||
@ -1051,6 +1058,9 @@
|
||||
"importComicInfoBook": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"convertToCbz": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"importEpubBook": {
|
||||
"type": "boolean"
|
||||
},
|
||||
@ -1068,18 +1078,13 @@
|
||||
},
|
||||
"importLocalArtwork": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"scanDeep": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"scanForceModifiedTime": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
"LibraryDto": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"convertToCbz",
|
||||
"id",
|
||||
"importBarcodeIsbn",
|
||||
"importComicInfoBook",
|
||||
@ -1113,6 +1118,9 @@
|
||||
"importComicInfoBook": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"convertToCbz": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"importEpubBook": {
|
||||
"type": "boolean"
|
||||
},
|
||||
@ -1473,6 +1481,7 @@
|
||||
"LibraryCreationDto": {
|
||||
"type": "object",
|
||||
"required": [
|
||||
"convertToCbz",
|
||||
"importBarcodeIsbn",
|
||||
"importComicInfoBook",
|
||||
"importComicInfoCollection",
|
||||
@ -1487,10 +1496,16 @@
|
||||
"scanForceModifiedTime"
|
||||
],
|
||||
"properties": {
|
||||
"importEpubSeries": {
|
||||
"importComicInfoReadList": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"importComicInfoReadList": {
|
||||
"scanDeep": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"scanForceModifiedTime": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"importEpubSeries": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"importComicInfoSeries": {
|
||||
@ -1499,6 +1514,9 @@
|
||||
"importComicInfoBook": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"convertToCbz": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"importEpubBook": {
|
||||
"type": "boolean"
|
||||
},
|
||||
@ -1516,12 +1534,6 @@
|
||||
},
|
||||
"importLocalArtwork": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"scanDeep": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"scanForceModifiedTime": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user