Skip to content

Commit

Permalink
chore(release): 0.160.0 [skip ci]
Browse files Browse the repository at this point in the history
# [0.160.0](v0.159.1...v0.160.0) (2023-01-19)

### Features

* **webui:** add button to reset filters on Series view if there are no results ([17ca7f7](17ca7f7))
* **webui:** add pagination to readlist/collection browse view ([ff70fea](ff70fea)), closes [#817](#817)

### Performance Improvements

* **webui:** readlist/collection expansion panels load data by page ([0b57dc9](0b57dc9)), closes [#817](#817)
  • Loading branch information
semantic-release-bot committed Jan 19, 2023
1 parent 0b57dc9 commit 781d839
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 28 deletions.
13 changes: 13 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# [0.160.0](https://github.com/gotson/komga/compare/v0.159.1...v0.160.0) (2023-01-19)


### Features

* **webui:** add button to reset filters on Series view if there are no results ([17ca7f7](https://github.com/gotson/komga/commit/17ca7f74eb7e3068400e5be984864b05f712ad9f))
* **webui:** add pagination to readlist/collection browse view ([ff70fea](https://github.com/gotson/komga/commit/ff70fea71a114e1a60a41bbe08d96fecf58b23d3)), closes [#817](https://github.com/gotson/komga/issues/817)


### Performance Improvements

* **webui:** readlist/collection expansion panels load data by page ([0b57dc9](https://github.com/gotson/komga/commit/0b57dc9c96fed24e6db440834f257aa4cf854f18)), closes [#817](https://github.com/gotson/komga/issues/817)

## [0.159.1](https://github.com/gotson/komga/compare/v0.159.0...v0.159.1) (2023-01-18)


Expand Down
2 changes: 1 addition & 1 deletion gradle.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
version=0.159.1
version=0.160.0
org.gradle.jvmargs=-Xmx2G
54 changes: 27 additions & 27 deletions komga/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9528,32 +9528,32 @@
"UserUpdateDto": {
"type": "object",
"properties": {
"roles": {
"ageRestriction": {
"$ref": "#/components/schemas/AgeRestrictionUpdateDto"
},
"sharedLibraries": {
"$ref": "#/components/schemas/SharedLibrariesUpdateDto"
},
"labelsExclude": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"ageRestriction": {
"$ref": "#/components/schemas/AgeRestrictionUpdateDto"
},
"labelsAllow": {
"roles": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"labelsExclude": {
"labelsAllow": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"sharedLibraries": {
"$ref": "#/components/schemas/SharedLibrariesUpdateDto"
}
}
},
Expand Down Expand Up @@ -9683,6 +9683,17 @@
"type": "integer",
"format": "int32"
},
"genres": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"totalBookCount": {
"type": "integer",
"format": "int32"
},
"readingDirection": {
"type": "string",
"enum": [
Expand All @@ -9692,29 +9703,18 @@
"WEBTOON"
]
},
"genres": {
"sharingLabels": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"totalBookCount": {
"type": "integer",
"format": "int32"
},
"alternateTitles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AlternateTitleUpdateDto"
}
},
"sharingLabels": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
}
},
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update."
Expand Down Expand Up @@ -9848,19 +9848,19 @@
"$ref": "#/components/schemas/WebLinkUpdateDto"
}
},
"authors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AuthorUpdateDto"
}
},
"isbn": {
"type": "string"
},
"releaseDate": {
"type": "string",
"format": "date"
},
"authors": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AuthorUpdateDto"
}
},
"summary": {
"type": "string"
}
Expand Down

0 comments on commit 781d839

Please sign in to comment.