Skip to content

Commit

Permalink
chore(release): 1.17.0 [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
github-actions[bot] committed Jan 9, 2025
1 parent 6c3565c commit 80d1da5
Show file tree
Hide file tree
Showing 3 changed files with 206 additions and 7 deletions.
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,19 @@
# [1.17.0](https://github.com/gotson/komga/compare/1.16.0...1.17.0) (2025-01-09)
## 🚀 Features

- add support for KOReader Sync ([623b2e3](https://github.com/gotson/komga/commits/623b2e3)), closes [#1760](https://github.com/gotson/komga/issues/1760)

## 🐛 Fixes
**api**
- read progress modified time could be inaccurate in some cases ([6c3565c](https://github.com/gotson/komga/commits/6c3565c))

**unscoped**
- better detection for KCC converted Epub ([6dcebb4](https://github.com/gotson/komga/commits/6dcebb4))

## 🔄️ Changes

- move user roles to separate database table ([cbb0d61](https://github.com/gotson/komga/commits/cbb0d61))

# [1.16.0](https://github.com/gotson/komga/compare/1.15.1...1.16.0) (2025-01-02)
## 🚀 Features
**api**
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.16.0
version=1.17.0
org.gradle.jvmargs=-Xmx2G
195 changes: 189 additions & 6 deletions komga/docs/openapi.json
Original file line number Diff line number Diff line change
Expand Up @@ -405,6 +405,39 @@
}
}
},
"/koreader/syncs/progress": {
"put": {
"tags": [
"koreader-sync-controller"
],
"operationId": "updateProgress",
"requestBody": {
"content": {
"application/json": {
"schema": {
"$ref": "#/components/schemas/DocumentProgressDto"
}
}
},
"required": true
},
"responses": {
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
},
"200": {
"description": "OK"
}
}
}
},
"/kobo/{authToken}/v1/library/{bookId}/state": {
"get": {
"tags": [
Expand Down Expand Up @@ -1195,6 +1228,36 @@
}
}
},
"/koreader/users/create": {
"post": {
"tags": [
"koreader-sync-controller"
],
"operationId": "registerUser",
"responses": {
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
},
"200": {
"description": "OK",
"content": {
"application/vnd.koreader.v1+json": {
"schema": {
"type": "string"
}
}
}
}
}
}
},
"/kobo/{authToken}/v1/auth/device": {
"post": {
"tags": [
Expand Down Expand Up @@ -6222,6 +6285,76 @@
}
}
},
"/koreader/users/auth": {
"get": {
"tags": [
"koreader-sync-controller"
],
"operationId": "authorize",
"responses": {
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
},
"200": {
"description": "OK",
"content": {
"application/vnd.koreader.v1+json": {
"schema": {
"$ref": "#/components/schemas/UserAuthenticationDto"
}
}
}
}
}
}
},
"/koreader/syncs/progress/{bookHash}": {
"get": {
"tags": [
"koreader-sync-controller"
],
"operationId": "getProgress",
"parameters": [
{
"name": "bookHash",
"in": "path",
"required": true,
"schema": {
"type": "string"
}
}
],
"responses": {
"400": {
"description": "Bad Request",
"content": {
"*/*": {
"schema": {
"$ref": "#/components/schemas/ValidationErrorResponse"
}
}
}
},
"200": {
"description": "OK",
"content": {
"application/vnd.koreader.v1+json": {
"schema": {
"$ref": "#/components/schemas/DocumentProgressDto"
}
}
}
}
}
}
},
"/kobo/{authToken}/v1/library/{bookId}/metadata": {
"get": {
"tags": [
Expand Down Expand Up @@ -11365,6 +11498,34 @@
}
}
},
"DocumentProgressDto": {
"required": [
"device",
"device_id",
"document",
"percentage",
"progress"
],
"type": "object",
"properties": {
"document": {
"type": "string"
},
"percentage": {
"type": "number",
"format": "float"
},
"progress": {
"type": "string"
},
"device": {
"type": "string"
},
"device_id": {
"type": "string"
}
}
},
"BookmarkDto": {
"required": [
"LastModified"
Expand Down Expand Up @@ -11645,6 +11806,9 @@
"hashPages": {
"type": "boolean"
},
"hashKoreader": {
"type": "boolean"
},
"analyzeDimensions": {
"type": "boolean"
},
Expand Down Expand Up @@ -13907,6 +14071,7 @@
"convertToCbz",
"emptyTrashAfterScan",
"hashFiles",
"hashKoreader",
"hashPages",
"importBarcodeIsbn",
"importComicInfoBook",
Expand Down Expand Up @@ -14025,6 +14190,9 @@
"hashPages": {
"type": "boolean"
},
"hashKoreader": {
"type": "boolean"
},
"analyzeDimensions": {
"type": "boolean"
},
Expand All @@ -14039,6 +14207,7 @@
"convertToCbz",
"emptyTrashAfterScan",
"hashFiles",
"hashKoreader",
"hashPages",
"id",
"importBarcodeIsbn",
Expand Down Expand Up @@ -14162,6 +14331,9 @@
"hashPages": {
"type": "boolean"
},
"hashKoreader": {
"type": "boolean"
},
"analyzeDimensions": {
"type": "boolean"
},
Expand Down Expand Up @@ -14645,12 +14817,6 @@
"type": "string"
}
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WebLinkUpdateDto"
}
},
"readingDirection": {
"type": "string",
"enum": [
Expand All @@ -14675,6 +14841,12 @@
"type": "integer",
"format": "int32"
},
"links": {
"type": "array",
"items": {
"$ref": "#/components/schemas/WebLinkUpdateDto"
}
},
"sharingLabels": {
"uniqueItems": true,
"type": "array",
Expand Down Expand Up @@ -15485,6 +15657,17 @@
}
}
},
"UserAuthenticationDto": {
"required": [
"authorized"
],
"type": "object",
"properties": {
"authorized": {
"type": "string"
}
}
},
"ResourcesDto": {
"required": [
"Resources"
Expand Down

0 comments on commit 80d1da5

Please sign in to comment.