mirror of
https://github.com/gotson/komga.git
synced 2025-01-08 11:47:47 +08:00
chore(release): 0.75.0 [skip ci]
# [0.75.0](https://github.com/gotson/komga/compare/v0.74.0...v0.75.0) (2021-02-26) ### Bug Fixes * **webui:** filter panel would not display values properly ([0c5a744
](0c5a7447f8
)) * translated using Weblate (Chinese (Simplified)) ([#430](https://github.com/gotson/komga/issues/430)) ([b68e3e5
](b68e3e54b8
)) ### Features * **api:** filter series and books by authors ([bd64381
](bd64381a8e
)), closes [#339](https://github.com/gotson/komga/issues/339) * **api:** revamp search authors ([f549067
](f549067a8a
)) * **webui:** filter series and books by authors ([c2c2f58
](c2c2f58f1a
)), closes [#339](https://github.com/gotson/komga/issues/339)
This commit is contained in:
parent
a498bb1c81
commit
ecb1d63ce1
15
CHANGELOG.md
15
CHANGELOG.md
@ -1,3 +1,18 @@
|
||||
# [0.75.0](https://github.com/gotson/komga/compare/v0.74.0...v0.75.0) (2021-02-26)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **webui:** filter panel would not display values properly ([0c5a744](https://github.com/gotson/komga/commit/0c5a7447f8b7d76e5ad5af3a482dae7e64289261))
|
||||
* translated using Weblate (Chinese (Simplified)) ([#430](https://github.com/gotson/komga/issues/430)) ([b68e3e5](https://github.com/gotson/komga/commit/b68e3e54b86ee258f2b4cae7ab0d6a9641f041d1))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **api:** filter series and books by authors ([bd64381](https://github.com/gotson/komga/commit/bd64381a8e869b26c84168722a100b1e9572c505)), closes [#339](https://github.com/gotson/komga/issues/339)
|
||||
* **api:** revamp search authors ([f549067](https://github.com/gotson/komga/commit/f549067a8ae3e0e5a44eac97aa8002712b0d20b1))
|
||||
* **webui:** filter series and books by authors ([c2c2f58](https://github.com/gotson/komga/commit/c2c2f58f1a4fc24a46bc9377768d75fa5f73c6ac)), closes [#339](https://github.com/gotson/komga/issues/339)
|
||||
|
||||
# [0.74.0](https://github.com/gotson/komga/compare/v0.73.2...v0.74.0) (2021-02-25)
|
||||
|
||||
|
||||
|
@ -1 +1 @@
|
||||
version=0.74.0
|
||||
version=0.75.0
|
||||
|
@ -40,13 +40,13 @@
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -859,13 +859,13 @@
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -1325,13 +1325,13 @@
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -1371,13 +1371,13 @@
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"numberOfElements": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"size": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
@ -2379,6 +2379,21 @@
|
||||
"in": "query",
|
||||
"name": "size",
|
||||
"description": "The size of the page to be returned"
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "author",
|
||||
"description": "Author criteria in the format: name,role. Multiple author criteria are supported.",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
@ -2790,6 +2805,40 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/authors/names": {
|
||||
"get": {
|
||||
"operationId": "getAuthorsNames",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"parameters": [
|
||||
{
|
||||
"schema": {
|
||||
"default": "",
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "search",
|
||||
"required": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
"referential-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/series/{seriesId}/metadata/refresh": {
|
||||
"post": {
|
||||
"operationId": "refreshMetadata",
|
||||
@ -2920,6 +2969,21 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "author",
|
||||
"description": "Author criteria in the format: name,role. Multiple author criteria are supported.",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
@ -3663,6 +3727,21 @@
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
{
|
||||
"in": "query",
|
||||
"name": "author",
|
||||
"description": "Author criteria in the format: name,role. Multiple author criteria are supported.",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
@ -4065,6 +4144,29 @@
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/authors/roles": {
|
||||
"get": {
|
||||
"operationId": "getAuthorsRoles",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"referential-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/users/me/password": {
|
||||
"patch": {
|
||||
"requestBody": {
|
||||
@ -4659,7 +4761,7 @@
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
"$ref": "#/components/schemas/AuthorDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -4675,6 +4777,30 @@
|
||||
"in": "query",
|
||||
"name": "search",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "library_id",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "collection_id",
|
||||
"required": false
|
||||
},
|
||||
{
|
||||
"schema": {
|
||||
"type": "string"
|
||||
},
|
||||
"in": "query",
|
||||
"name": "series_id",
|
||||
"required": false
|
||||
}
|
||||
],
|
||||
"tags": [
|
||||
|
Loading…
Reference in New Issue
Block a user