diff --git a/CHANGELOG.md b/CHANGELOG.md index 7a08a7d..66cd04c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +arlequin 2.5.1 - 2023.11.04 +=========================================================== +* Require Dotclear 2.28 +* Require PHP 8.1 +* Use last minute Dotclear 2.28 changes +* Fix typo +* Fix permissions + arlequin 2.5 - 2023.10.15 =========================================================== * Require Dotclear 2.28 diff --git a/README.md b/README.md index b1a3538..2e4d4d0 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,7 @@ # README -[![Release](https://img.shields.io/badge/release-2.5-a2cbe9.svg)](https://git.dotclear.watch/JcDenis/arlequin/releases) -![Date](https://img.shields.io/badge/date-2023.10.15-c44d58.svg)] +[![Release](https://img.shields.io/badge/release-2.5.1-a2cbe9.svg)](https://git.dotclear.watch/JcDenis/arlequin/releases) +![Date](https://img.shields.io/badge/date-2023.11.04-c44d58.svg)] [![Dotclear](https://img.shields.io/badge/dotclear-v2.28-137bbb.svg)](https://fr.dotclear.org/download) [![Dotaddict](https://img.shields.io/badge/dotaddict-official-9ac123.svg)](https://plugins.dotaddict.org/dc2/details/arlequin) [![License](https://img.shields.io/badge/license-GPL--2.0-ececec.svg)](https://git.dotclear.watch/JcDenis/arlequin/src/branch/master/LICENSE) diff --git a/_define.php b/_define.php index dbc2c96..21347d4 100644 --- a/_define.php +++ b/_define.php @@ -18,7 +18,7 @@ $this->registerModule( 'Arlequin', 'Allows visitors choose a theme', 'Oleksandr Syenchuk, Pierre Van Glabeke and contributors', - '2.5', + '2.5.1', [ 'requires' => [['core', '2.28']], 'permissions' => 'My', diff --git a/dcstore.xml b/dcstore.xml index 0f4aebc..63cafa3 100644 --- a/dcstore.xml +++ b/dcstore.xml @@ -2,10 +2,10 @@ Arlequin - 2.5 + 2.5.1 Oleksandr Syenchuk, Pierre Van Glabeke and contributors Allows visitors choose a theme - https://git.dotclear.watch/JcDenis/arlequin/releases/download/v2.5/plugin-arlequin.zip + https://git.dotclear.watch/JcDenis/arlequin/releases/download/v2.5.1/plugin-arlequin.zip 2.28 https://git.dotclear.watch/JcDenis/arlequin/src/branch/master/README.md https://git.dotclear.watch/JcDenis/arlequin/issues diff --git a/src/Backend.php b/src/Backend.php index 4ba83a8..fe847cf 100644 --- a/src/Backend.php +++ b/src/Backend.php @@ -43,7 +43,7 @@ class Backend extends Process ]), ]); }, - # 'initWidgets' => Widgets::initWidgets(...), + 'initWidgets' => Widgets::initWidgets(...), ]); return true; diff --git a/src/Frontend.php b/src/Frontend.php index 83c4ab1..bad2c4b 100644 --- a/src/Frontend.php +++ b/src/Frontend.php @@ -61,7 +61,7 @@ class Frontend extends Process App::behavior()->addBehaviors([ 'publicBeforeDocumentV2' => self::adjustCache(...), - # 'initWidgets' => Widgets::initWidgets(...), + 'initWidgets' => Widgets::initWidgets(...), ]); return true;