Skip to content

Commit

Permalink
chore(release): 1.8.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Nov 28, 2023
1 parent aa65180 commit 6e5e7a9
Show file tree
Hide file tree
Showing 3 changed files with 154 additions and 4 deletions.
51 changes: 51 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,54 @@
# [1.8.0](https://github.com/gotson/komga/compare/1.7.2...1.8.0) (2023-11-28)
## 🚀 Features
**api**
- epub ebook support ([a7252f8](https://github.com/gotson/komga/commits/a7252f8)), closes [#221](https://github.com/gotson/komga/issues/221)

**webui**
- epubreader ([3d69e19](https://github.com/gotson/komga/commits/3d69e19)), closes [#221](https://github.com/gotson/komga/issues/221)

## 🐛 Fixes
**komga**
- better error handling of sse connections ([ab34781](https://github.com/gotson/komga/commits/ab34781))

## 🔄️ Changes
**komga**
- introduce media profile for PDF ([d6680a4](https://github.com/gotson/komga/commits/d6680a4))
- make Media.pageCount explicit ([21e3e7a](https://github.com/gotson/komga/commits/21e3e7a))

**webui**
- remove unused imports ([92b721c](https://github.com/gotson/komga/commits/92b721c))

## 🛠 Build
**dependabot**
- pr format ([35f9196](https://github.com/gotson/komga/commits/35f9196))

**komga**
- fix epub tests ([f3a0a32](https://github.com/gotson/komga/commits/f3a0a32))

**tests**
- only check conveyor modules on push ([06d0d4a](https://github.com/gotson/komga/commits/06d0d4a))

**webui**
- use node 18 ([dedb01f](https://github.com/gotson/komga/commits/dedb01f))

## 📝 Documentation

- update readme description ([c93760b](https://github.com/gotson/komga/commits/c93760b))

## 🌐 Translation

- translated using Weblate (Chinese (Simplified)) ([6b5eba1](https://github.com/gotson/komga/commits/6b5eba1))
- translated using Weblate (French) ([2bf2df9](https://github.com/gotson/komga/commits/2bf2df9))
- translated using Weblate (Japanese) ([d199684](https://github.com/gotson/komga/commits/d199684))

## ⚙️ Dependencies
**ci**
- bump dessant/lock-threads from 4 to 5 ([9db0f07](https://github.com/gotson/komga/commits/9db0f07))
- bump hydraulic-software/conveyor from 12.0 to 12.1 ([82e5887](https://github.com/gotson/komga/commits/82e5887))

**webui**
- bump axios from 1.5.0 to 1.6.0 in /komga-webui ([aa65180](https://github.com/gotson/komga/commits/aa65180))

# [1.7.2](https://github.com/gotson/komga/compare/1.7.1...1.7.2) (2023-11-09)
## 🐛 Fixes
**komga**
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=1.7.2
version=1.8.0
org.gradle.jvmargs=-Xmx2G
105 changes: 102 additions & 3 deletions komga/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -7978,6 +7978,47 @@
}
}
},
"/api/v1/books/{bookId}/resource/**": {
"get": {
"tags": [
"book-controller"
],
"operationId": "getBookResource",
"parameters": [
{
"name": "bookId",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
},
"200": {
"description": "OK",
"content": {
"*/*": {
"schema": {
"type": "string",
"format": "byte"
}
}
}
}
}
}
},
"/api/v1/books/{bookId}/readlists": {
"get": {
"tags": [
Expand Down Expand Up @@ -8414,6 +8455,46 @@
}
}
},
"/api/v1/books/{bookId}/manifest/epub": {
"get": {
"tags": [
"book-controller"
],
"operationId": "getWebPubManifestEpub",
"parameters": [
{
"name": "bookId",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
},
"200": {
"description": "OK",
"content": {
"application/webpub+json": {
"schema": {
"$ref": "#/components/schemas/WPPublicationDto"
}
}
}
}
}
}
},
"/api/v1/books/{bookId}/manifest/divina": {
"get": {
"tags": [
Expand Down Expand Up @@ -11208,8 +11289,10 @@
"WPPublicationDto": {
"required": [
"images",
"landmarks",
"links",
"metadata",
"pageList",
"readingOrder",
"resources",
"toc"
Expand Down Expand Up @@ -11251,6 +11334,18 @@
"items": {
"$ref": "#/components/schemas/WPLinkDto"
}
},
"landmarks": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WPLinkDto"
}
},
"pageList": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WPLinkDto"
}
}
}
},
Expand Down Expand Up @@ -12228,6 +12323,7 @@
"MediaDto": {
"required": [
"comment",
"mediaProfile",
"mediaType",
"pagesCount",
"status"
Expand All @@ -12246,6 +12342,9 @@
},
"comment": {
"type": "string"
},
"mediaProfile": {
"type": "string"
}
}
},
Expand Down Expand Up @@ -12773,9 +12872,6 @@
"type": "number",
"format": "double"
},
"concrete": {
"type": "boolean"
},
"wildcardType": {
"type": "boolean"
},
Expand All @@ -12785,6 +12881,9 @@
"subtypeSuffix": {
"type": "string"
},
"concrete": {
"type": "boolean"
},
"charset": {
"type": "string"
}
Expand Down

0 comments on commit 6e5e7a9

Please sign in to comment.