chore(release): 0.66.0 [skip ci]

# [0.66.0](https://github.com/gotson/komga/compare/v0.65.0...v0.66.0) (2021-01-06)

### Bug Fixes

* **api:** endpoint for books in readlist is not filtered properly ([cdca78b](cdca78b38f))

### Features

* **api:** find previous/next book in readlist ([bcfb203](bcfb203f74))
* **webreader:** navigate between books of a readlist ([3a3d85c](3a3d85c3fc)), closes [#310](https://github.com/gotson/komga/issues/310)
* **webui:** navigate between books of a readlist ([88d4342](88d4342ef5))
This commit is contained in:
semantic-release-bot 2021-01-06 08:16:45 +00:00
parent 3a3d85c3fc
commit 3bdd90db1f
3 changed files with 93 additions and 3 deletions

View File

@ -1,3 +1,17 @@
# [0.66.0](https://github.com/gotson/komga/compare/v0.65.0...v0.66.0) (2021-01-06)
### Bug Fixes
* **api:** endpoint for books in readlist is not filtered properly ([cdca78b](https://github.com/gotson/komga/commit/cdca78b38f1071e592d458cf9bc29c057d44197d))
### Features
* **api:** find previous/next book in readlist ([bcfb203](https://github.com/gotson/komga/commit/bcfb203f74e16fcc9df53e69720680a7cb328eb0))
* **webreader:** navigate between books of a readlist ([3a3d85c](https://github.com/gotson/komga/commit/3a3d85c3fc83f1a0c74adc091a843870b59bcc12)), closes [#310](https://github.com/gotson/komga/issues/310)
* **webui:** navigate between books of a readlist ([88d4342](https://github.com/gotson/komga/commit/88d4342ef5a17bb65f966b77620cd8dfbd7e42b9))
# [0.65.0](https://github.com/gotson/komga/compare/v0.64.8...v0.65.0) (2021-01-05)

View File

@ -1 +1 @@
version=0.65.0
version=0.66.0

View File

@ -1517,7 +1517,7 @@
},
"/api/v1/books/{bookId}/next": {
"get": {
"operationId": "getBookSiblingNext",
"operationId": "getBookSiblingNext_1",
"responses": {
"200": {
"description": "OK",
@ -2638,6 +2638,44 @@
]
}
},
"/api/v1/readlists/{id}/books/{bookId}/previous": {
"get": {
"operationId": "getBookSiblingPrevious",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
}
}
}
},
"parameters": [
{
"schema": {
"type": "string"
},
"in": "path",
"name": "id",
"required": true
},
{
"schema": {
"type": "string"
},
"in": "path",
"name": "bookId",
"required": true
}
],
"tags": [
"read-list-controller"
]
}
},
"/api/v1/series/{seriesId}/collections": {
"get": {
"operationId": "getAllCollectionsBySeries",
@ -3018,7 +3056,7 @@
},
"/api/v1/books/{bookId}/previous": {
"get": {
"operationId": "getBookSiblingPrevious",
"operationId": "getBookSiblingPrevious_1",
"responses": {
"200": {
"description": "OK",
@ -3939,6 +3977,44 @@
]
}
},
"/api/v1/readlists/{id}/books/{bookId}/next": {
"get": {
"operationId": "getBookSiblingNext",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
}
}
}
},
"parameters": [
{
"schema": {
"type": "string"
},
"in": "path",
"name": "id",
"required": true
},
{
"schema": {
"type": "string"
},
"in": "path",
"name": "bookId",
"required": true
}
],
"tags": [
"read-list-controller"
]
}
},
"/api/v1/series/{seriesId}/metadata": {
"patch": {
"requestBody": {