chore(release): 0.52.1 [skip ci]

## [0.52.1](https://github.com/gotson/komga/compare/v0.52.0...v0.52.1) (2020-08-06)

### Bug Fixes

* **webreader:** webtoon reader not loading images ([1a030b4](1a030b4db5)), closes [#259](https://github.com/gotson/komga/issues/259)
This commit is contained in:
semantic-release-bot 2020-08-06 06:21:39 +00:00
parent 1a030b4db5
commit cd12adf20a
3 changed files with 63 additions and 56 deletions

View File

@ -1,3 +1,10 @@
## [0.52.1](https://github.com/gotson/komga/compare/v0.52.0...v0.52.1) (2020-08-06)
### Bug Fixes
* **webreader:** webtoon reader not loading images ([1a030b4](https://github.com/gotson/komga/commit/1a030b4db558b02e996246670f6ce86094f00495)), closes [#259](https://github.com/gotson/komga/issues/259)
# [0.52.0](https://github.com/gotson/komga/compare/v0.51.1...v0.52.0) (2020-08-06)

View File

@ -1 +1 @@
version=0.52.0
version=0.52.1

View File

@ -1008,36 +1008,6 @@
],
"openapi": "3.0.1",
"paths": {
"/opds/v1.2/series/latest": {
"get": {
"operationId": "getLatestSeries_1",
"responses": {
"200": {
"description": "OK",
"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",
@ -1068,6 +1038,36 @@
]
}
},
"/opds/v1.2/series/latest": {
"get": {
"operationId": "getLatestSeries_1",
"responses": {
"200": {
"description": "OK",
"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",
@ -3214,22 +3214,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": [
@ -3247,19 +3244,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": [