chore(release): 0.159.1 [skip ci]

## [0.159.1](https://github.com/gotson/komga/compare/v0.159.0...v0.159.1) (2023-01-18)

### Bug Fixes

* **webui:** edit series dialog shows wrong tabs when editing multiple items ([12d2cbc](12d2cbcd09)), closes [#1049](https://github.com/gotson/komga/issues/1049)
This commit is contained in:
semantic-release-bot 2023-01-18 03:25:23 +00:00
parent 12d2cbcd09
commit 80b27989fb
3 changed files with 23 additions and 16 deletions

View file

@ -1,3 +1,10 @@
## [0.159.1](https://github.com/gotson/komga/compare/v0.159.0...v0.159.1) (2023-01-18)
### Bug Fixes
* **webui:** edit series dialog shows wrong tabs when editing multiple items ([12d2cbc](https://github.com/gotson/komga/commit/12d2cbcd09865471c447de9b71e24e8deb3b3675)), closes [#1049](https://github.com/gotson/komga/issues/1049)
# [0.159.0](https://github.com/gotson/komga/compare/v0.158.0...v0.159.0) (2023-01-17)

View file

@ -1,2 +1,2 @@
version=0.159.0
version=0.159.1
org.gradle.jvmargs=-Xmx2G

View file

@ -9683,6 +9683,15 @@
"type": "integer",
"format": "int32"
},
"readingDirection": {
"type": "string",
"enum": [
"LEFT_TO_RIGHT",
"RIGHT_TO_LEFT",
"VERTICAL",
"WEBTOON"
]
},
"genres": {
"uniqueItems": true,
"type": "array",
@ -9694,15 +9703,6 @@
"type": "integer",
"format": "int32"
},
"readingDirection": {
"type": "string",
"enum": [
"LEFT_TO_RIGHT",
"RIGHT_TO_LEFT",
"VERTICAL",
"WEBTOON"
]
},
"alternateTitles": {
"type": "array",
"items": {
@ -9848,12 +9848,6 @@
"$ref": "#/components/schemas/WebLinkUpdateDto"
}
},
"authors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AuthorUpdateDto"
}
},
"isbn": {
"type": "string"
},
@ -9861,6 +9855,12 @@
"type": "string",
"format": "date"
},
"authors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AuthorUpdateDto"
}
},
"summary": {
"type": "string"
}