release 2023.07.01 fix #2
This commit is contained in:
parent
2623e73649
commit
01db3e79a5
@ -3,9 +3,12 @@
|
||||
- [ ] add plugin muppet support (request Mathieu M.)
|
||||
- [ ] add log for errors
|
||||
|
||||
2023.06.30
|
||||
2023.07.01
|
||||
- require dotclear 2.26
|
||||
- fix php8.1 compliant (hope so)
|
||||
- require php 8.1+
|
||||
- fix php8.1 compliant
|
||||
- duplicate settings to blog pref
|
||||
- fix checkbox helpers
|
||||
|
||||
2023.05.13
|
||||
- require dotclear 2.26
|
||||
|
@ -18,7 +18,7 @@ $this->registerModule(
|
||||
'Feeds server',
|
||||
'Mix your blog with a feeds planet',
|
||||
'Jean-Christian Denis, BG, Pierre Van Glabeke',
|
||||
'2023.06.30.2',
|
||||
'2023.07.01',
|
||||
[
|
||||
'requires' => [
|
||||
['php', '8.1'],
|
||||
|
@ -2,10 +2,10 @@
|
||||
<modules xmlns:da="http://dotaddict.org/da/">
|
||||
<module id="zoneclearFeedServer">
|
||||
<name>Feeds server</name>
|
||||
<version>2023.06.30.2</version>
|
||||
<version>2023.07.01</version>
|
||||
<author>Jean-Christian Denis, BG, Pierre Van Glabeke</author>
|
||||
<desc>Mix your blog with a feeds planet</desc>
|
||||
<file>https://github.com/JcDenis/zoneclearFeedServer/releases/download/v2023.06.30.2/plugin-zoneclearFeedServer.zip</file>
|
||||
<file>https://github.com/JcDenis/zoneclearFeedServer/releases/download/v2023.07.01/plugin-zoneclearFeedServer.zip</file>
|
||||
<da:dcmin>2.26</da:dcmin>
|
||||
<da:details>https://plugins.dotaddict.org/dc2/details/zoneclearFeedServer</da:details>
|
||||
<da:support>https://github.com/JcDenis/zoneclearFeedServer</da:support>
|
||||
|
@ -112,9 +112,9 @@ class BackendBehaviors
|
||||
echo
|
||||
(new Div())->class('fieldset')
|
||||
->items([
|
||||
!is_null($blog_settings) ?
|
||||
!is_null($blog_settings) ?
|
||||
(new Text('h4', My::name()))
|
||||
->id('disclaimerParam') :
|
||||
->id('disclaimerParam') :
|
||||
(new Text()),
|
||||
(new Div())
|
||||
->items($msg),
|
||||
@ -214,16 +214,16 @@ class BackendBehaviors
|
||||
]),
|
||||
]),
|
||||
(new Div())->class('clear')->items(
|
||||
!is_null($blog_settings) && $s->active ?
|
||||
!is_null($blog_settings) && $s->active ?
|
||||
[(new Para())
|
||||
->items([
|
||||
(new Link())
|
||||
->href(dcCore::app()->adminurl?->get('admin.plugin.' . My::id()))
|
||||
->text(__('Configure feeds'))
|
||||
->text(__('Configure feeds')),
|
||||
])] :
|
||||
[],
|
||||
),
|
||||
(new Div())->class('clear')
|
||||
(new Div())->class('clear'),
|
||||
])
|
||||
->render();
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user