mirror of
https://github.com/gotson/komga.git
synced 2025-01-08 11:47:47 +08:00
chore(release): 0.62.0 [skip ci]
# [0.62.0](https://github.com/gotson/komga/compare/v0.61.0...v0.62.0) (2020-08-28) ### Bug Fixes * **webui:** correct label in library edit dialog ([c532e50
](c532e50489
)) * **webui:** restore library filter for language and age rating ([dc064f2
](dc064f20ec
)) ### Features * **api:** filter collection's series ([cfa06a9
](cfa06a9d2b
)) * **api:** get all age ratings ([be80d86
](be80d86d6c
)) * **api:** get referential data by collection ([d7fd296
](d7fd296492
)) * **api:** search series by age rating ([f51d575
](f51d575bda
)) * **webui:** filter collection content ([fc905ef
](fc905ef9b5
)), closes [#270](https://github.com/gotson/komga/issues/270) * **webui:** filter series by age rating ([01eef83
](01eef838a2
))
This commit is contained in:
parent
fc905ef9b5
commit
18774cfdc5
18
CHANGELOG.md
18
CHANGELOG.md
@ -1,3 +1,21 @@
|
||||
# [0.62.0](https://github.com/gotson/komga/compare/v0.61.0...v0.62.0) (2020-08-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **webui:** correct label in library edit dialog ([c532e50](https://github.com/gotson/komga/commit/c532e50489aa5c873cc3c64da9918cd48f1d9ff7))
|
||||
* **webui:** restore library filter for language and age rating ([dc064f2](https://github.com/gotson/komga/commit/dc064f20ecd671e35b399b79263b180214ce6498))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **api:** filter collection's series ([cfa06a9](https://github.com/gotson/komga/commit/cfa06a9d2bd890e37bf46ba70c8494e7a27a1a15))
|
||||
* **api:** get all age ratings ([be80d86](https://github.com/gotson/komga/commit/be80d86d6cba564293053f883c0ceda186652fe0))
|
||||
* **api:** get referential data by collection ([d7fd296](https://github.com/gotson/komga/commit/d7fd2964928530e221be800d4cafe4334dbbf368))
|
||||
* **api:** search series by age rating ([f51d575](https://github.com/gotson/komga/commit/f51d575bda49a89ff565009aec4a0b866095e2d9))
|
||||
* **webui:** filter collection content ([fc905ef](https://github.com/gotson/komga/commit/fc905ef9b5bda44e1da67299e9e87865a04652ab)), closes [#270](https://github.com/gotson/komga/issues/270)
|
||||
* **webui:** filter series by age rating ([01eef83](https://github.com/gotson/komga/commit/01eef838a20ee01b179bf3ad5dcd03b94f0e7a8b))
|
||||
|
||||
# [0.61.0](https://github.com/gotson/komga/compare/v0.60.0...v0.61.0) (2020-08-27)
|
||||
|
||||
|
||||
|
@ -1 +1 @@
|
||||
version=0.61.0
|
||||
version=0.62.0
|
||||
|
@ -1572,6 +1572,14 @@
|
||||
"in": "query",
|
||||
"name": "library_id",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "collection_id",
|
||||
"required": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
@ -1925,6 +1933,105 @@
|
||||
"name": "id",
|
||||
"required": true
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "library_id",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"ENDED",
|
||||
"ONGOING",
|
||||
"ABANDONED",
|
||||
"HIATUS"
|
||||
]
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "status",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"UNREAD",
|
||||
"READ",
|
||||
"IN_PROGRESS"
|
||||
]
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "read_status",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "publisher",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "language",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "genre",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "tag",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "age_rating",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "boolean"
|
||||
@ -2150,6 +2257,14 @@
|
||||
"in": "query",
|
||||
"name": "library_id",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "collection_id",
|
||||
"required": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
@ -2781,6 +2896,48 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/age-ratings": {
|
||||
"get": {
|
||||
"operationId": "getAgeRatings",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
{
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "library_id",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "collection_id",
|
||||
"required": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"referential-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/books/{bookId}/pages/{pageNumber}": {
|
||||
"get": {
|
||||
"operationId": "getBookPage",
|
||||
@ -2968,6 +3125,17 @@
|
||||
"name": "tag",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"in": "query",
|
||||
"name": "age_rating",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "boolean"
|
||||
@ -3781,6 +3949,14 @@
|
||||
"in": "query",
|
||||
"name": "series_id",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "collection_id",
|
||||
"required": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
@ -4038,6 +4214,14 @@
|
||||
"in": "query",
|
||||
"name": "library_id",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "collection_id",
|
||||
"required": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
|
Loading…
Reference in New Issue
Block a user