diff --git a/CHANGELOG.md b/CHANGELOG.md index 58dee305..01460435 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,8 +1,24 @@ # Changelog -## [v2.0.0-alpha.5](https://github.com/marcantondahmen/automad/commit/3443ff5f06d1a52661f7f5318ee183248e95a4d3) +## [v2.0.0-alpha.6](https://github.com/marcantondahmen/automad/commit/2f32588222c4829ca3fad8009d9093949f48360d) -Sun, 30 Jun 2024 19:35:04 +0200 +Sun, 15 Sep 2024 19:28:10 +0200 + +### New Features + +- **ui**: improve button loading animation ([7fbb813ef](https://github.com/marcantondahmen/automad/commit/7fbb813ef89b19da0b16662764da3fa914a9aa7c)) +- add customization fields for CSS and JS code and files ([660691c24](https://github.com/marcantondahmen/automad/commit/660691c2459c33750436a57e50ad7d8237b18e47)) +- add support for remote webp images ([0f1885dd9](https://github.com/marcantondahmen/automad/commit/0f1885dd9d1236549d45b90a936e98ed24f39fab)) +- move mail config to a separate file ([b48b25329](https://github.com/marcantondahmen/automad/commit/b48b253292e950dcbd74d8bd81f898e9933c31c2)) + +### Bugfixes + +- **ui**: fix visibility of navbar items on medium size screens ([2f3258822](https://github.com/marcantondahmen/automad/commit/2f32588222c4829ca3fad8009d9093949f48360d)) +- fix processing of nested in-page editing buttons ([4fa5eb0d3](https://github.com/marcantondahmen/automad/commit/4fa5eb0d3cad40ee39338c975eb427b0c68c6674)) + +## [v2.0.0-alpha.5](https://github.com/marcantondahmen/automad/commit/09e8864bdc5a62ba735aa0a7f08d358e92aaa735) + +Sun, 30 Jun 2024 19:41:20 +0200 ### New Features @@ -329,16 +345,3 @@ Mon, 9 Aug 2021 23:21:36 +0200 ### Bugfixes - **ui**: fix updating links to images that belong to the page they are used on ([723a6be37](https://github.com/marcantondahmen/automad/commit/723a6be37fb283fdcd42a5a365e6089509a25139)) - -## [v1.8.2](https://github.com/marcantondahmen/automad/commit/e070a89209c2e90eadb9be4b77580beef6aa75d1) - -Sun, 8 Aug 2021 22:25:34 +0200 - -### New Features - -- **samples**: add pagelist example page ([2a033f4da](https://github.com/marcantondahmen/automad/commit/2a033f4dada04e3d2fd7d24f2d2d6b1bfd04986e)) -- **samples**: add tags and filters to example pages ([d18f2482b](https://github.com/marcantondahmen/automad/commit/d18f2482b2f258d7b42a6609a439769773ffb7f8)) - -### Bugfixes - -- **themes**: fix thumbnail visibility ([45ed2eee5](https://github.com/marcantondahmen/automad/commit/45ed2eee5f1cf0b81148678820b6a796bf4791e2)) diff --git a/automad/src/server/App.php b/automad/src/server/App.php index fde7e1c3..edf6baf2 100644 --- a/automad/src/server/App.php +++ b/automad/src/server/App.php @@ -56,7 +56,7 @@ * @license MIT license - https://automad.org/license */ class App { - const VERSION = '2.0.0-alpha.5'; + const VERSION = '2.0.0-alpha.6'; /** * Required PHP version. diff --git a/lib/composer.lock b/lib/composer.lock index 8694ec68..54dc37f0 100644 --- a/lib/composer.lock +++ b/lib/composer.lock @@ -12,12 +12,12 @@ "source": { "type": "git", "url": "https://github.com/automadcms/automad-language-packs.git", - "reference": "c5b18f9af31b8eba84c55fb084eff81e8e9e1c2e" + "reference": "d975a1b8a8b10a74fe1feb7891ef1640af641cbf" }, "dist": { "type": "zip", - "url": "https://api.github.com/repos/automadcms/automad-language-packs/zipball/c5b18f9af31b8eba84c55fb084eff81e8e9e1c2e", - "reference": "c5b18f9af31b8eba84c55fb084eff81e8e9e1c2e", + "url": "https://api.github.com/repos/automadcms/automad-language-packs/zipball/d975a1b8a8b10a74fe1feb7891ef1640af641cbf", + "reference": "d975a1b8a8b10a74fe1feb7891ef1640af641cbf", "shasum": "" }, "default-branch": true, @@ -55,7 +55,7 @@ "type": "ko_fi" } ], - "time": "2024-04-12T21:34:55+00:00" + "time": "2024-09-01T19:42:01+00:00" }, { "name": "doctrine/lexer", diff --git a/package-lock.json b/package-lock.json index ca6c9bcb..0e6644ee 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "automad", - "version": "2.0.0-alpha.5", + "version": "2.0.0-alpha.6", "lockfileVersion": 2, "requires": true, "packages": { diff --git a/package.json b/package.json index f11ff597..9388af2b 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "automad", - "version": "2.0.0-alpha.5", + "version": "2.0.0-alpha.6", "description": "Automad", "author": "Marc Anton Dahmen", "license": "MIT",