mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 15:34:17 +01:00
chore(release): 0.45.0 [skip ci]
# [0.45.0](https://github.com/gotson/komga/compare/v0.44.0...v0.45.0) (2020-07-05) ### Features * **api:** claim status ([47dd2f6](47dd2f66e0)), closes [#207](https://github.com/gotson/komga/issues/207) * **webui:** claim server from login screen ([d4810bd](d4810bdc80)), closes [#207](https://github.com/gotson/komga/issues/207)
This commit is contained in:
parent
d4810bdc80
commit
e04ad3c844
3 changed files with 35 additions and 1 deletions
|
|
@ -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)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1 +1 @@
|
|||
version=0.44.0
|
||||
version=0.45.0
|
||||
|
|
|
|||
|
|
@ -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": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue