mirror of
https://github.com/gotson/komga.git
synced 2025-12-06 08:32:25 +01:00
chore(release): 1.12.1 [skip ci]
This commit is contained in:
parent
4351086935
commit
ee9011d698
3 changed files with 34 additions and 1 deletions
24
CHANGELOG.md
24
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)
|
# [1.12.0](https://github.com/gotson/komga/compare/1.11.3...1.12.0) (2024-08-29)
|
||||||
## 🚀 Features
|
## 🚀 Features
|
||||||
**kobo**
|
**kobo**
|
||||||
|
|
|
||||||
|
|
@ -1,2 +1,2 @@
|
||||||
version=1.12.0
|
version=1.12.1
|
||||||
org.gradle.jvmargs=-Xmx2G
|
org.gradle.jvmargs=-Xmx2G
|
||||||
|
|
|
||||||
|
|
@ -12409,6 +12409,11 @@
|
||||||
"serverContextPath": {
|
"serverContextPath": {
|
||||||
"pattern": "^\\/[\\w-\\/]*[a-zA-Z0-9]$",
|
"pattern": "^\\/[\\w-\\/]*[a-zA-Z0-9]$",
|
||||||
"type": "string"
|
"type": "string"
|
||||||
|
},
|
||||||
|
"koboPort": {
|
||||||
|
"maximum": 65535,
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
@ -13663,6 +13668,10 @@
|
||||||
},
|
},
|
||||||
"koboProxy": {
|
"koboProxy": {
|
||||||
"type": "boolean"
|
"type": "boolean"
|
||||||
|
},
|
||||||
|
"koboPort": {
|
||||||
|
"type": "integer",
|
||||||
|
"format": "int32"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue