Skip to content

Commit

Permalink
chore(release): 0.59.0 [skip ci]
Browse files Browse the repository at this point in the history
# [0.59.0](v0.58.1...v0.59.0) (2020-08-25)

### Bug Fixes

* **api:** do not return empty language ([2ab3c9c](2ab3c9c))
* **webui:** field should not display if empty ([968e297](968e297))

### Features

* **api:** get all languages ([115ad42](115ad42))
* **api:** get all publishers ([1929061](1929061))
* **api:** search books by tag ([f46f1a0](f46f1a0))
* **api:** search series by genre ([da4a0aa](da4a0aa))
* **api:** search series by language ([723d7c1](723d7c1))
* **api:** search series by publisher ([e4b0b2d](e4b0b2d))
* **api:** search series by tag ([7bd1de6](7bd1de6))
* **api:** search series' books by tag ([940d5d3](940d5d3))
* **webui:** color coded chips for series status ([fb8a8c4](fb8a8c4))
* **webui:** more filter criteria ([4d22d9c](4d22d9c)), closes [#283](#283) [#34](#34)
* **webui:** navigation drawer for sort/filter ([28598cb](28598cb)), closes [#283](#283)
  • Loading branch information
semantic-release-bot committed Aug 25, 2020
1 parent 4d22d9c commit 373ddd4
Show file tree
Hide file tree
Showing 3 changed files with 138 additions and 1 deletion.
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,26 @@
# [0.59.0](https://github.com/gotson/komga/compare/v0.58.1...v0.59.0) (2020-08-25)


### Bug Fixes

* **api:** do not return empty language ([2ab3c9c](https://github.com/gotson/komga/commit/2ab3c9ca957b1ec578d2fec8dd0d3afbb94416dd))
* **webui:** field should not display if empty ([968e297](https://github.com/gotson/komga/commit/968e297af0e0ee4ffaf7e76e52071f19699df223))


### Features

* **api:** get all languages ([115ad42](https://github.com/gotson/komga/commit/115ad42d9c463d4489f00936372dc580e8b1013b))
* **api:** get all publishers ([1929061](https://github.com/gotson/komga/commit/1929061393d97324fd61139929b6011114810021))
* **api:** search books by tag ([f46f1a0](https://github.com/gotson/komga/commit/f46f1a0e9655247fe70a8b3b874d045b75ec9d53))
* **api:** search series by genre ([da4a0aa](https://github.com/gotson/komga/commit/da4a0aa10b27fb1ca24c9c848de3f6ae3ac418e4))
* **api:** search series by language ([723d7c1](https://github.com/gotson/komga/commit/723d7c1fe9bb877b4e4b446196095e0d138830b6))
* **api:** search series by publisher ([e4b0b2d](https://github.com/gotson/komga/commit/e4b0b2d1f7890a93371e534cf2b4836ed0a72a1d))
* **api:** search series by tag ([7bd1de6](https://github.com/gotson/komga/commit/7bd1de6f78a768a605a47bac7a966ea22d4236af))
* **api:** search series' books by tag ([940d5d3](https://github.com/gotson/komga/commit/940d5d341087965f0e307ce8418e1e14f338a984))
* **webui:** color coded chips for series status ([fb8a8c4](https://github.com/gotson/komga/commit/fb8a8c4228048e37ab3638f1fe44c39e514cab16))
* **webui:** more filter criteria ([4d22d9c](https://github.com/gotson/komga/commit/4d22d9c8e88108afac6d82991aa51fd4f0fed88b)), closes [#283](https://github.com/gotson/komga/issues/283) [#34](https://github.com/gotson/komga/issues/34)
* **webui:** navigation drawer for sort/filter ([28598cb](https://github.com/gotson/komga/commit/28598cbef585bc644518270dbae5d99f32779ee9)), closes [#283](https://github.com/gotson/komga/issues/283)

## [0.58.1](https://github.com/gotson/komga/compare/v0.58.0...v0.58.1) (2020-08-24)


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1 +1 @@
version=0.58.1
version=0.59.0
114 changes: 114 additions & 0 deletions komga/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -1545,6 +1545,30 @@
]
}
},
"/api/v1/languages": {
"get": {
"operationId": "getLanguages",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"tags": [
"referential-controller"
]
}
},
"/api/v1/series/{seriesId}/thumbnail": {
"get": {
"operationId": "getSeriesThumbnail",
Expand Down Expand Up @@ -2320,6 +2344,17 @@
"name": "read_status",
"required": false
},
{
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"in": "query",
"name": "tag",
"required": false
},
{
"schema": {
"type": "boolean"
Expand Down Expand Up @@ -2869,6 +2904,50 @@
"name": "read_status",
"required": false
},
{
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"in": "query",
"name": "publisher",
"required": false
},
{
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"in": "query",
"name": "language",
"required": false
},
{
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"in": "query",
"name": "genre",
"required": false
},
{
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"in": "query",
"name": "tag",
"required": false
},
{
"schema": {
"type": "boolean"
Expand Down Expand Up @@ -3219,6 +3298,17 @@
"name": "read_status",
"required": false
},
{
"schema": {
"type": "array",
"items": {
"type": "string"
}
},
"in": "query",
"name": "tag",
"required": false
},
{
"schema": {
"type": "boolean"
Expand Down Expand Up @@ -3883,6 +3973,30 @@
]
}
},
"/api/v1/publishers": {
"get": {
"operationId": "getPublishers",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"tags": [
"referential-controller"
]
}
},
"/api/v1/books/{bookId}/metadata": {
"patch": {
"requestBody": {
Expand Down

0 comments on commit 373ddd4

Please sign in to comment.