chore(release): 0.58.0 [skip ci]

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

### Bug Fixes

* **webui:** update option title in library dialog ([29d9726](29d9726613))

### Features

* **webui:** handle new metadata fields ([5567adc](5567adc946)), closes [#276](https://github.com/gotson/komga/issues/276)
* add/rearrange metadata fields ([9e406e3](9e406e3316)), closes [#276](https://github.com/gotson/komga/issues/276)
This commit is contained in:
semantic-release-bot 2020-08-24 07:55:59 +00:00
parent 29d9726613
commit ad9709cfef
3 changed files with 227 additions and 74 deletions

View file

@ -1,3 +1,16 @@
# [0.58.0](https://github.com/gotson/komga/compare/v0.57.0...v0.58.0) (2020-08-24)
### Bug Fixes
* **webui:** update option title in library dialog ([29d9726](https://github.com/gotson/komga/commit/29d97266137a4f38497e75f1a1f24fbf9ae96f46))
### Features
* **webui:** handle new metadata fields ([5567adc](https://github.com/gotson/komga/commit/5567adc9460a20373e3a63f48995d1bbaca5bf50)), closes [#276](https://github.com/gotson/komga/issues/276)
* add/rearrange metadata fields ([9e406e3](https://github.com/gotson/komga/commit/9e406e33167284f3803beb45243bf11992ec7e83)), closes [#276](https://github.com/gotson/komga/issues/276)
# [0.57.0](https://github.com/gotson/komga/compare/v0.56.1...v0.57.0) (2020-08-20) # [0.57.0](https://github.com/gotson/komga/compare/v0.56.1...v0.57.0) (2020-08-20)

View file

@ -1 +1 @@
version=0.57.0 version=0.58.0

View file

@ -185,31 +185,35 @@
"numberSortLock": { "numberSortLock": {
"type": "boolean" "type": "boolean"
}, },
"tagsLock": {
"type": "boolean"
},
"releaseDate": { "releaseDate": {
"format": "date", "format": "date",
"type": "string" "type": "string"
}, },
"created": {
"format": "date-time",
"type": "string"
},
"numberLock": { "numberLock": {
"type": "boolean" "type": "boolean"
}, },
"releaseDateLock": { "releaseDateLock": {
"type": "boolean" "type": "boolean"
}, },
"ageRating": {
"format": "int32",
"type": "integer"
},
"title": { "title": {
"type": "string" "type": "string"
}, },
"titleLock": { "titleLock": {
"type": "boolean" "type": "boolean"
}, },
"readingDirection": { "tags": {
"type": "string" "uniqueItems": true,
}, "type": "array",
"ageRatingLock": { "items": {
"type": "boolean" "type": "string"
}
}, },
"number": { "number": {
"type": "string" "type": "string"
@ -217,22 +221,17 @@
"summaryLock": { "summaryLock": {
"type": "boolean" "type": "boolean"
}, },
"readingDirectionLock": {
"type": "boolean"
},
"publisherLock": {
"type": "boolean"
},
"numberSort": { "numberSort": {
"format": "float", "format": "float",
"type": "number" "type": "number"
}, },
"publisher": {
"type": "string"
},
"authorsLock": { "authorsLock": {
"type": "boolean" "type": "boolean"
}, },
"lastModified": {
"format": "date-time",
"type": "string"
},
"authors": { "authors": {
"type": "array", "type": "array",
"items": { "items": {
@ -494,6 +493,9 @@
"numberSortLock": { "numberSortLock": {
"type": "boolean" "type": "boolean"
}, },
"tagsLock": {
"type": "boolean"
},
"releaseDate": { "releaseDate": {
"format": "date", "format": "date",
"type": "string" "type": "string"
@ -504,27 +506,18 @@
"releaseDateLock": { "releaseDateLock": {
"type": "boolean" "type": "boolean"
}, },
"ageRating": {
"format": "int32",
"type": "integer"
},
"title": { "title": {
"type": "string" "type": "string"
}, },
"titleLock": { "titleLock": {
"type": "boolean" "type": "boolean"
}, },
"ageRatingLock": { "tags": {
"type": "boolean" "uniqueItems": true,
}, "type": "array",
"readingDirection": { "items": {
"type": "string", "type": "string"
"enum": [ }
"LEFT_TO_RIGHT",
"RIGHT_TO_LEFT",
"VERTICAL",
"WEBTOON"
]
}, },
"number": { "number": {
"type": "string" "type": "string"
@ -532,19 +525,10 @@
"summaryLock": { "summaryLock": {
"type": "boolean" "type": "boolean"
}, },
"readingDirectionLock": {
"type": "boolean"
},
"publisherLock": {
"type": "boolean"
},
"numberSort": { "numberSort": {
"format": "float", "format": "float",
"type": "number" "type": "number"
}, },
"publisher": {
"type": "string"
},
"authorsLock": { "authorsLock": {
"type": "boolean" "type": "boolean"
}, },
@ -799,29 +783,80 @@
"SeriesMetadataDto": { "SeriesMetadataDto": {
"type": "object", "type": "object",
"properties": { "properties": {
"summary": {
"type": "string"
},
"titleSort": { "titleSort": {
"type": "string" "type": "string"
}, },
"tagsLock": {
"type": "boolean"
},
"created": { "created": {
"format": "date-time", "format": "date-time",
"type": "string" "type": "string"
}, },
"statusLock": { "language": {
"type": "boolean"
},
"lastModified": {
"format": "date-time",
"type": "string" "type": "string"
}, },
"ageRating": {
"format": "int32",
"type": "integer"
},
"title": { "title": {
"type": "string" "type": "string"
}, },
"titleLock": { "titleLock": {
"type": "boolean" "type": "boolean"
}, },
"readingDirection": {
"type": "string"
},
"ageRatingLock": {
"type": "boolean"
},
"languageLock": {
"type": "boolean"
},
"tags": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"summaryLock": {
"type": "boolean"
},
"readingDirectionLock": {
"type": "boolean"
},
"genres": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"publisherLock": {
"type": "boolean"
},
"statusLock": {
"type": "boolean"
},
"publisher": {
"type": "string"
},
"lastModified": {
"format": "date-time",
"type": "string"
},
"titleSortLock": { "titleSortLock": {
"type": "boolean" "type": "boolean"
}, },
"genresLock": {
"type": "boolean"
},
"status": { "status": {
"type": "string" "type": "string"
} }
@ -971,21 +1006,78 @@
"description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.", "description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.",
"type": "object", "type": "object",
"properties": { "properties": {
"summary": {
"type": "string"
},
"titleSort": { "titleSort": {
"type": "string" "type": "string"
}, },
"statusLock": { "tagsLock": {
"type": "boolean" "type": "boolean"
}, },
"language": {
"type": "string"
},
"ageRating": {
"format": "int32",
"type": "integer"
},
"title": { "title": {
"type": "string" "type": "string"
}, },
"titleLock": { "titleLock": {
"type": "boolean" "type": "boolean"
}, },
"ageRatingLock": {
"type": "boolean"
},
"languageLock": {
"type": "boolean"
},
"readingDirection": {
"type": "string",
"enum": [
"LEFT_TO_RIGHT",
"RIGHT_TO_LEFT",
"VERTICAL",
"WEBTOON"
]
},
"tags": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"summaryLock": {
"type": "boolean"
},
"readingDirectionLock": {
"type": "boolean"
},
"genres": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
},
"publisherLock": {
"type": "boolean"
},
"statusLock": {
"type": "boolean"
},
"publisher": {
"type": "string"
},
"titleSortLock": { "titleSortLock": {
"type": "boolean" "type": "boolean"
}, },
"genresLock": {
"type": "boolean"
},
"status": { "status": {
"type": "string", "type": "string",
"enum": [ "enum": [
@ -1997,6 +2089,30 @@
] ]
} }
}, },
"/api/v1/genres": {
"get": {
"operationId": "getGenres",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"tags": [
"referential-controller"
]
}
},
"/api/v1/series/{seriesId}/read-progress": { "/api/v1/series/{seriesId}/read-progress": {
"post": { "post": {
"operationId": "markAsRead", "operationId": "markAsRead",
@ -3520,6 +3636,30 @@
] ]
} }
}, },
"/api/v1/tags": {
"get": {
"operationId": "getTags",
"responses": {
"200": {
"description": "OK",
"content": {
"application/json": {
"schema": {
"uniqueItems": true,
"type": "array",
"items": {
"type": "string"
}
}
}
}
}
},
"tags": [
"referential-controller"
]
}
},
"/api/v1/collections/{id}/thumbnail": { "/api/v1/collections/{id}/thumbnail": {
"get": { "get": {
"operationId": "getCollectionThumbnail", "operationId": "getCollectionThumbnail",
@ -3743,22 +3883,19 @@
] ]
} }
}, },
"/api/v1/books/{bookId}/metadata": { "/api/v1/books/{bookId}": {
"patch": { "get": {
"requestBody": { "operationId": "getOneBook",
"content": { "responses": {
"application/json": { "200": {
"schema": { "description": "OK",
"$ref": "#/components/schemas/BookMetadataUpdateDto" "content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
} }
} }
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "No Content"
} }
}, },
"parameters": [ "parameters": [
@ -3776,19 +3913,22 @@
] ]
} }
}, },
"/api/v1/books/{bookId}": { "/api/v1/books/{bookId}/metadata": {
"get": { "patch": {
"operationId": "getOneBook", "requestBody": {
"responses": { "content": {
"200": { "application/json": {
"description": "OK", "schema": {
"content": { "$ref": "#/components/schemas/BookMetadataUpdateDto"
"application/json": {
"schema": {
"$ref": "#/components/schemas/BookDto"
}
} }
} }
},
"required": true
},
"operationId": "updateMetadata",
"responses": {
"204": {
"description": "No Content"
} }
}, },
"parameters": [ "parameters": [