release 2.2
This commit is contained in:
parent
c4e8ff1db9
commit
8b17c8bd07
4 changed files with 15 additions and 7 deletions
|
@ -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
|
2.1 - 2023.03.24
|
||||||
* require dotclear 2.26
|
* require dotclear 2.26
|
||||||
* use namespace
|
* use namespace
|
||||||
|
|
|
@ -18,7 +18,7 @@ $this->registerModule(
|
||||||
'Style sheet',
|
'Style sheet',
|
||||||
'Another CSS stylesheet for the active theme',
|
'Another CSS stylesheet for the active theme',
|
||||||
'Osku and contributors',
|
'Osku and contributors',
|
||||||
'2.1',
|
'2.2',
|
||||||
[
|
[
|
||||||
'requires' => [['core', '2.26']],
|
'requires' => [['core', '2.26']],
|
||||||
'permissions' => dcCore::app()->auth->makePermissions([
|
'permissions' => dcCore::app()->auth->makePermissions([
|
||||||
|
|
|
@ -2,10 +2,10 @@
|
||||||
<modules xmlns:da="http://dotaddict.org/da/">
|
<modules xmlns:da="http://dotaddict.org/da/">
|
||||||
<module id="moreCSS">
|
<module id="moreCSS">
|
||||||
<name>Style sheet</name>
|
<name>Style sheet</name>
|
||||||
<version>2.1</version>
|
<version>2.2</version>
|
||||||
<author>Osku and contributors</author>
|
<author>Osku and contributors</author>
|
||||||
<desc>Another CSS stylesheet for the active theme</desc>
|
<desc>Another CSS stylesheet for the active theme</desc>
|
||||||
<file>https://github.com/JcDenis/moreCSS/releases/download/v2.1/plugin-moreCSS.zip</file>
|
<file>https://github.com/JcDenis/moreCSS/releases/download/v2.2/plugin-moreCSS.zip</file>
|
||||||
<da:dcmin>2.26</da:dcmin>
|
<da:dcmin>2.26</da:dcmin>
|
||||||
<da:details>https://plugins.dotaddict.org/dc2/details/moreCSS</da:details>
|
<da:details>https://plugins.dotaddict.org/dc2/details/moreCSS</da:details>
|
||||||
<da:support>http://forum.dotclear.org/viewtopic.php?id=44908</da:support>
|
<da:support>http://forum.dotclear.org/viewtopic.php?id=44908</da:support>
|
||||||
|
|
|
@ -9,7 +9,9 @@
|
||||||
# DOT NOT MODIFY THIS FILE !
|
# DOT NOT MODIFY THIS FILE !
|
||||||
#
|
#
|
||||||
|
|
||||||
l10n::$locales['Style sheet'] = 'Feuille de style';
|
use Dotclear\Helper\L10n;
|
||||||
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['Style sheet'] = 'Feuille de style';
|
||||||
l10n::$locales['Another CSS stylesheet for the active theme'] = 'Une autre feuille de style CSS pour le thème actif';
|
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';
|
||||||
|
|
Loading…
Reference in a new issue