release 1.2
This commit is contained in:
parent
475e480bf5
commit
d002399028
5 changed files with 39 additions and 23 deletions
11
CHANGELOG.md
11
CHANGELOG.md
|
@ -1,3 +1,14 @@
|
|||
1.2 - 2023.04.24
|
||||
- require dotclear 2.26
|
||||
- use latest dotclear namespace
|
||||
- use sql statement
|
||||
- use static methods for filters
|
||||
- fix comments without email
|
||||
- fix list display
|
||||
- fix nullsafe warnings
|
||||
- add dependencies to plugin antispam
|
||||
- add plugin Uninstaller features
|
||||
|
||||
1.1 - 2023.03.11
|
||||
- code review for Dotclear 2.25
|
||||
|
||||
|
|
|
@ -3,7 +3,7 @@
|
|||
[![Release](https://img.shields.io/github/v/release/JcDenis/whiteListCom)](https://github.com/JcDenis/whiteListCom/releases)
|
||||
[![Date](https://img.shields.io/github/release-date/JcDenis/whiteListCom)](https://github.com/JcDenis/whiteListCom/releases)
|
||||
[![Issues](https://img.shields.io/github/issues/JcDenis/whiteListCom)](https://github.com/JcDenis/whiteListCom/issues)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.25-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotclear](https://img.shields.io/badge/dotclear-v2.26-blue.svg)](https://fr.dotclear.org/download)
|
||||
[![Dotaddict](https://img.shields.io/badge/dotaddict-official-green.svg)](https://plugins.dotaddict.org/dc2/details/whiteListCom)
|
||||
[![License](https://img.shields.io/github/license/JcDenis/whiteListCom)](https://github.com/JcDenis/whiteListCom/blob/master/LICENSE)
|
||||
|
||||
|
@ -20,7 +20,7 @@ and a list of reserved names (pair of nickname / email ).
|
|||
_whiteListCom_ requires:
|
||||
|
||||
* permissions to manage antispam
|
||||
* Dotclear 2.25
|
||||
* Dotclear 2.26
|
||||
|
||||
## USAGE
|
||||
|
||||
|
|
13
_define.php
13
_define.php
|
@ -10,7 +10,7 @@
|
|||
* @copyright Jean-Christian Denis
|
||||
* @copyright GPL-2.0 https://www.gnu.org/licenses/gpl-2.0.html
|
||||
*/
|
||||
if (!defined('DC_RC_PATH')) {
|
||||
if (!defined('DC_RC_PATH') || is_null(dcCore::app()->auth)) {
|
||||
return null;
|
||||
}
|
||||
|
||||
|
@ -18,12 +18,15 @@ $this->registerModule(
|
|||
'Whitelist comments',
|
||||
'Whitelists for comments moderation',
|
||||
'Jean-Christian Denis and Contributors',
|
||||
'1.1',
|
||||
'1.2',
|
||||
[
|
||||
'requires' => [['core', '2.25']],
|
||||
'requires' => [
|
||||
['core', '2.26'],
|
||||
['antispam', '2.0'],
|
||||
],
|
||||
'permissions' => dcCore::app()->auth->makePermissions([
|
||||
dcAuth::PERMISSION_USAGE,
|
||||
dcAuth::PERMISSION_CONTENT_ADMIN,
|
||||
dcCore::app()->auth::PERMISSION_USAGE,
|
||||
dcCore::app()->auth::PERMISSION_CONTENT_ADMIN,
|
||||
]),
|
||||
'priority' => 200,
|
||||
'type' => 'plugin',
|
||||
|
|
|
@ -2,11 +2,11 @@
|
|||
<modules xmlns:da="http://dotaddict.org/da/">
|
||||
<module id="whiteListCom">
|
||||
<name>Whitelist comments</name>
|
||||
<version>1.1</version>
|
||||
<version>1.2</version>
|
||||
<author>Jean-Christian Denis and Contributors</author>
|
||||
<desc>Whitelists for comments moderation</desc>
|
||||
<file>https://github.com/JcDenis/whiteListCom/releases/download/v1.1/plugin-whiteListCom.zip</file>
|
||||
<da:dcmin>2.25</da:dcmin>
|
||||
<file>https://github.com/JcDenis/whiteListCom/releases/download/v1.2/plugin-whiteListCom.zip</file>
|
||||
<da:dcmin>2.26</da:dcmin>
|
||||
<da:details>https://plugins.dotaddict.org/dc2/details/whiteListCom</da:details>
|
||||
<da:support>https://github.com/JcDenis/whiteListCom</da:support>
|
||||
</module>
|
||||
|
|
|
@ -9,16 +9,18 @@
|
|||
# DOT NOT MODIFY THIS FILE !
|
||||
#
|
||||
|
||||
l10n::$locales['Reserved names'] = 'Noms réservés';
|
||||
l10n::$locales['Whitelist of reserved names of users'] = 'Liste blanche des noms d\'utilisateurs réservés';
|
||||
l10n::$locales['This name is reserved to an other user.'] = 'Ce nom est réservé à un autre utilisateur.';
|
||||
l10n::$locales['Reserved names have been successfully updated.'] = 'Le noms réservés ont été mis à jour.';
|
||||
l10n::$locales['Check the users who can make comments without being moderated.'] = 'Cocher les utilisateurs qui peuvent faire des commentaires sans être modérés.';
|
||||
l10n::$locales['Comments authors list'] = 'Liste des auteurs de commentaires';
|
||||
l10n::$locales['Unmoderated authors'] = 'Auteurs non modérés';
|
||||
l10n::$locales['Whitelist of unmoderated authors'] = 'Liste blanche des auteurs non modérés';
|
||||
l10n::$locales['Unmoderated names have been successfully updated.'] = 'Les noms non modérés ont été mis à jour.';
|
||||
l10n::$locales['This filter is used only if comments are moderates'] = 'Ce filtre est utilisé seulement si les commentaires sont modérés.';
|
||||
l10n::$locales['Posts authors list'] = 'Liste des auteurs de billets';
|
||||
l10n::$locales['Whitelists for comments moderation'] = 'Listes blanches pour la modération de commentaires';
|
||||
l10n::$locales['Whitelist comments'] = 'Liste blanche des commentaires';
|
||||
use Dotclear\Helper\L10n;
|
||||
|
||||
L10n::$locales['Reserved names'] = 'Noms réservés';
|
||||
L10n::$locales['Whitelist of reserved names of users'] = 'Liste blanche des noms d\'utilisateurs réservés';
|
||||
L10n::$locales['This name is reserved to an other user.'] = 'Ce nom est réservé à un autre utilisateur.';
|
||||
L10n::$locales['Reserved names have been successfully updated.'] = 'Le noms réservés ont été mis à jour.';
|
||||
L10n::$locales['Check the users who can make comments without being moderated.'] = 'Cocher les utilisateurs qui peuvent faire des commentaires sans être modérés.';
|
||||
L10n::$locales['Comments authors list'] = 'Liste des auteurs de commentaires';
|
||||
L10n::$locales['Unmoderated authors'] = 'Auteurs non modérés';
|
||||
L10n::$locales['Whitelist of unmoderated authors'] = 'Liste blanche des auteurs non modérés';
|
||||
L10n::$locales['Unmoderated names have been successfully updated.'] = 'Les noms non modérés ont été mis à jour.';
|
||||
L10n::$locales['This filter is used only if comments are moderates'] = 'Ce filtre est utilisé seulement si les commentaires sont modérés.';
|
||||
L10n::$locales['Posts authors list'] = 'Liste des auteurs de billets';
|
||||
L10n::$locales['Whitelists for comments moderation'] = 'Listes blanches pour la modération de commentaires';
|
||||
L10n::$locales['Whitelist comments'] = 'Liste blanche des commentaires';
|
||||
|
|
Loading…
Reference in a new issue