mirror of
https://github.com/gotson/komga.git
synced 2025-01-08 11:47:47 +08:00
chore(release): 0.164.0 [skip ci]
This commit is contained in:
parent
0075499a41
commit
7255caabae
24
CHANGELOG.md
24
CHANGELOG.md
@ -1,3 +1,27 @@
|
||||
# [0.164.0](https://github.com/gotson/komga/compare/v0.163.0...v0.164.0) (2023-03-14)
|
||||
## 🚀 Features
|
||||
**webui**
|
||||
- allow CBL import with partial matching ([3a7d305](https://github.com/gotson/komga/commits/3a7d305)), closes [#1086](https://github.com/gotson/komga/issues/1086)
|
||||
|
||||
## 🏎 Perf
|
||||
**api**
|
||||
- 🚨 faster readlist matching for cbl: *removed api/v1/readlists/import* ([2461c83](https://github.com/gotson/komga/commits/2461c83))
|
||||
|
||||
**webui**
|
||||
- reduce amount of API requests when matching cbl ([e3d9cb7](https://github.com/gotson/komga/commits/e3d9cb7))
|
||||
|
||||
## 🛠 Build
|
||||
**deps**
|
||||
- bump jreleaser to 1.5.1 ([df59ba6](https://github.com/gotson/komga/commits/df59ba6))
|
||||
|
||||
**unscoped**
|
||||
- add JReleaser configuration for i18n commit type ([a3ebbdf](https://github.com/gotson/komga/commits/a3ebbdf))
|
||||
|
||||
## 🌐 Translation
|
||||
|
||||
- ttranslated using Weblate ([0075499](https://github.com/gotson/komga/commits/0075499))
|
||||
- remove unused error codes ([094d03f](https://github.com/gotson/komga/commits/094d03f))
|
||||
|
||||
# [0.163.0](https://github.com/gotson/komga/compare/v0.162.0...v0.163.0) (2023-03-08)
|
||||
## 🚀 Features
|
||||
**opds**
|
||||
|
@ -1,2 +1,2 @@
|
||||
version=0.163.0
|
||||
version=0.164.0
|
||||
org.gradle.jvmargs=-Xmx2G
|
||||
|
@ -1381,61 +1381,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"/api/v1/readlists/import": {
|
||||
"post": {
|
||||
"tags": [
|
||||
"read-list-controller"
|
||||
],
|
||||
"operationId": "importFromComicRackList",
|
||||
"requestBody": {
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"required": [
|
||||
"files"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"files": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string",
|
||||
"format": "binary"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"responses": {
|
||||
"400": {
|
||||
"description": "Bad Request",
|
||||
"content": {
|
||||
"*/*": {
|
||||
"schema": {
|
||||
"$ref": "#/components/schemas/ValidationErrorResponse"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"200": {
|
||||
"description": "OK",
|
||||
"content": {
|
||||
"application/json": {
|
||||
"schema": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/ReadListRequestResultDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"deprecated": true
|
||||
}
|
||||
},
|
||||
"/api/v1/page-hashes/{pageHash}/delete-match": {
|
||||
"post": {
|
||||
"tags": [
|
||||
@ -9078,43 +9023,7 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookMatchDto": {
|
||||
"required": [
|
||||
"bookIds",
|
||||
"seriesId"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"seriesId": {
|
||||
"type": "string"
|
||||
},
|
||||
"bookIds": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookMatchesDto": {
|
||||
"required": [
|
||||
"matches",
|
||||
"request"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"request": {
|
||||
"$ref": "#/components/schemas/ReadListRequestBookV2Dto"
|
||||
},
|
||||
"matches": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/ReadListRequestBookMatchDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookV2Dto": {
|
||||
"ReadListRequestBookDto": {
|
||||
"required": [
|
||||
"number",
|
||||
"series"
|
||||
@ -9133,18 +9042,88 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookMatchBookDto": {
|
||||
"required": [
|
||||
"bookId",
|
||||
"number",
|
||||
"title"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"bookId": {
|
||||
"type": "string"
|
||||
},
|
||||
"number": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookMatchDto": {
|
||||
"required": [
|
||||
"books",
|
||||
"series"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"series": {
|
||||
"$ref": "#/components/schemas/ReadListRequestBookMatchSeriesDto"
|
||||
},
|
||||
"books": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/ReadListRequestBookMatchBookDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookMatchSeriesDto": {
|
||||
"required": [
|
||||
"seriesId",
|
||||
"title"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"seriesId": {
|
||||
"type": "string"
|
||||
},
|
||||
"title": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookMatchesDto": {
|
||||
"required": [
|
||||
"matches",
|
||||
"request"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"request": {
|
||||
"$ref": "#/components/schemas/ReadListRequestBookDto"
|
||||
},
|
||||
"matches": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/ReadListRequestBookMatchDto"
|
||||
}
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestMatchDto": {
|
||||
"required": [
|
||||
"errorCode",
|
||||
"matches",
|
||||
"readListMatch"
|
||||
"readListMatch",
|
||||
"requests"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"readListMatch": {
|
||||
"$ref": "#/components/schemas/ReadListMatchDto"
|
||||
},
|
||||
"matches": {
|
||||
"requests": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/ReadListRequestBookMatchesDto"
|
||||
@ -9155,61 +9134,6 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestBookDto": {
|
||||
"required": [
|
||||
"number",
|
||||
"series"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"series": {
|
||||
"type": "string"
|
||||
},
|
||||
"number": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestResultBookDto": {
|
||||
"required": [
|
||||
"book",
|
||||
"errorCode"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"book": {
|
||||
"$ref": "#/components/schemas/ReadListRequestBookDto"
|
||||
},
|
||||
"errorCode": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"ReadListRequestResultDto": {
|
||||
"required": [
|
||||
"errorCode",
|
||||
"requestName",
|
||||
"unmatchedBooks"
|
||||
],
|
||||
"type": "object",
|
||||
"properties": {
|
||||
"readList": {
|
||||
"$ref": "#/components/schemas/ReadListDto"
|
||||
},
|
||||
"unmatchedBooks": {
|
||||
"type": "array",
|
||||
"items": {
|
||||
"$ref": "#/components/schemas/ReadListRequestResultBookDto"
|
||||
}
|
||||
},
|
||||
"errorCode": {
|
||||
"type": "string"
|
||||
},
|
||||
"requestName": {
|
||||
"type": "string"
|
||||
}
|
||||
}
|
||||
},
|
||||
"PageHashMatchDto": {
|
||||
"required": [
|
||||
"bookId",
|
||||
|
Loading…
Reference in New Issue
Block a user