diff --git a/CHANGELOG.md b/CHANGELOG.md index 1e5327557..3e19167d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,15 @@ +# [0.43.0](https://github.com/gotson/komga/compare/v0.42.0...v0.43.0) (2020-06-29) + + +### Bug Fixes + +* **webui:** lazy load collections on browse series ([d89533d](https://github.com/gotson/komga/commit/d89533ded69f58a96a2c1062067858b589857b00)) + + +### Features + +* **webui:** sort/filter settings are persisted per library ([bf737de](https://github.com/gotson/komga/commit/bf737de91065e56fe1fe11b9ef27cfa913f0ab77)), closes [#190](https://github.com/gotson/komga/issues/190) + # [0.42.0](https://github.com/gotson/komga/compare/v0.41.1...v0.42.0) (2020-06-29) diff --git a/gradle.properties b/gradle.properties index b208f3771..4e6e1ca69 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1 +1 @@ -version=0.42.0 +version=0.43.0 diff --git a/komga/docs/openapi.json b/komga/docs/openapi.json index 7837d2377..46a3f9cc8 100644 --- a/komga/docs/openapi.json +++ b/komga/docs/openapi.json @@ -996,36 +996,6 @@ ] } }, - "/opds/v1.2/series/latest": { - "get": { - "operationId": "getLatestSeries_1", - "responses": { - "200": { - "description": "default response", - "content": { - "application/xml": { - "schema": { - "$ref": "#/components/schemas/OpdsFeed" - } - }, - "application/atom+xml": { - "schema": { - "$ref": "#/components/schemas/OpdsFeed" - } - }, - "text/xml": { - "schema": { - "$ref": "#/components/schemas/OpdsFeed" - } - } - } - } - }, - "tags": [ - "opds-controller" - ] - } - }, "/opds/v1.2/search": { "get": { "operationId": "getSearch", @@ -1056,6 +1026,36 @@ ] } }, + "/opds/v1.2/series/latest": { + "get": { + "operationId": "getLatestSeries_1", + "responses": { + "200": { + "description": "default response", + "content": { + "application/xml": { + "schema": { + "$ref": "#/components/schemas/OpdsFeed" + } + }, + "application/atom+xml": { + "schema": { + "$ref": "#/components/schemas/OpdsFeed" + } + }, + "text/xml": { + "schema": { + "$ref": "#/components/schemas/OpdsFeed" + } + } + } + } + }, + "tags": [ + "opds-controller" + ] + } + }, "/api/v1/books/{bookId}/next": { "get": { "operationId": "getBookSiblingNext", @@ -3162,19 +3162,23 @@ ] } }, - "/api/v1/books/{bookId}": { - "get": { - "operationId": "getOneBook", - "responses": { - "200": { - "description": "default response", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BookDto" - } + "/api/v1/books/{bookId}/metadata": { + "patch": { + "requestBody": { + "description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BookMetadataUpdateDto" } } + }, + "required": true + }, + "operationId": "updateMetadata", + "responses": { + "204": { + "description": "default response" } }, "parameters": [ @@ -3193,23 +3197,19 @@ ] } }, - "/api/v1/books/{bookId}/metadata": { - "patch": { - "requestBody": { - "description": "Metadata fields to update. Set a field to null to unset the metadata. You can omit fields you don\u0027t want to update.", - "content": { - "application/json": { - "schema": { - "$ref": "#/components/schemas/BookMetadataUpdateDto" + "/api/v1/books/{bookId}": { + "get": { + "operationId": "getOneBook", + "responses": { + "200": { + "description": "default response", + "content": { + "application/json": { + "schema": { + "$ref": "#/components/schemas/BookDto" + } } } - }, - "required": true - }, - "operationId": "updateMetadata", - "responses": { - "204": { - "description": "default response" } }, "parameters": [