mirror of
https://github.com/gotson/komga.git
synced 2026-05-08 12:35:30 +02:00
chore(release): 0.155.1 [skip ci]
## [0.155.1](https://github.com/gotson/komga/compare/v0.155.0...v0.155.1) (2022-07-15) ### Bug Fixes * translated using Weblate ([21c2be4](21c2be4c4f)) ### Performance Improvements * add database indices for faster querying ([0af5f5c](0af5f5c4d9)) * don't sort books and series by default ([31c89fc](31c89fc298))
This commit is contained in:
parent
21c2be4c4f
commit
6a674f1f4d
3 changed files with 66 additions and 53 deletions
13
CHANGELOG.md
13
CHANGELOG.md
|
|
@ -1,3 +1,16 @@
|
|||
## [0.155.1](https://github.com/gotson/komga/compare/v0.155.0...v0.155.1) (2022-07-15)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* translated using Weblate ([21c2be4](https://github.com/gotson/komga/commit/21c2be4c4fdc28c99439b2620ce55f119f5d247f))
|
||||
|
||||
|
||||
### Performance Improvements
|
||||
|
||||
* add database indices for faster querying ([0af5f5c](https://github.com/gotson/komga/commit/0af5f5c4d94014e939ca806dbbcbb83cc75b400f))
|
||||
* don't sort books and series by default ([31c89fc](https://github.com/gotson/komga/commit/31c89fc29836e9c5af27c92d6a85c8ef98f4a165))
|
||||
|
||||
# [0.155.0](https://github.com/gotson/komga/compare/v0.154.4...v0.155.0) (2022-06-30)
|
||||
|
||||
|
||||
|
|
|
|||
|
|
@ -1,2 +1,2 @@
|
|||
version=0.155.0
|
||||
version=0.155.1
|
||||
org.gradle.jvmargs=-Xmx2G
|
||||
|
|
|
|||
|
|
@ -8348,7 +8348,7 @@
|
|||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_3",
|
||||
"operationId": "getProviders_1",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
|
|
@ -8379,7 +8379,7 @@
|
|||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_5",
|
||||
"operationId": "getProviders_6",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
|
|
@ -8410,7 +8410,7 @@
|
|||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_2",
|
||||
"operationId": "getProviders_5",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
|
|
@ -8441,7 +8441,7 @@
|
|||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_6",
|
||||
"operationId": "getProviders_2",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
|
|
@ -8472,7 +8472,7 @@
|
|||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_1",
|
||||
"operationId": "getProviders_3",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
|
|
@ -9519,19 +9519,16 @@
|
|||
"UserUpdateDto": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"ageRestriction": {
|
||||
"$ref": "#/components/schemas/AgeRestrictionUpdateDto"
|
||||
},
|
||||
"sharedLibraries": {
|
||||
"$ref": "#/components/schemas/SharedLibrariesUpdateDto"
|
||||
},
|
||||
"roles": {
|
||||
"labelsExclude": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"ageRestriction": {
|
||||
"$ref": "#/components/schemas/AgeRestrictionUpdateDto"
|
||||
},
|
||||
"labelsAllow": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
|
|
@ -9539,7 +9536,10 @@
|
|||
"type": "string"
|
||||
}
|
||||
},
|
||||
"labelsExclude": {
|
||||
"sharedLibraries": {
|
||||
"$ref": "#/components/schemas/SharedLibrariesUpdateDto"
|
||||
},
|
||||
"roles": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
|
|
@ -9636,7 +9636,24 @@
|
|||
"sharingLabelsLock": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sharingLabels": {
|
||||
"readingDirection": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"LEFT_TO_RIGHT",
|
||||
"RIGHT_TO_LEFT",
|
||||
"VERTICAL",
|
||||
"WEBTOON"
|
||||
]
|
||||
},
|
||||
"ageRating": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"totalBookCount": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"tags": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
|
|
@ -9650,24 +9667,7 @@
|
|||
"type": "string"
|
||||
}
|
||||
},
|
||||
"ageRating": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"readingDirection": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
"LEFT_TO_RIGHT",
|
||||
"RIGHT_TO_LEFT",
|
||||
"VERTICAL",
|
||||
"WEBTOON"
|
||||
]
|
||||
},
|
||||
"totalBookCount": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"tags": {
|
||||
"sharingLabels": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
|
|
@ -9779,34 +9779,34 @@
|
|||
"linksLock": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"authors": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/AuthorUpdateDto"
|
||||
}
|
||||
},
|
||||
"isbn": {
|
||||
"type": "string"
|
||||
},
|
||||
"summary": {
|
||||
"type": "string"
|
||||
},
|
||||
"releaseDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"tags": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"links": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/WebLinkUpdateDto"
|
||||
}
|
||||
},
|
||||
"summary": {
|
||||
"type": "string"
|
||||
"authors": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/AuthorUpdateDto"
|
||||
}
|
||||
},
|
||||
"tags": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"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."
|
||||
|
|
@ -10050,6 +10050,9 @@
|
|||
"PageableObject": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"paged": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"unpaged": {
|
||||
"type": "boolean"
|
||||
},
|
||||
|
|
@ -10064,9 +10067,6 @@
|
|||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"paged": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"offset": {
|
||||
"type": "integer",
|
||||
"format": "int64"
|
||||
|
|
@ -10076,10 +10076,10 @@
|
|||
"Sort": {
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"unsorted": {
|
||||
"sorted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"sorted": {
|
||||
"unsorted": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"empty": {
|
||||
|
|
|
|||
Loading…
Reference in a new issue