diff --git a/CHANGELOG.md b/CHANGELOG.md index 866b8b219..4c3aa7049 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +# [0.45.0](https://github.com/gotson/komga/compare/v0.44.0...v0.45.0) (2020-07-05) + + +### Features + +* **api:** claim status ([47dd2f6](https://github.com/gotson/komga/commit/47dd2f66e0049e04cfda0f8d62ff9b7c2f207873)), closes [#207](https://github.com/gotson/komga/issues/207) +* **webui:** claim server from login screen ([d4810bd](https://github.com/gotson/komga/commit/d4810bdc809d87cd94027566b0cbee10d6673a33)), closes [#207](https://github.com/gotson/komga/issues/207) + # [0.44.0](https://github.com/gotson/komga/compare/v0.43.4...v0.44.0) (2020-07-03) diff --git a/gradle.properties b/gradle.properties index 9ca7ff4f0..7da270299 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.44.0 +version=0.45.0 diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index dac971787..e8ac0ad04 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -854,6 +854,14 @@ } } }, + "ClaimStatus": { + "type": "object", + "properties": { + "claimed": { + "type": "boolean" + } + } + }, "SharedLibrariesUpdateDto": { "type": "object", "properties": { @@ -3395,6 +3403,24 @@ "tags": [ "claim-controller" ] + }, + "get": { + "operationId": "getClaimStatus", + "responses": { + "200": { + "description": "default response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/ClaimStatus" + } + } + } + } + }, + "tags": [ + "claim-controller" + ] } }, "/api/v1/series/updated": {