diff --git a/CHANGELOG.md b/CHANGELOG.md index 4c17b2040..a48797639 100644 --- a/CHANGELOG.md +++ b/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) diff --git a/gradle.properties b/gradle.properties index de38d630b..3e191783a 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.52.1 +version=0.52.2 diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index 8152a3e38..475bf3af7 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -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": [