chore(release): 0.46.0 [skip ci]

# [0.46.0](https://github.com/gotson/komga/compare/v0.45.2...v0.46.0) (2020-07-13)

### Features

* **webui:** add simple next/previous book buttons to reader toolbar ([e428115](e4281156f5)), closes [#233](https://github.com/gotson/komga/issues/233)
This commit is contained in:
semantic-release-bot 2020-07-13 12:53:17 +00:00
parent e4281156f5
commit 5e30e9dcd5
3 changed files with 73 additions and 66 deletions

View file

@ -1,3 +1,10 @@
# [0.46.0](https://github.com/gotson/komga/compare/v0.45.2...v0.46.0) (2020-07-13)
### Features
* **webui:** add simple next/previous book buttons to reader toolbar ([e428115](https://github.com/gotson/komga/commit/e4281156f5398d478257ee699d7016c1aa5ee81c)), closes [#233](https://github.com/gotson/komga/issues/233)
## [0.45.2](https://github.com/gotson/komga/compare/v0.45.1...v0.45.2) (2020-07-05)

View file

@ -1 +1 @@
version=0.45.2
version=0.46.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/series/latest": {
"get": {
"operationId": "getLatestSeries_1",
"responses": {
"200": {
"description": "default response",
"content": {
"application/xml": {
"schema": {
"$ref": "#/components/schemas/OpdsFeed"
}
},
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/OpdsFeed"
}
},
"text/xml": {
"schema": {
"$ref": "#/components/schemas/OpdsFeed"
}
}
}
}
},
"tags": [
"opds-controller"
]
}
},
"/opds/v1.2/search": {
"get": {
"operationId": "getSearch",
@ -1156,6 +1126,36 @@
]
}
},
"/opds/v1.2/series/latest": {
"get": {
"operationId": "getLatestSeries_1",
"responses": {
"200": {
"description": "default response",
"content": {
"application/xml": {
"schema": {
"$ref": "#/components/schemas/OpdsFeed"
}
},
"application/atom+xml": {
"schema": {
"$ref": "#/components/schemas/OpdsFeed"
}
},
"text/xml": {
"schema": {
"$ref": "#/components/schemas/OpdsFeed"
}
}
}
}
},
"tags": [
"opds-controller"
]
}
},
"/api/v1/books/{bookId}/next": {
"get": {
"operationId": "getBookSiblingNext",
@ -3262,19 +3262,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": [
@ -3293,23 +3297,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": [