mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 15:34:17 +01:00
chore(release): 0.127.0 [skip ci]
# [0.127.0](https://github.com/gotson/komga/compare/v0.126.0...v0.127.0) (2021-09-16) ### Bug Fixes * **api:** add maxNumberSort to TachiyomiReadProgressV2Dto.kt ([5e9cb43](5e9cb43710)) ### Features * **api:** cancel all tasks ([aff4418](aff4418256)) * **webui:** cancel all tasks from Server Settings ([3bbb521](3bbb521bd6)), closes [#658](https://github.com/gotson/komga/issues/658)
This commit is contained in:
parent
3bbb521bd6
commit
22126e1c7d
3 changed files with 51 additions and 2 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,3 +1,16 @@
|
|||
# [0.127.0](https://github.com/gotson/komga/compare/v0.126.0...v0.127.0) (2021-09-16)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **api:** add maxNumberSort to TachiyomiReadProgressV2Dto.kt ([5e9cb43](https://github.com/gotson/komga/commit/5e9cb43710a1263aead9fe3479a7a3c4c532535e))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **api:** cancel all tasks ([aff4418](https://github.com/gotson/komga/commit/aff4418256bd437d1da40e0bcc612ecfa9312d0a))
|
||||
* **webui:** cancel all tasks from Server Settings ([3bbb521](https://github.com/gotson/komga/commit/3bbb521bd6284e44cb396cf5a58b189813207744)), closes [#658](https://github.com/gotson/komga/issues/658)
|
||||
|
||||
# [0.126.0](https://github.com/gotson/komga/compare/v0.125.4...v0.126.0) (2021-09-15)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
version=0.126.0
|
||||
version=0.127.0
|
||||
org.gradle.jvmargs=-Xmx2G -XX:MaxPermSize=2G
|
||||
|
|
|
|||
|
|
@ -602,13 +602,18 @@
|
|||
"booksInProgressCount",
|
||||
"booksReadCount",
|
||||
"booksUnreadCount",
|
||||
"lastReadContinuousNumberSort"
|
||||
"lastReadContinuousNumberSort",
|
||||
"maxNumberSort"
|
||||
],
|
||||
"properties": {
|
||||
"lastReadContinuousNumberSort": {
|
||||
"format": "float",
|
||||
"type": "number"
|
||||
},
|
||||
"maxNumberSort": {
|
||||
"format": "float",
|
||||
"type": "number"
|
||||
},
|
||||
"booksReadCount": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
|
|
@ -3525,6 +3530,37 @@
|
|||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/tasks": {
|
||||
"delete": {
|
||||
"operationId": "emptyTaskQueue",
|
||||
"responses": {
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"format": "int32",
|
||||
"type": "integer"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"tags": [
|
||||
"task-controller"
|
||||
]
|
||||
}
|
||||
},
|
||||
"/api/v1/books/{bookId}/previous": {
|
||||
"get": {
|
||||
"operationId": "getBookSiblingPrevious_1",
|
||||
|
|
|
|||
Loading…
Reference in a new issue