diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d40b85b..1b63f8ba 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,28 @@ +# [1.4.0](https://code.castopod.org/adaures/castopod/compare/v1.3.5...v1.4.0) (2023-06-21) + +### Bug Fixes + +- **charts:** set duration charts label to HHhMM for listening time analytics + ([3fc1d8e](https://code.castopod.org/adaures/castopod/commit/3fc1d8e18dc8119251c72dcaa7e5121246c2b194)) +- **embed:** set height of player iframe from config + ([4665741](https://code.castopod.org/adaures/castopod/commit/4665741425532f253a46a42ba05602047798dba2)) +- **s3:** serve files without cache if dummy cache handler + add http referer + header to redirect + ([30db9f0](https://code.castopod.org/adaures/castopod/commit/30db9f0667bf7f7a5f186ea667a524d1e3b502db)) +- **s3:** use presigned request uri to serve static files + ([cb92dc7](https://code.castopod.org/adaures/castopod/commit/cb92dc73f17543d32d1cdc24db72403a5c561a74)) +- **webmanifest:** import misc helper to get site_icon_url + ([548a11d](https://code.castopod.org/adaures/castopod/commit/548a11d501749fa61ef894fd8818abae5668554f)) + +### Features + +- **import:** run podcast imports' processes asynchronously using tasks + ([d8e1d40](https://code.castopod.org/adaures/castopod/commit/d8e1d4031d86de9a3889b74ae2a6d9c90af8a1da)) +- **rest-api:** add endpoints for episodes and full text search for podcasts and + episodes + ([85505d4](https://code.castopod.org/adaures/castopod/commit/85505d4b3181c96bc91619e3ab9b0601f8e1c120)), + closes [#296](https://code.castopod.org/adaures/castopod/issues/296) + ## [1.3.5](https://code.castopod.org/adaures/castopod/compare/v1.3.4...v1.3.5) (2023-05-09) ### Bug Fixes diff --git a/app/Config/Constants.php b/app/Config/Constants.php index 062986f5..7189cc07 100644 --- a/app/Config/Constants.php +++ b/app/Config/Constants.php @@ -11,7 +11,7 @@ declare(strict_types=1); | | NOTE: this constant is updated upon release with Continuous Integration. */ -defined('CP_VERSION') || define('CP_VERSION', '1.3.5'); +defined('CP_VERSION') || define('CP_VERSION', '1.4.0'); /* | -------------------------------------------------------------------- diff --git a/composer.json b/composer.json index 9568676e..19ba9771 100644 --- a/composer.json +++ b/composer.json @@ -1,6 +1,6 @@ { "name": "adaures/castopod", - "version": "1.3.5", + "version": "1.4.0", "type": "project", "description": "Castopod is an open-source hosting platform made for podcasters who want engage and interact with their audience.", "homepage": "https://castopod.org", diff --git a/package.json b/package.json index 4ff0f245..92d4f8b0 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "castopod", - "version": "1.3.5", + "version": "1.4.0", "description": "Castopod Host is an open-source hosting platform made for podcasters who want engage and interact with their audience.", "private": true, "license": "AGPL-3.0-or-later",