chore(release): 0.165.0 [skip ci]

This commit is contained in:
github-actions 2023-03-17 05:10:54 +00:00
parent 14c0bf4ad2
commit a66530e26c
3 changed files with 45 additions and 28 deletions

View File

@ -1,3 +1,20 @@
# [0.165.0](https://github.com/gotson/komga/compare/v0.164.0...v0.165.0) (2023-03-17)
## 🚀 Features
**metadata**
- import Comicinfo.xml's GTIN element as ISBN ([a51bf46](https://github.com/gotson/komga/commits/a51bf46))
**webui**
- use a datepicker to select book release date ([14c0bf4](https://github.com/gotson/komga/commits/14c0bf4)), closes [#1094](https://github.com/gotson/komga/issues/1094)
**unscoped**
- better handling of read progress when a book file changed ([5050a4e](https://github.com/gotson/komga/commits/5050a4e)), closes [#1093](https://github.com/gotson/komga/issues/1093)
## 🛠 Build
- better handling of temp directories ([c0d6bf2](https://github.com/gotson/komga/commits/c0d6bf2))
- add language injection for better readability ([c0d00cc](https://github.com/gotson/komga/commits/c0d00cc))
- inline xml and json files for better readability ([867f895](https://github.com/gotson/komga/commits/867f895))
# [0.164.0](https://github.com/gotson/komga/compare/v0.163.0...v0.164.0) (2023-03-14)
## 🚀 Features
**webui**

View File

@ -1,2 +1,2 @@
version=0.164.0
version=0.165.0
org.gradle.jvmargs=-Xmx2G

View File

@ -9601,13 +9601,6 @@
"UserUpdateDto": {
"type": "object",
"properties": {
"roles": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"ageRestriction": {
"$ref": "#/components/schemas/AgeRestrictionUpdateDto"
},
@ -9627,6 +9620,13 @@
},
"sharedLibraries": {
"$ref": "#/components/schemas/SharedLibrariesUpdateDto"
},
"roles": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
}
}
},
@ -9746,6 +9746,26 @@
"type": "string"
}
},
"sharingLabels": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"alternateTitles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AlternateTitleUpdateDto"
}
},
"genres": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"links": {
"type": "array",
"items": {
@ -9756,13 +9776,6 @@
"type": "integer",
"format": "int32"
},
"genres": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"totalBookCount": {
"type": "integer",
"format": "int32"
@ -9775,19 +9788,6 @@
"VERTICAL",
"WEBTOON"
]
},
"sharingLabels": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"alternateTitles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AlternateTitleUpdateDto"
}
}
},
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update."