mirror of
https://github.com/gotson/komga.git
synced 2025-01-08 11:47:47 +08:00
chore(release): 0.157.0 [skip ci]
# [0.157.0](https://github.com/gotson/komga/compare/v0.156.0...v0.157.0) (2022-07-28) ### Bug Fixes * add configuration to set the database pool size ([76e6241
](76e624140d
)) * default the max pool size to 1 ([c962f8a
](c962f8a7ab
)) * translated using Weblate ([2cbd124
](2cbd124d61
)) ### Features * **api:** allow readlist custom sorting ([b9e69a1
](b9e69a1c9a
))
This commit is contained in:
parent
2cbd124d61
commit
115be0ab32
14
CHANGELOG.md
14
CHANGELOG.md
@ -1,3 +1,17 @@
|
||||
# [0.157.0](https://github.com/gotson/komga/compare/v0.156.0...v0.157.0) (2022-07-28)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* add configuration to set the database pool size ([76e6241](https://github.com/gotson/komga/commit/76e624140d83a6dcad3f58043f50b0ba4c4b64d5))
|
||||
* default the max pool size to 1 ([c962f8a](https://github.com/gotson/komga/commit/c962f8a7ab0e3c132435fc1b3b18262135e023c6))
|
||||
* translated using Weblate ([2cbd124](https://github.com/gotson/komga/commit/2cbd124d6174733afbbbde40aeff0ac4a3fac7db))
|
||||
|
||||
|
||||
### Features
|
||||
|
||||
* **api:** allow readlist custom sorting ([b9e69a1](https://github.com/gotson/komga/commit/b9e69a1c9a194c9c0fd60ebfe2b8f954e6f9ca04))
|
||||
|
||||
# [0.156.0](https://github.com/gotson/komga/compare/v0.155.3...v0.156.0) (2022-07-26)
|
||||
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
version=0.156.0
|
||||
version=0.157.0
|
||||
org.gradle.jvmargs=-Xmx2G
|
||||
|
@ -8286,7 +8286,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_2",
|
||||
"operationId": "getProviders",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8317,7 +8317,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders",
|
||||
"operationId": "getProviders_1",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8348,7 +8348,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_4",
|
||||
"operationId": "getProviders_3",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8379,7 +8379,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_3",
|
||||
"operationId": "getProviders_2",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8441,7 +8441,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_1",
|
||||
"operationId": "getProviders_4",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -9519,6 +9519,13 @@
|
||||
"UserUpdateDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"roles": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"ageRestriction": {
|
||||
"$ref": "#/components/schemas/AgeRestrictionUpdateDto"
|
||||
},
|
||||
@ -9538,13 +9545,6 @@
|
||||
},
|
||||
"sharedLibraries": {
|
||||
"$ref": "#/components/schemas/SharedLibrariesUpdateDto"
|
||||
},
|
||||
"roles": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
@ -9636,13 +9636,12 @@
|
||||
"sharingLabelsLock": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"ageRating": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalBookCount": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
"sharingLabels": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"readingDirection": {
|
||||
"type": "string",
|
||||
@ -9653,12 +9652,13 @@
|
||||
"WEBTOON"
|
||||
]
|
||||
},
|
||||
"sharingLabels": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
"ageRating": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalBookCount": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"tags": {
|
||||
"uniqueItems": true,
|
||||
@ -9779,6 +9779,12 @@
|
||||
"linksLock": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"authors": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/AuthorUpdateDto"
|
||||
}
|
||||
},
|
||||
"releaseDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
@ -9793,20 +9799,14 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"authors": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/AuthorUpdateDto"
|
||||
}
|
||||
"summary": {
|
||||
"type": "string"
|
||||
},
|
||||
"links": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/WebLinkUpdateDto"
|
||||
}
|
||||
},
|
||||
"summary": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update."
|
||||
@ -10057,7 +10057,7 @@
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
},
|
||||
"unpaged": {
|
||||
"paged": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageNumber": {
|
||||
@ -10068,7 +10068,7 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"paged": {
|
||||
"unpaged": {
|
||||
"type": "boolean"
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user