From 0d5ea9493448a1a24fdd7716217e41fbf892dd63 Mon Sep 17 00:00:00 2001 From: djmaze Date: Wed, 21 Apr 2021 10:34:54 +0200 Subject: [PATCH] Resolve #87 Resolve #85 --- plugins/auto-domain-grab/index.php | 2 ++ plugins/black-list/index.php | 4 +++- plugins/ckeditor/index.php | 2 +- plugins/custom-auth-example/index.php | 2 ++ plugins/custom-login-mapping/index.php | 4 +++- plugins/override-smtp-credentials/index.php | 4 +++- plugins/proxyauth-login-example/index.php | 2 ++ plugins/white-list/index.php | 4 +++- 8 files changed, 19 insertions(+), 5 deletions(-) diff --git a/plugins/auto-domain-grab/index.php b/plugins/auto-domain-grab/index.php index 64a5f0ec5..f55c4597c 100644 --- a/plugins/auto-domain-grab/index.php +++ b/plugins/auto-domain-grab/index.php @@ -14,6 +14,8 @@ class AutoDomainGrabPlugin extends \RainLoop\Plugins\AbstractPlugin { const NAME = '', + VERSION = '2.1', + REQUIRED = '2.5.0', CATEGORY = 'General', DESCRIPTION = ''; diff --git a/plugins/black-list/index.php b/plugins/black-list/index.php index 3b6aefd63..4c810a4fe 100644 --- a/plugins/black-list/index.php +++ b/plugins/black-list/index.php @@ -4,7 +4,9 @@ class BlackListPlugin extends \RainLoop\Plugins\AbstractPlugin { const NAME = 'Black list', - VERSION = '2.0', + VERSION = '2.1', + RELEASE = '2021-04-21', + REQUIRED = '2.5.0', CATEGORY = 'Login', DESCRIPTION = 'Simple black list plugin (with wildcard and exceptions functionality).'; diff --git a/plugins/ckeditor/index.php b/plugins/ckeditor/index.php index d1973d66d..a5a0c5c6d 100644 --- a/plugins/ckeditor/index.php +++ b/plugins/ckeditor/index.php @@ -5,7 +5,7 @@ class CKEditorPlugin extends \RainLoop\Plugins\AbstractPlugin const NAME = 'CKEditor', VERSION = '2.1', - RELEASE = '2021-04-01', + RELEASE = '2021-04-19', REQUIRED = '2.5.0', DESCRIPTION = 'Use CKEditor instead of Squire as WYSIWYG'; diff --git a/plugins/custom-auth-example/index.php b/plugins/custom-auth-example/index.php index e68572c14..ea031f670 100644 --- a/plugins/custom-auth-example/index.php +++ b/plugins/custom-auth-example/index.php @@ -4,6 +4,8 @@ class CustomAuthExamplePlugin extends \RainLoop\Plugins\AbstractPlugin { const NAME = '', + VERSION = '2.1', + REQUIRED = '2.5.0', CATEGORY = 'Login', DESCRIPTION = ''; diff --git a/plugins/custom-login-mapping/index.php b/plugins/custom-login-mapping/index.php index 3c78cd10f..ecff4a28e 100644 --- a/plugins/custom-login-mapping/index.php +++ b/plugins/custom-login-mapping/index.php @@ -4,7 +4,9 @@ class CustomLoginMappingPlugin extends \RainLoop\Plugins\AbstractPlugin { const NAME = 'Custom Login Mapping', - VERSION = '2.0', + VERSION = '2.1', + RELEASE = '2021-04-21', + REQUIRED = '2.5.0', CATEGORY = 'Login', DESCRIPTION = 'Plugin which allows you to set up custom username by email address.'; diff --git a/plugins/override-smtp-credentials/index.php b/plugins/override-smtp-credentials/index.php index 1b019e565..36e79e04a 100644 --- a/plugins/override-smtp-credentials/index.php +++ b/plugins/override-smtp-credentials/index.php @@ -4,7 +4,9 @@ class OverrideSmtpCredentialsPlugin extends \RainLoop\Plugins\AbstractPlugin { const NAME = 'Override Smtp Credentials', - VERSION = '2.0', + VERSION = '2.1', + RELEASE = '2021-04-21', + REQUIRED = '2.5.0', CATEGORY = 'Filters', DESCRIPTION = 'Plugin which allows you to override smtp credentials specified users.'; diff --git a/plugins/proxyauth-login-example/index.php b/plugins/proxyauth-login-example/index.php index 18c35ea33..f242c973c 100644 --- a/plugins/proxyauth-login-example/index.php +++ b/plugins/proxyauth-login-example/index.php @@ -4,6 +4,8 @@ class ProxyauthLoginExamplePlugin extends \RainLoop\Plugins\AbstractPlugin { const NAME = '', + VERSION = '2.1', + REQUIRED = '2.5.0', CATEGORY = 'General', DESCRIPTION = ''; diff --git a/plugins/white-list/index.php b/plugins/white-list/index.php index b2e4bebd8..dd7d9ff38 100644 --- a/plugins/white-list/index.php +++ b/plugins/white-list/index.php @@ -4,7 +4,9 @@ class WhiteListPlugin extends \RainLoop\Plugins\AbstractPlugin { const NAME = 'White list', - VERSION = '2.0', + VERSION = '2.1', + RELEASE = '2021-04-21', + REQUIRED = '2.5.0', CATEGORY = 'Login', DESCRIPTION = 'Simple white list plugin (with wildcard and exceptions functionality).';