diff --git a/CHANGELOG.md b/CHANGELOG.md index 9307ccf63..c5d0a17c7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [0.47.0](https://github.com/gotson/komga/compare/v0.46.0...v0.47.0) (2020-07-14) + + +### Features + +* **webui:** change internals for shortcuts. add new shortcuts for settings ([b402817](https://github.com/gotson/komga/commit/b402817edbface6d622d92c98347f6fe1914bf88)), closes [#172](https://github.com/gotson/komga/issues/172) + # [0.46.0](https://github.com/gotson/komga/compare/v0.45.2...v0.46.0) (2020-07-13) diff --git a/gradle.properties b/gradle.properties index 1a5da107f..42482588e 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.46.0 +version=0.47.0 diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index 1fcd6d9f0..e8ac0ad04 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -33,13 +33,13 @@ "format": "int32", "type": "integer" }, + "last": { + "type": "boolean" + }, "numberOfElements": { "format": "int32", "type": "integer" }, - "last": { - "type": "boolean" - }, "size": { "format": "int32", "type": "integer" @@ -885,13 +885,13 @@ "format": "int32", "type": "integer" }, + "last": { + "type": "boolean" + }, "numberOfElements": { "format": "int32", "type": "integer" }, - "last": { - "type": "boolean" - }, "size": { "format": "int32", "type": "integer" @@ -931,13 +931,13 @@ "format": "int32", "type": "integer" }, + "last": { + "type": "boolean" + }, "numberOfElements": { "format": "int32", "type": "integer" }, - "last": { - "type": "boolean" - }, "size": { "format": "int32", "type": "integer" @@ -1096,36 +1096,6 @@ ] } }, - "/opds/v1.2/search": { - "get": { - "operationId": "getSearch", - "responses": { - "200": { - "description": "default response", - "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", @@ -1156,6 +1126,36 @@ ] } }, + "/opds/v1.2/search": { + "get": { + "operationId": "getSearch", + "responses": { + "200": { + "description": "default response", + "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", @@ -3262,23 +3262,19 @@ ] } }, - "/api/v1/books/{bookId}/metadata": { - "patch": { - "requestBody": { - "description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BookMetadataUpdateDto" + "/api/v1/books/{bookId}": { + "get": { + "operationId": "getOneBook", + "responses": { + "200": { + "description": "default response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BookDto" + } } } - }, - "required": true - }, - "operationId": "updateMetadata", - "responses": { - "204": { - "description": "default response" } }, "parameters": [ @@ -3297,19 +3293,23 @@ ] } }, - "/api/v1/books/{bookId}": { - "get": { - "operationId": "getOneBook", - "responses": { - "200": { - "description": "default response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BookDto" - } + "/api/v1/books/{bookId}/metadata": { + "patch": { + "requestBody": { + "description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BookMetadataUpdateDto" } } + }, + "required": true + }, + "operationId": "updateMetadata", + "responses": { + "204": { + "description": "default response" } }, "parameters": [