mirror of
https://github.com/gotson/komga.git
synced 2025-01-08 11:47:47 +08:00
chore(release): 0.148.3 [skip ci]
## [0.148.3](https://github.com/gotson/komga/compare/v0.148.2...v0.148.3) (2022-02-04) ### Bug Fixes * a TooManyRowsException may crash the scan ([0368060
](0368060166
)) * filtering may not work with some unicode characters ([656f433
](656f433b9d
)), closes [#789](https://github.com/gotson/komga/issues/789) * **opds:** incorrect url encode for next/previous links ([288858c
](288858cf64
)), closes [#792](https://github.com/gotson/komga/issues/792) * translated using Weblate ([f0d2833
](f0d2833bd6
)) * use temp files for PDF when getting entries ([deb8e5f
](deb8e5fff4
)) * **webui:** better display of readlist context information for small screen ([add2574
](add2574859
)), closes [#791](https://github.com/gotson/komga/issues/791) * **webui:** don't reload series card thumbnail on every book update ([8bd36b4
](8bd36b45af
))
This commit is contained in:
parent
e8fe8bcf8d
commit
83f5a7fe90
13
CHANGELOG.md
13
CHANGELOG.md
@ -1,3 +1,16 @@
|
||||
## [0.148.3](https://github.com/gotson/komga/compare/v0.148.2...v0.148.3) (2022-02-04)
|
||||
|
||||
|
||||
### Bug Fixes
|
||||
|
||||
* a TooManyRowsException may crash the scan ([0368060](https://github.com/gotson/komga/commit/036806016691e748ee99decec7c7f3ea41405125))
|
||||
* filtering may not work with some unicode characters ([656f433](https://github.com/gotson/komga/commit/656f433b9d1d1d7c9b33e6fc48ebf5a2b92fe00a)), closes [#789](https://github.com/gotson/komga/issues/789)
|
||||
* **opds:** incorrect url encode for next/previous links ([288858c](https://github.com/gotson/komga/commit/288858cf6416f8e7a08c92940feae91c53d53198)), closes [#792](https://github.com/gotson/komga/issues/792)
|
||||
* translated using Weblate ([f0d2833](https://github.com/gotson/komga/commit/f0d2833bd6601b772b388a2c8b9f0d73975f7654))
|
||||
* use temp files for PDF when getting entries ([deb8e5f](https://github.com/gotson/komga/commit/deb8e5fff44c8f95ecd13a6174516f488d77e263))
|
||||
* **webui:** better display of readlist context information for small screen ([add2574](https://github.com/gotson/komga/commit/add2574859847c47f9b36c04a96f17b15e03d2a2)), closes [#791](https://github.com/gotson/komga/issues/791)
|
||||
* **webui:** don't reload series card thumbnail on every book update ([8bd36b4](https://github.com/gotson/komga/commit/8bd36b45afc84186afc58472e6cc5bf5fe4fd0f1))
|
||||
|
||||
## [0.148.2](https://github.com/gotson/komga/compare/v0.148.1...v0.148.2) (2022-01-31)
|
||||
|
||||
|
||||
|
@ -1,2 +1,2 @@
|
||||
version=0.148.2
|
||||
version=0.148.3
|
||||
org.gradle.jvmargs=-Xmx2G
|
||||
|
@ -7525,7 +7525,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_6",
|
||||
"operationId": "getProviders_5",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -7556,7 +7556,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_4",
|
||||
"operationId": "getProviders_3",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -7587,7 +7587,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders",
|
||||
"operationId": "getProviders_6",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -7618,7 +7618,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_2",
|
||||
"operationId": "getProviders",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -7649,7 +7649,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_3",
|
||||
"operationId": "getProviders_4",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -7680,7 +7680,7 @@
|
||||
"tags": [
|
||||
"o-auth-2-controller"
|
||||
],
|
||||
"operationId": "getProviders_5",
|
||||
"operationId": "getProviders_2",
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
@ -8602,6 +8602,20 @@
|
||||
"totalBookCountLock": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"tags": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"genres": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"readingDirection": {
|
||||
"type": "string",
|
||||
"enum": [
|
||||
@ -8615,23 +8629,9 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"genres": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"totalBookCount": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"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."
|
||||
@ -8738,22 +8738,12 @@
|
||||
"linksLock": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"summary": {
|
||||
"type": "string"
|
||||
},
|
||||
"releaseDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"authors": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/AuthorUpdateDto"
|
||||
}
|
||||
},
|
||||
"isbn": {
|
||||
"type": "string"
|
||||
},
|
||||
"tags": {
|
||||
"uniqueItems": true,
|
||||
"type": "array",
|
||||
@ -8761,11 +8751,21 @@
|
||||
"type": "string"
|
||||
}
|
||||
},
|
||||
"releaseDate": {
|
||||
"type": "string",
|
||||
"format": "date"
|
||||
},
|
||||
"isbn": {
|
||||
"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."
|
||||
@ -8999,12 +8999,12 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -9163,12 +9163,12 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -9253,12 +9253,12 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -9739,12 +9739,12 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -9847,12 +9847,12 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -9959,12 +9959,12 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -10035,12 +10035,12 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -10105,12 +10105,12 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
@ -10151,12 +10151,12 @@
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"last": {
|
||||
"type": "boolean"
|
||||
},
|
||||
"pageable": {
|
||||
"$ref": "#/components/schemas/PageableObject"
|
||||
},
|
||||
"size": {
|
||||
"type": "integer",
|
||||
"format": "int32"
|
||||
|
Loading…
Reference in New Issue
Block a user