release 2021.11.06

This commit is contained in:
Jean-Christian Paul Denis 2021-11-06 16:32:33 +01:00
parent 92521cdbf9
commit 9823608ba5
Signed by: JcDenis
GPG Key ID: 1B5B8C5B90B6C951
5 changed files with 52 additions and 49 deletions

View File

@ -2,6 +2,8 @@
- [ ] fix disallow self blog feeds
- [ ] add plugin muppet support (request Mathieu M.)
- [ ] add log for errors
2021.11.06
- add generic filters (dc 2.20)
- add user pref for columns and filters options (dc 2.20)
- fix redirections, page title, posts feed form

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.19-blue.svg)](https://fr.dotclear.org/download)
[![Dotclear](https://img.shields.io/badge/dotclear-v2.20-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.19
* Dotclear 2.20
## USAGE

View File

@ -18,9 +18,9 @@ $this->registerModule(
'Feeds server',
'Mix your blog with a feeds planet',
'Jean-Christian Denis, BG, Pierre Van Glabeke',
'2021.09.16',
'2021.11.06',
[
'requires' => [['core', '2.19']],
'requires' => [['core', '2.20']],
'permissions' => 'admin',
'type' => 'plugin',
'support' => 'https://github.com/JcDenis/zoneclearFeedServer',

View File

@ -17,90 +17,90 @@ if (!defined('DC_CONTEXT_ADMIN')) {
$mod_id = 'zoneclearFeedServer';
$this->addUserAction(
/* type */
/* type */
'settings',
/* action */
/* action */
'delete_all',
/* ns */
/* ns */
$mod_id,
/* desc */
/* desc */
__('delete all settings')
);
$this->addUserAction(
/* type */
/* type */
'tables',
/* action */
/* action */
'delete',
/* ns */
/* ns */
'zc_feed',
/* desc */
/* desc */
__('delete table')
);
$this->addUserAction(
/* type */
/* type */
'plugins',
/* action */
/* action */
'delete',
/* ns */
/* ns */
$mod_id,
/* desc */
/* desc */
__('delete plugin files')
);
$this->addUserAction(
/* type */
/* type */
'versions',
/* action */
/* action */
'delete',
/* ns */
/* ns */
$mod_id,
/* desc */
/* desc */
__('delete the version number')
);
$this->addDirectAction(
/* type */
/* type */
'settings',
/* action */
/* action */
'delete_all',
/* ns */
/* ns */
$mod_id,
/* desc */
/* desc */
sprintf(__('delete all %s settings'), $mod_id)
);
$this->addDirectAction(
/* type */
/* type */
'tables',
/* action */
/* action */
'delete',
/* ns */
/* ns */
'zc_feed',
/* desc */
/* desc */
sprintf(__('delete %s table'), $mod_id)
);
$this->addDirectAction(
/* type */
/* type */
'plugins',
/* action */
/* action */
'delete',
/* ns */
/* ns */
$mod_id,
/* desc */
/* desc */
sprintf(__('delete %s plugin files'), $mod_id)
);
$this->addDirectAction(
/* type */
/* type */
'versions',
/* action */
/* action */
'delete',
/* ns */
/* ns */
$mod_id,
/* desc */
/* desc */
sprintf(__('delete %s version number'), $mod_id)
);
$this->addDirectCallback(
/* function */
/* function */
'zoneclearfeedServerUninstall',
/* desc */
/* desc */
'delete feeds relations'
);

View File

@ -1,12 +1,13 @@
<?xml version="1.0"?>
<modules xmlns:da="http://dotaddict.org/da/">
<module id="zoneclearFeedServer">
<name>Feeds server</name>
<version>2021.09.16</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.09.16/plugin-zoneclearFeedServer.zip</file>
<da:dcmin>2.19</da:dcmin>
<da:details>https://plugins.dotaddict.org/dc2/details/pacKman</da:details>
<da:support>https://github.com/JcDenis/zoneclearFeedServer</da:support>
</module>
</modules>
<module id="zoneclearFeedServer">
<name>Feeds server</name>
<version>2021.11.06</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.20</da:dcmin>
<da:details>https://plugins.dotaddict.org/dc2/details/pacKman</da:details>
<da:support>https://github.com/JcDenis/zoneclearFeedServer</da:support>
</module>
</modules>