Skip to content

Commit

Permalink
chore(release): 0.159.0 [skip ci]
Browse files Browse the repository at this point in the history
# [0.159.0](v0.158.0...v0.159.0) (2023-01-17)

### Bug Fixes

* **api:** include Z in datetime formats ([bb7b7fd](bb7b7fd))
* **api:** some dates were not returned as UTC ([cdfb8e3](cdfb8e3))
* translated using Weblate ([6ad0188](6ad0188))

### Features

* add links field in series metadata ([f9f02a3](f9f02a3)), closes [#938](#938)
* series metadata supports alternate titles ([8e0655f](8e0655f)), closes [#878](#878)
* **webui:** display datetime when hovering date on item card ([4d97172](4d97172))
* **webui:** display number of pages left on book details view ([77424b1](77424b1)), closes [#1012](#1012)
* **webui:** display read date on book details view ([c30c755](c30c755)), closes [#757](#757)
* **webui:** increment/decrement numberSort in bulk ([e7fbe57](e7fbe57)), closes [#628](#628)
  • Loading branch information
semantic-release-bot committed Jan 17, 2023
1 parent 6ad0188 commit 348667b
Show file tree
Hide file tree
Showing 3 changed files with 119 additions and 30 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,22 @@
# [0.159.0](https://github.com/gotson/komga/compare/v0.158.0...v0.159.0) (2023-01-17)


### Bug Fixes

* **api:** include Z in datetime formats ([bb7b7fd](https://github.com/gotson/komga/commit/bb7b7fd8f01a7114a2966619a48b22e547938743))
* **api:** some dates were not returned as UTC ([cdfb8e3](https://github.com/gotson/komga/commit/cdfb8e377f1eeef86b89305e5d8ec7ccb50f44eb))
* translated using Weblate ([6ad0188](https://github.com/gotson/komga/commit/6ad0188bd3816c9f2f34bf08ebbbc980d5eaa334))


### Features

* add links field in series metadata ([f9f02a3](https://github.com/gotson/komga/commit/f9f02a395b1d92b5dd1b76a7fe0187d784da75d9)), closes [#938](https://github.com/gotson/komga/issues/938)
* series metadata supports alternate titles ([8e0655f](https://github.com/gotson/komga/commit/8e0655f29a24fa9d887d7022d40ba2642edb3199)), closes [#878](https://github.com/gotson/komga/issues/878)
* **webui:** display datetime when hovering date on item card ([4d97172](https://github.com/gotson/komga/commit/4d9717287acb277a146594d134d6a8c7fe475d82))
* **webui:** display number of pages left on book details view ([77424b1](https://github.com/gotson/komga/commit/77424b1b1c1371d00036ea0bb08c59c543605020)), closes [#1012](https://github.com/gotson/komga/issues/1012)
* **webui:** display read date on book details view ([c30c755](https://github.com/gotson/komga/commit/c30c755f63acc210267d79dfb6388a46c992a02a)), closes [#757](https://github.com/gotson/komga/issues/757)
* **webui:** increment/decrement numberSort in bulk ([e7fbe57](https://github.com/gotson/komga/commit/e7fbe57e44e9850db6f68cefc6b1dde36c665d0c)), closes [#628](https://github.com/gotson/komga/issues/628)

# [0.158.0](https://github.com/gotson/komga/compare/v0.157.5...v0.158.0) (2023-01-12)


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.158.0
version=0.159.0
org.gradle.jvmargs=-Xmx2G
128 changes: 99 additions & 29 deletions komga/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -9582,6 +9582,21 @@
}
}
},
"AlternateTitleUpdateDto": {
"required": [
"label",
"title"
],
"type": "object",
"properties": {
"label": {
"type": "string"
},
"title": {
"type": "string"
}
}
},
"SeriesMetadataUpdateDto": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -9645,13 +9660,25 @@
"sharingLabelsLock": {
"type": "boolean"
},
"linksLock": {
"type": "boolean"
},
"alternateTitlesLock": {
"type": "boolean"
},
"tags": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WebLinkUpdateDto"
}
},
"ageRating": {
"type": "integer",
"format": "int32"
Expand All @@ -9676,6 +9703,12 @@
"WEBTOON"
]
},
"alternateTitles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AlternateTitleUpdateDto"
}
},
"sharingLabels": {
"uniqueItems": true,
"type": "array",
Expand All @@ -9686,6 +9719,20 @@
},
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update."
},
"WebLinkUpdateDto": {
"required": [
"label"
],
"type": "object",
"properties": {
"label": {
"type": "string"
},
"url": {
"type": "string"
}
}
},
"ReadListUpdateDto": {
"type": "object",
"properties": {
Expand Down Expand Up @@ -9820,20 +9867,6 @@
},
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update."
},
"WebLinkUpdateDto": {
"required": [
"label"
],
"type": "object",
"properties": {
"label": {
"type": "string"
},
"url": {
"type": "string"
}
}
},
"OpdsAuthor": {
"required": [
"name"
Expand Down Expand Up @@ -10238,6 +10271,21 @@
}
}
},
"AlternateTitleDto": {
"required": [
"label",
"title"
],
"type": "object",
"properties": {
"label": {
"type": "string"
},
"title": {
"type": "string"
}
}
},
"BookMetadataAggregationDto": {
"required": [
"authors",
Expand Down Expand Up @@ -10401,12 +10449,16 @@
"SeriesMetadataDto": {
"required": [
"ageRatingLock",
"alternateTitles",
"alternateTitlesLock",
"created",
"genres",
"genresLock",
"language",
"languageLock",
"lastModified",
"links",
"linksLock",
"publisher",
"publisherLock",
"readingDirection",
Expand Down Expand Up @@ -10513,6 +10565,24 @@
"sharingLabelsLock": {
"type": "boolean"
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WebLinkDto"
}
},
"linksLock": {
"type": "boolean"
},
"alternateTitles": {
"type": "array",
"items": {
"$ref": "#/components/schemas/AlternateTitleDto"
}
},
"alternateTitlesLock": {
"type": "boolean"
},
"created": {
"type": "string",
"format": "date-time"
Expand All @@ -10523,6 +10593,21 @@
}
}
},
"WebLinkDto": {
"required": [
"label",
"url"
],
"type": "object",
"properties": {
"label": {
"type": "string"
},
"url": {
"type": "string"
}
}
},
"TachiyomiReadProgressDto": {
"required": [
"booksCount",
Expand Down Expand Up @@ -10838,21 +10923,6 @@
}
}
},
"WebLinkDto": {
"required": [
"label",
"url"
],
"type": "object",
"properties": {
"label": {
"type": "string"
},
"url": {
"type": "string"
}
}
},
"GroupCountDto": {
"required": [
"count",
Expand Down

0 comments on commit 348667b

Please sign in to comment.