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 - [ ] fix disallow self blog feeds
- [ ] add plugin muppet support (request Mathieu M.) - [ ] add plugin muppet support (request Mathieu M.)
- [ ] add log for errors - [ ] add log for errors
2021.11.06
- add generic filters (dc 2.20) - add generic filters (dc 2.20)
- add user pref for columns and filters options (dc 2.20) - add user pref for columns and filters options (dc 2.20)
- fix redirections, page title, posts feed form - 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) [![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) [![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) [![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) [![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) [![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 * super admin permission for plugin and services configuration
* admin permission to manage feeds * admin permission to manage feeds
* Dotclear 2.19 * Dotclear 2.20
## USAGE ## USAGE

View File

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

View File

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

View File

@ -1,12 +1,13 @@
<?xml version="1.0"?>
<modules xmlns:da="http://dotaddict.org/da/"> <modules xmlns:da="http://dotaddict.org/da/">
<module id="zoneclearFeedServer"> <module id="zoneclearFeedServer">
<name>Feeds server</name> <name>Feeds server</name>
<version>2021.09.16</version> <version>2021.11.06</version>
<author>Jean-Christian Denis, BG, Pierre Van Glabeke</author> <author>Jean-Christian Denis, BG, Pierre Van Glabeke</author>
<desc>Mix your blog with a feeds planet</desc> <desc>Mix your blog with a feeds planet</desc>
<file>https://github.com/JcDenis/zoneclearFeedServer/releases/download/v2021.09.16/plugin-zoneclearFeedServer.zip</file> <file>https://github.com/JcDenis/zoneclearFeedServer/releases/download/v2021.11.06/plugin-zoneclearFeedServer.zip</file>
<da:dcmin>2.19</da:dcmin> <da:dcmin>2.20</da:dcmin>
<da:details>https://plugins.dotaddict.org/dc2/details/pacKman</da:details> <da:details>https://plugins.dotaddict.org/dc2/details/pacKman</da:details>
<da:support>https://github.com/JcDenis/zoneclearFeedServer</da:support> <da:support>https://github.com/JcDenis/zoneclearFeedServer</da:support>
</module> </module>
</modules> </modules>