chore(release): 0.121.0 [skip ci]

# [0.121.0](https://github.com/gotson/komga/compare/v0.120.3...v0.121.0) (2021-09-04)

### Features

* **api:** read progress v2 for Tachiyomi ([9d92b25](9d92b2594d))
This commit is contained in:
semantic-release-bot 2021-09-04 04:49:24 +00:00
parent 9d92b2594d
commit 64ff2f533c
3 changed files with 135 additions and 1 deletions

View File

@ -1,3 +1,10 @@
# [0.121.0](https://github.com/gotson/komga/compare/v0.120.3...v0.121.0) (2021-09-04)
### Features
* **api:** read progress v2 for Tachiyomi ([9d92b25](https://github.com/gotson/komga/commit/9d92b2594d5b32df1963671871185fb76b4e7d30))
## [0.120.3](https://github.com/gotson/komga/compare/v0.120.2...v0.120.3) (2021-09-02)

View File

@ -1,2 +1,2 @@
version=0.120.3
version=0.121.0
org.gradle.jvmargs=-Xmx2G -XX:MaxPermSize=2G

View File

@ -572,6 +572,38 @@
}
}
},
"TachiyomiReadProgressV2Dto": {
"type": "object",
"required": [
"booksCount",
"booksInProgressCount",
"booksReadCount",
"booksUnreadCount",
"lastReadContinuousNumberSort"
],
"properties": {
"lastReadContinuousNumberSort": {
"format": "float",
"type": "number"
},
"booksReadCount": {
"format": "int32",
"type": "integer"
},
"booksCount": {
"format": "int32",
"type": "integer"
},
"booksUnreadCount": {
"format": "int32",
"type": "integer"
},
"booksInProgressCount": {
"format": "int32",
"type": "integer"
}
}
},
"PageReadListDto": {
"type": "object",
"properties": {
@ -618,6 +650,18 @@
}
}
},
"TachiyomiReadProgressUpdateV2Dto": {
"type": "object",
"required": [
"lastBookNumberSortRead"
],
"properties": {
"lastBookNumberSortRead": {
"format": "float",
"type": "number"
}
}
},
"SeriesDto": {
"type": "object",
"required": [
@ -6883,6 +6927,87 @@
]
}
},
"/api/v2/series/{seriesId}/read-progress/tachiyomi": {
"get": {
"operationId": "getReadProgressTachiyomiV2",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TachiyomiReadProgressV2Dto"
}
}
}
},
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
}
},
"parameters": [
{
"schema": {
"type": "string"
},
"in": "path",
"name": "seriesId",
"required": true
}
],
"tags": [
"series-controller"
]
},
"put": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/TachiyomiReadProgressUpdateV2Dto"
}
}
},
"required": true
},
"operationId": "markReadProgressTachiyomiV2",
"responses": {
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
},
"204": {
"description": "No Content"
}
},
"parameters": [
{
"schema": {
"type": "string"
},
"in": "path",
"name": "seriesId",
"required": true
}
],
"tags": [
"series-controller"
]
}
},
"/api/v1/transient-books": {
"post": {
"requestBody": {
@ -7313,6 +7438,7 @@
},
"/api/v1/series/{seriesId}/read-progress/tachiyomi": {
"get": {
"deprecated": true,
"operationId": "getReadProgressTachiyomi",
"responses": {
"200": {
@ -7361,6 +7487,7 @@
},
"required": true
},
"deprecated": true,
"operationId": "markReadProgressTachiyomi",
"responses": {
"400": {