chore(release): 0.47.0 [skip ci]

# [0.47.0](https://github.com/gotson/komga/compare/v0.46.0...v0.47.0) (2020-07-14)

### Features

* **webui:** change internals for shortcuts. add new shortcuts for settings ([b402817](b402817edb)), closes [#172](https://github.com/gotson/komga/issues/172)
This commit is contained in:
semantic-release-bot 2020-07-14 01:32:28 +00:00
parent b402817edb
commit 23e1240f8d
3 changed files with 73 additions and 66 deletions

View File

@ -1,3 +1,10 @@
# [0.47.0](https://github.com/gotson/komga/compare/v0.46.0...v0.47.0) (2020-07-14)
### Features
* **webui:** change internals for shortcuts. add new shortcuts for settings ([b402817](https://github.com/gotson/komga/commit/b402817edbface6d622d92c98347f6fe1914bf88)), closes [#172](https://github.com/gotson/komga/issues/172)
# [0.46.0](https://github.com/gotson/komga/compare/v0.45.2...v0.46.0) (2020-07-13)

View File

@ -1 +1 @@
version=0.46.0
version=0.47.0

View File

@ -33,13 +33,13 @@
"format": "int32",
"type": "integer"
},
"last": {
"type": "boolean"
},
"numberOfElements": {
"format": "int32",
"type": "integer"
},
"last": {
"type": "boolean"
},
"size": {
"format": "int32",
"type": "integer"
@ -885,13 +885,13 @@
"format": "int32",
"type": "integer"
},
"last": {
"type": "boolean"
},
"numberOfElements": {
"format": "int32",
"type": "integer"
},
"last": {
"type": "boolean"
},
"size": {
"format": "int32",
"type": "integer"
@ -931,13 +931,13 @@
"format": "int32",
"type": "integer"
},
"last": {
"type": "boolean"
},
"numberOfElements": {
"format": "int32",
"type": "integer"
},
"last": {
"type": "boolean"
},
"size": {
"format": "int32",
"type": "integer"
@ -1096,36 +1096,6 @@
]
}
},
"/opds/v1.2/search": {
"get": {
"operationId": "getSearch",
"responses": {
"200": {
"description": "default response",
"content": {
"application/xml": {
"schema": {
"$ref": "#/components/schemas/OpenSearchDescription"
}
},
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/OpenSearchDescription"
}
},
"text/xml": {
"schema": {
"$ref": "#/components/schemas/OpenSearchDescription"
}
}
}
}
},
"tags": [
"opds-controller"
]
}
},
"/opds/v1.2/series/latest": {
"get": {
"operationId": "getLatestSeries_1",
@ -1156,6 +1126,36 @@
]
}
},
"/opds/v1.2/search": {
"get": {
"operationId": "getSearch",
"responses": {
"200": {
"description": "default response",
"content": {
"application/xml": {
"schema": {
"$ref": "#/components/schemas/OpenSearchDescription"
}
},
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/OpenSearchDescription"
}
},
"text/xml": {
"schema": {
"$ref": "#/components/schemas/OpenSearchDescription"
}
}
}
}
},
"tags": [
"opds-controller"
]
}
},
"/api/v1/books/{bookId}/next": {
"get": {
"operationId": "getBookSiblingNext",
@ -3262,23 +3262,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": [
@ -3297,19 +3293,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": [