mirror of
https://github.com/gotson/komga.git
synced 2025-12-28 11:24:59 +01:00
chore(release): 0.52.2 [skip ci]
## [0.52.2](https://github.com/gotson/komga/compare/v0.52.1...v0.52.2) (2020-08-07) ### Bug Fixes * some PDF pages are blurry ([9ad1cfe](9ad1cfe809)), closes [#260](https://github.com/gotson/komga/issues/260) * **webreader:** incorrect display on safari and firefox ([22b0b7e](22b0b7e748)), closes [#262](https://github.com/gotson/komga/issues/262) * **webui:** missing settings icon in sidebar ([b9e4bea](b9e4bea71b)) * **webui:** thumbnails explorer navigation misaligned ([2ffed28](2ffed282d7))
This commit is contained in:
parent
9ad1cfe809
commit
c6ba916bb8
3 changed files with 66 additions and 56 deletions
10
CHANGELOG.md
10
CHANGELOG.md
|
|
@ -1,3 +1,13 @@
|
|||
## [0.52.2](https://github.com/gotson/komga/compare/v0.52.1...v0.52.2) (2020-08-07)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* some PDF pages are blurry ([9ad1cfe](https://github.com/gotson/komga/commit/9ad1cfe80975639a349a99a45e874efd3aba7e1b)), closes [#260](https://github.com/gotson/komga/issues/260)
|
||||
* **webreader:** incorrect display on safari and firefox ([22b0b7e](https://github.com/gotson/komga/commit/22b0b7e7480d45728c92eb0f418b8143fb523de7)), closes [#262](https://github.com/gotson/komga/issues/262)
|
||||
* **webui:** missing settings icon in sidebar ([b9e4bea](https://github.com/gotson/komga/commit/b9e4bea71b3a1168312961e104109669feef8078))
|
||||
* **webui:** thumbnails explorer navigation misaligned ([2ffed28](https://github.com/gotson/komga/commit/2ffed282d705bb74336e191bb28708b1a0337da4))
|
||||
|
||||
## [0.52.1](https://github.com/gotson/komga/compare/v0.52.0...v0.52.1) (2020-08-06)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
version=0.52.1
|
||||
version=0.52.2
|
||||
|
|
|
|||
|
|
@ -1008,36 +1008,6 @@
|
|||
],
|
||||
"openapi": "3.0.1",
|
||||
"paths": {
|
||||
"/opds/v1.2/search": {
|
||||
"get": {
|
||||
"operationId": "getSearch",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpenSearchDescription"
|
||||
}
|
||||
},
|
||||
"application/atom+xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpenSearchDescription"
|
||||
}
|
||||
},
|
||||
"text/xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpenSearchDescription"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"opds-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/opds/v1.2/series/latest": {
|
||||
"get": {
|
||||
"operationId": "getLatestSeries_1",
|
||||
|
|
@ -1068,6 +1038,36 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"/opds/v1.2/search": {
|
||||
"get": {
|
||||
"operationId": "getSearch",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpenSearchDescription"
|
||||
}
|
||||
},
|
||||
"application/atom+xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpenSearchDescription"
|
||||
}
|
||||
},
|
||||
"text/xml": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/OpenSearchDescription"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"opds-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/books/{bookId}/next": {
|
||||
"get": {
|
||||
"operationId": "getBookSiblingNext",
|
||||
|
|
@ -3214,19 +3214,22 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/books/{bookId}": {
|
||||
"get": {
|
||||
"operationId": "getOneBook",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/BookDto"
|
||||
}
|
||||
"/api/v1/books/{bookId}/metadata": {
|
||||
"patch": {
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/BookMetadataUpdateDto"
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
"operationId": "updateMetadata",
|
||||
"responses": {
|
||||
"204": {
|
||||
"description": "No Content"
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
|
|
@ -3244,22 +3247,19 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/books/{bookId}/metadata": {
|
||||
"patch": {
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/BookMetadataUpdateDto"
|
||||
"/api/v1/books/{bookId}": {
|
||||
"get": {
|
||||
"operationId": "getOneBook",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/BookDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"required": true
|
||||
},
|
||||
"operationId": "updateMetadata",
|
||||
"responses": {
|
||||
"204": {
|
||||
"description": "No Content"
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
|
|
|
|||
Loading…
Reference in a new issue