mirror of
https://github.com/gotson/komga.git
synced 2025-01-08 11:47:47 +08:00
chore(release): 0.64.7 [skip ci]
## [0.64.7](https://github.com/gotson/komga/compare/v0.64.6...v0.64.7) (2020-12-18) ### Bug Fixes * **opds:** duplicate series if in multiple collections ([c7e6209
](c7e6209765
)), closes [#363](https://github.com/gotson/komga/issues/363)
This commit is contained in:
parent
c7e6209765
commit
53750b2ad9
@ -1,3 +1,10 @@
|
||||
## [0.64.7](https://github.com/gotson/komga/compare/v0.64.6...v0.64.7) (2020-12-18)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **opds:** duplicate series if in multiple collections ([c7e6209](https://github.com/gotson/komga/commit/c7e62097656b435bd3e728e95038a7986f226525)), closes [#363](https://github.com/gotson/komga/issues/363)
|
||||
|
||||
## [0.64.6](https://github.com/gotson/komga/compare/v0.64.5...v0.64.6) (2020-12-03)
|
||||
|
||||
|
||||
|
@ -1 +1 @@
|
||||
version=0.64.6
|
||||
version=0.64.7
|
||||
|
@ -1455,36 +1455,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",
|
||||
@ -1515,6 +1485,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",
|
||||
@ -4520,19 +4520,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": [
|
||||
@ -4550,22 +4553,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": [
|
||||
|
Loading…
Reference in New Issue
Block a user