mirror of
https://github.com/gotson/komga.git
synced 2026-04-29 02:14:07 +02:00
chore(release): 0.120.2 [skip ci]
## [0.120.2](https://github.com/gotson/komga/compare/v0.120.1...v0.120.2) (2021-09-01) ### Bug Fixes * **api:** prevent retrieving own user activity in demo profile ([59c187f](59c187f3b7)), closes [#643](https://github.com/gotson/komga/issues/643) * **webui:** catch exception during authentication activity retrieval ([e4b136b](e4b136b28d)) * **webui:** don't display nothing to show while still loading ([dce4dde](dce4dde6b8)), closes [#648](https://github.com/gotson/komga/issues/648)
This commit is contained in:
parent
dce4dde6b8
commit
f3e0eb2382
3 changed files with 14 additions and 1 deletions
|
|
@ -1,3 +1,12 @@
|
|||
## [0.120.2](https://github.com/gotson/komga/compare/v0.120.1...v0.120.2) (2021-09-01)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* **api:** prevent retrieving own user activity in demo profile ([59c187f](https://github.com/gotson/komga/commit/59c187f3b769550e788a5fbf8031fc59fa33b41b)), closes [#643](https://github.com/gotson/komga/issues/643)
|
||||
* **webui:** catch exception during authentication activity retrieval ([e4b136b](https://github.com/gotson/komga/commit/e4b136b28d794136b60d513e166ff8014cd9cf82))
|
||||
* **webui:** don't display nothing to show while still loading ([dce4dde](https://github.com/gotson/komga/commit/dce4dde6b8a87a5b5a910181dcf23cf8fa3ba3a1)), closes [#648](https://github.com/gotson/komga/issues/648)
|
||||
|
||||
## [0.120.1](https://github.com/gotson/komga/compare/v0.120.0...v0.120.1) (2021-08-31)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
version=0.120.1
|
||||
version=0.120.2
|
||||
org.gradle.jvmargs=-Xmx2G -XX:MaxPermSize=2G
|
||||
|
|
|
|||
|
|
@ -3707,6 +3707,7 @@
|
|||
},
|
||||
"required": true
|
||||
},
|
||||
"description": "Mark book as read and/or change page progress",
|
||||
"operationId": "markReadProgress",
|
||||
"responses": {
|
||||
"400": {
|
||||
|
|
@ -3738,6 +3739,7 @@
|
|||
]
|
||||
},
|
||||
"delete": {
|
||||
"description": "Mark book as unread",
|
||||
"operationId": "deleteReadProgress",
|
||||
"responses": {
|
||||
"400": {
|
||||
|
|
@ -3934,6 +3936,7 @@
|
|||
},
|
||||
"/api/v1/series/{seriesId}/read-progress": {
|
||||
"post": {
|
||||
"description": "Mark all book for series as read",
|
||||
"operationId": "markAsRead",
|
||||
"responses": {
|
||||
"400": {
|
||||
|
|
@ -3965,6 +3968,7 @@
|
|||
]
|
||||
},
|
||||
"delete": {
|
||||
"description": "Mark all book for series as unread",
|
||||
"operationId": "markAsUnread",
|
||||
"responses": {
|
||||
"400": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue