release 2022.11.20

This commit is contained in:
Jean-Christian Paul Denis 2022-11-20 22:18:34 +01:00
parent 7d4a8f4e51
commit a325b8718a
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
6 changed files with 13 additions and 11 deletions

View File

@ -3,6 +3,10 @@
- [ ] add plugin muppet support (request Mathieu M.)
- [ ] add log for errors
2022.11.20
- fix compatibility with Dotclear 2.24 (required)
- fix feed update
2022.02.13
- Fix sqlStatement errors (dc 2.21)

View File

@ -3,7 +3,7 @@
[![Release](https://img.shields.io/github/v/release/JcDenis/zoneclearFeedServer)](https://github.com/JcDenis/zoneclearFeedServer/releases)
[![Date](https://img.shields.io/github/release-date/JcDenis/zoneclearFeedServer)](https://github.com/JcDenis/zoneclearFeedServer/releases)
[![Issues](https://img.shields.io/github/issues/JcDenis/zoneclearFeedServer)](https://github.com/JcDenis/zoneclearFeedServer/issues)
[![Dotclear](https://img.shields.io/badge/dotclear-v2.20-blue.svg)](https://fr.dotclear.org/download)
[![Dotclear](https://img.shields.io/badge/dotclear-v2.24-blue.svg)](https://fr.dotclear.org/download)
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://plugins.dotaddict.org/dc2/details/zoneclearFeedServer)
[![License](https://img.shields.io/github/license/JcDenis/zoneclearFeedServer)](https://github.com/JcDenis/zoneclearFeedServer/blob/master/LICENSE)
@ -20,7 +20,7 @@ It mix your blog with a feeds planet.
* super admin permission for plugin and services configuration
* admin permission to manage feeds
* Dotclear 2.21
* Dotclear 2.24
## USAGE
@ -37,8 +37,8 @@ Once it's done you can manage your feeds from menu
* License : [GNU GPL v2](https://www.gnu.org/licenses/old-licenses/lgpl-2.0.html)
* Source & contributions : [GitHub Page](https://github.com/JcDenis/zoneclearFeedServer)
* Packages & details: [Dotaddict Page](https://plugins.dotaddict.org/dc2/details/zoneclearFeedServer)
* Discussion & Help: [Dotclear Forum](http://forum.dotclear.org/viewtopic.php?pid=331158)
* Packages & details : [Dotaddict Page](https://plugins.dotaddict.org/dc2/details/zoneclearFeedServer)
* Discussion & Help : [Dotclear Forum](http://forum.dotclear.org/viewtopic.php?pid=331158)
## CONTRIBUTORS

View File

@ -18,7 +18,7 @@ $this->registerModule(
'Feeds server',
'Mix your blog with a feeds planet',
'Jean-Christian Denis, BG, Pierre Van Glabeke',
'2022.11.12',
'2022.11.20',
[
'requires' => [['core', '2.24']],
'permissions' => dcAuth::PERMISSION_CONTENT_ADMIN,

View File

@ -93,7 +93,6 @@ class zcfsPublicBehaviors
/**
* Update feeds after contents.
*
*/
public static function publicAfterDocument()
{
@ -108,7 +107,6 @@ class zcfsPublicBehaviors
/**
* Generic behavior for before and after public content.
*
*/
public static function publicDocument()
{

View File

@ -2,11 +2,11 @@
<modules xmlns:da="http://dotaddict.org/da/">
<module id="zoneclearFeedServer">
<name>Feeds server</name>
<version>2022.02.13</version>
<version>2022.11.20</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/v2021.11.06/plugin-zoneclearFeedServer.zip</file>
<da:dcmin>2.21</da:dcmin>
<file>https://github.com/JcDenis/zoneclearFeedServer/releases/download/v2022.11.20/plugin-zoneclearFeedServer.zip</file>
<da:dcmin>2.24</da:dcmin>
<da:details>https://plugins.dotaddict.org/dc2/details/pacKman</da:details>
<da:support>https://github.com/JcDenis/zoneclearFeedServer</da:support>
</module>

View File

@ -301,7 +301,7 @@ class zoneclearFeedServer
$strReq .= $this->con->limit($params['limit']);
}
$rs = $this->con->select($strReq);
$rs = $this->con->select($strReq);
return $rs;
}