From 5e30e9dcd52bf67f31161d2ae486015aaa7153e2 Mon Sep 17 00:00:00 2001 From: semantic-release-bot Date: Mon, 13 Jul 2020 12:53:17 +0000 Subject: [PATCH] chore(release): 0.46.0 [skip ci] # [0.46.0](https://github.com/gotson/komga/compare/v0.45.2...v0.46.0) (2020-07-13) ### Features * **webui:** add simple next/previous book buttons to reader toolbar ([e428115](https://github.com/gotson/komga/commit/e4281156f5398d478257ee699d7016c1aa5ee81c)), closes [#233](https://github.com/gotson/komga/issues/233) --- CHANGELOG.md | 7 +++ gradle.properties | 2 +- komga/docs/openapi.json | 130 ++++++++++++++++++++-------------------- 3 files changed, 73 insertions(+), 66 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f5d3071b..9307ccf63 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# [0.46.0](https://github.com/gotson/komga/compare/v0.45.2...v0.46.0) (2020-07-13) + + +### Features + +* **webui:** add simple next/previous book buttons to reader toolbar ([e428115](https://github.com/gotson/komga/commit/e4281156f5398d478257ee699d7016c1aa5ee81c)), closes [#233](https://github.com/gotson/komga/issues/233) + ## [0.45.2](https://github.com/gotson/komga/compare/v0.45.1...v0.45.2) (2020-07-05) diff --git a/gradle.properties b/gradle.properties index 83335a76d..1a5da107f 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.45.2 +version=0.46.0 diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index e8ac0ad04..1fcd6d9f0 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/series/latest": { - "get": { - "operationId": "getLatestSeries_1", - "responses": { - "200": { - "description": "default response", - "content": { - "application/xml": { - "schema": { - "$ref": "#/components/schemas/OpdsFeed" - } - }, - "application/atom+xml": { - "schema": { - "$ref": "#/components/schemas/OpdsFeed" - } - }, - "text/xml": { - "schema": { - "$ref": "#/components/schemas/OpdsFeed" - } - } - } - } - }, - "tags": [ - "opds-controller" - ] - } - }, "/opds/v1.2/search": { "get": { "operationId": "getSearch", @@ -1156,6 +1126,36 @@ ] } }, + "/opds/v1.2/series/latest": { + "get": { + "operationId": "getLatestSeries_1", + "responses": { + "200": { + "description": "default response", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/OpdsFeed" + } + }, + "application/atom+xml": { + "schema": { + "$ref": "#/components/schemas/OpdsFeed" + } + }, + "text/xml": { + "schema": { + "$ref": "#/components/schemas/OpdsFeed" + } + } + } + } + }, + "tags": [ + "opds-controller" + ] + } + }, "/api/v1/books/{bookId}/next": { "get": { "operationId": "getBookSiblingNext", @@ -3262,19 +3262,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": [ @@ -3293,23 +3297,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": [