From 8b17c8bd078892c8e69d5ceaa7fb6181b5ba0135 Mon Sep 17 00:00:00 2001 From: Jean-Christian Denis Date: Sat, 22 Apr 2023 14:54:56 +0200 Subject: [PATCH] release 2.2 --- CHANGELOG.md | 6 ++++++ _define.php | 2 +- dcstore.xml | 4 ++-- locales/fr/main.lang.php | 10 ++++++---- 4 files changed, 15 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index bd9ad04..db6c473 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +2.2 - 2023.04.22 +* require dotclear 2.26 +* add plugin Uninstaller features +* use latest helper namespace +* fix nullsafe warnings + 2.1 - 2023.03.24 * require dotclear 2.26 * use namespace diff --git a/_define.php b/_define.php index aee6698..372e96c 100644 --- a/_define.php +++ b/_define.php @@ -18,7 +18,7 @@ $this->registerModule( 'Style sheet', 'Another CSS stylesheet for the active theme', 'Osku and contributors', - '2.1', + '2.2', [ 'requires' => [['core', '2.26']], 'permissions' => dcCore::app()->auth->makePermissions([ diff --git a/dcstore.xml b/dcstore.xml index 283dd17..20816ba 100644 --- a/dcstore.xml +++ b/dcstore.xml @@ -2,10 +2,10 @@ Style sheet - 2.1 + 2.2 Osku and contributors Another CSS stylesheet for the active theme - https://github.com/JcDenis/moreCSS/releases/download/v2.1/plugin-moreCSS.zip + https://github.com/JcDenis/moreCSS/releases/download/v2.2/plugin-moreCSS.zip 2.26 https://plugins.dotaddict.org/dc2/details/moreCSS http://forum.dotclear.org/viewtopic.php?id=44908 diff --git a/locales/fr/main.lang.php b/locales/fr/main.lang.php index 2b3ec31..fc32e50 100644 --- a/locales/fr/main.lang.php +++ b/locales/fr/main.lang.php @@ -9,7 +9,9 @@ # DOT NOT MODIFY THIS FILE ! # -l10n::$locales['Style sheet'] = 'Feuille de style'; -l10n::$locales['Style sheet:'] = 'Feuille de style :'; -l10n::$locales['Enable additionnal CSS for the active theme'] = 'Autorisation la feuille de style additionnelle pour le thème actif'; -l10n::$locales['Another CSS stylesheet for the active theme'] = 'Une autre feuille de style CSS pour le thème actif'; +use Dotclear\Helper\L10n; + +L10n::$locales['Style sheet'] = 'Feuille de style'; +L10n::$locales['Style sheet:'] = 'Feuille de style :'; +L10n::$locales['Enable additionnal CSS for the active theme'] = 'Autorisation la feuille de style additionnelle pour le thème actif'; +L10n::$locales['Another CSS stylesheet for the active theme'] = 'Une autre feuille de style CSS pour le thème actif';