diff --git a/CHANGELOG.md b/CHANGELOG.md index 026fe8a175..4f8c185a50 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,27 @@ +# [1.12.1](https://github.com/gotson/komga/compare/1.12.0...1.12.1) (2024-09-04) +## 🐛 Fixes +**kobo** +- better handling of missing port from Kobo Sync requests ([4cd838a](https://github.com/gotson/komga/commits/4cd838a)) +- use the total progression sent by Kobo ([be37127](https://github.com/gotson/komga/commits/be37127)) +- correctly propagate metadata update during kobo sync ([20e7c29](https://github.com/gotson/komga/commits/20e7c29)) +- properly store total progression on state update ([fcde9c9](https://github.com/gotson/komga/commits/fcde9c9)) +- properly mark book as read when finished on Kobo ([c3fc37a](https://github.com/gotson/komga/commits/c3fc37a)) + +**webui** +- only show API key copy button if clipboard is available ([4351086](https://github.com/gotson/komga/commits/4351086)), closes [#1675](https://github.com/gotson/komga/issues/1675) + +## 🔄️ Changes + +- adjust loglevel for LoginListener ([2c260b1](https://github.com/gotson/komga/commits/2c260b1)) + +## 🛠 Build +**webui** +- update Browserslist db ([63e1c0c](https://github.com/gotson/komga/commits/63e1c0c)) + +## 📝 Documentation + +- add kobo sync in readme ([02e8d30](https://github.com/gotson/komga/commits/02e8d30)) + # [1.12.0](https://github.com/gotson/komga/compare/1.11.3...1.12.0) (2024-08-29) ## 🚀 Features **kobo** diff --git a/gradle.properties b/gradle.properties index a302e41d8f..dbe77d268b 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,2 +1,2 @@ -version=1.12.0 +version=1.12.1 org.gradle.jvmargs=-Xmx2G diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index ddb467fa88..c5bc85998e 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -12409,6 +12409,11 @@ "serverContextPath": { "pattern": "^\\/[\\w-\\/]*[a-zA-Z0-9]$", "type": "string" + }, + "koboPort": { + "maximum": 65535, + "type": "integer", + "format": "int32" } } }, @@ -13663,6 +13668,10 @@ }, "koboProxy": { "type": "boolean" + }, + "koboPort": { + "type": "integer", + "format": "int32" } } },