chore(release): 0.44.0 [skip ci]

# [0.44.0](https://github.com/gotson/komga/compare/v0.43.4...v0.44.0) (2020-07-03)

### Bug Fixes

* **webui:** make card title as link ([d6e4b80](d6e4b807db)), closes [#224](https://github.com/gotson/komga/issues/224)
* **webui:** reset edit book dialog to first tab on reopen ([5760a06](5760a06b7a))

### Features

* generate collections from ComicInfo SeriesGroup ([277cdcd](277cdcd4e3)), closes [#210](https://github.com/gotson/komga/issues/210)
* **api:** metadata import settings per library ([6824212](6824212514)), closes [#199](https://github.com/gotson/komga/issues/199)
* **webui:** metadata import settings per library ([521cc42](521cc42858)), closes [#199](https://github.com/gotson/komga/issues/199)
This commit is contained in:
semantic-release-bot 2020-07-03 09:13:21 +00:00
parent 277cdcd4e3
commit c98bcb0036
3 changed files with 135 additions and 28 deletions

View File

@ -1,3 +1,18 @@
# [0.44.0](https://github.com/gotson/komga/compare/v0.43.4...v0.44.0) (2020-07-03)
### Bug Fixes
* **webui:** make card title as link ([d6e4b80](https://github.com/gotson/komga/commit/d6e4b807dbcaa9c5ce91ed72ba88d8d8f3434f7e)), closes [#224](https://github.com/gotson/komga/issues/224)
* **webui:** reset edit book dialog to first tab on reopen ([5760a06](https://github.com/gotson/komga/commit/5760a06b7a3496d9ec910697122abd51e2c5f9bd))
### Features
* generate collections from ComicInfo SeriesGroup ([277cdcd](https://github.com/gotson/komga/commit/277cdcd4e39c2ad1da84522de78d693a30c89788)), closes [#210](https://github.com/gotson/komga/issues/210)
* **api:** metadata import settings per library ([6824212](https://github.com/gotson/komga/commit/6824212514d8586bdb47ac2c38d6e121be8db489)), closes [#199](https://github.com/gotson/komga/issues/199)
* **webui:** metadata import settings per library ([521cc42](https://github.com/gotson/komga/commit/521cc42858415abde9a4eb378e5276578bdbed59)), closes [#199](https://github.com/gotson/komga/issues/199)
## [0.43.4](https://github.com/gotson/komga/compare/v0.43.3...v0.43.4) (2020-07-01)

View File

@ -1 +1 @@
version=0.43.4
version=0.44.0

View File

@ -376,9 +376,51 @@
}
}
},
"LibraryUpdateDto": {
"type": "object",
"required": [
"name",
"root"
],
"properties": {
"importEpubSeries": {
"type": "boolean"
},
"importComicInfoSeries": {
"type": "boolean"
},
"importComicInfoBook": {
"type": "boolean"
},
"importEpubBook": {
"type": "boolean"
},
"root": {
"type": "string"
},
"name": {
"type": "string"
},
"importComicInfoCollection": {
"type": "boolean"
}
}
},
"LibraryDto": {
"type": "object",
"properties": {
"importEpubSeries": {
"type": "boolean"
},
"importComicInfoSeries": {
"type": "boolean"
},
"importComicInfoBook": {
"type": "boolean"
},
"importEpubBook": {
"type": "boolean"
},
"root": {
"type": "string"
},
@ -388,6 +430,9 @@
"id": {
"format": "int64",
"type": "integer"
},
"importComicInfoCollection": {
"type": "boolean"
}
}
},
@ -695,11 +740,26 @@
"root"
],
"properties": {
"importEpubSeries": {
"type": "boolean"
},
"importComicInfoSeries": {
"type": "boolean"
},
"importComicInfoBook": {
"type": "boolean"
},
"importEpubBook": {
"type": "boolean"
},
"root": {
"type": "string"
},
"name": {
"type": "string"
},
"importComicInfoCollection": {
"type": "boolean"
}
}
},
@ -994,6 +1054,38 @@
"tags": [
"library-controller"
]
},
"put": {
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/LibraryUpdateDto"
}
}
},
"required": true
},
"operationId": "updateOne",
"responses": {
"204": {
"description": "default response"
}
},
"parameters": [
{
"schema": {
"format": "int64",
"type": "integer"
},
"in": "path",
"name": "id",
"required": true
}
],
"tags": [
"library-controller"
]
}
},
"/opds/v1.2/series/latest": {
@ -2057,7 +2149,7 @@
},
"required": true
},
"operationId": "updateOne",
"operationId": "updateOne_1",
"responses": {
"204": {
"description": "default response"
@ -3162,23 +3254,19 @@
]
}
},
"/api/v1/books/{bookId}/metadata": {
"patch": {
"requestBody": {
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookMetadataUpdateDto"
"/api/v1/books/{bookId}": {
"get": {
"operationId": "getOneBook",
"responses": {
"200": {
"description": "default response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
}
}
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "default response"
}
},
"parameters": [
@ -3197,19 +3285,23 @@
]
}
},
"/api/v1/books/{bookId}": {
"get": {
"operationId": "getOneBook",
"responses": {
"200": {
"description": "default response",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
"/api/v1/books/{bookId}/metadata": {
"patch": {
"requestBody": {
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.",
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookMetadataUpdateDto"
}
}
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "default response"
}
},
"parameters": [