From 3069d30b0445d49ab3f4519c0f6db78409112e62 Mon Sep 17 00:00:00 2001 From: Igor Berdichevskiy Date: Fri, 14 Apr 2023 15:08:24 +0300 Subject: [PATCH] Prepare 2.0.0 Release --- .../en-GB.plg_authentication_radicalmart.ini | 2 +- ...-GB.plg_authentication_radicalmart.sys.ini | 2 +- .../ru-RU.plg_authentication_radicalmart.ini | 2 +- ...-RU.plg_authentication_radicalmart.sys.ini | 2 +- radicalmart.xml | 2 +- script.php | 24 +++++++++---------- services/provider.php | 4 ++-- src/Extension/RadicalMart.php | 12 +++++----- 8 files changed, 25 insertions(+), 25 deletions(-) diff --git a/language/en-GB/en-GB.plg_authentication_radicalmart.ini b/language/en-GB/en-GB.plg_authentication_radicalmart.ini index 04ff893..25e102d 100644 --- a/language/en-GB/en-GB.plg_authentication_radicalmart.ini +++ b/language/en-GB/en-GB.plg_authentication_radicalmart.ini @@ -1,6 +1,6 @@ ; @package RadicalMart Authentication ; @subpackage plg_authentication_radicalmart -; @version __DEPLOY_VERSION__ +; @version 2.0.0 ; @author Delo Design - delo-design.ru ; @copyright Copyright (c) 2023 Delo Design. All rights reserved. ; @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html diff --git a/language/en-GB/en-GB.plg_authentication_radicalmart.sys.ini b/language/en-GB/en-GB.plg_authentication_radicalmart.sys.ini index c4ec074..1939e90 100644 --- a/language/en-GB/en-GB.plg_authentication_radicalmart.sys.ini +++ b/language/en-GB/en-GB.plg_authentication_radicalmart.sys.ini @@ -1,6 +1,6 @@ ; @package RadicalMart Authentication ; @subpackage plg_authentication_radicalmart -; @version __DEPLOY_VERSION__ +; @version 2.0.0 ; @author Delo Design - delo-design.ru ; @copyright Copyright (c) 2023 Delo Design. All rights reserved. ; @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html diff --git a/language/ru-RU/ru-RU.plg_authentication_radicalmart.ini b/language/ru-RU/ru-RU.plg_authentication_radicalmart.ini index 4bb6444..468a0ba 100644 --- a/language/ru-RU/ru-RU.plg_authentication_radicalmart.ini +++ b/language/ru-RU/ru-RU.plg_authentication_radicalmart.ini @@ -1,6 +1,6 @@ ; @package RadicalMart Authentication ; @subpackage plg_authentication_radicalmart -; @version __DEPLOY_VERSION__ +; @version 2.0.0 ; @author Delo Design - delo-design.ru ; @copyright Copyright (c) 2023 Delo Design. All rights reserved. ; @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html diff --git a/language/ru-RU/ru-RU.plg_authentication_radicalmart.sys.ini b/language/ru-RU/ru-RU.plg_authentication_radicalmart.sys.ini index 331580b..dfc1b38 100644 --- a/language/ru-RU/ru-RU.plg_authentication_radicalmart.sys.ini +++ b/language/ru-RU/ru-RU.plg_authentication_radicalmart.sys.ini @@ -1,6 +1,6 @@ ; @package RadicalMart Authentication ; @subpackage plg_authentication_radicalmart -; @version __DEPLOY_VERSION__ +; @version 2.0.0 ; @author Delo Design - delo-design.ru ; @copyright Copyright (c) 2023 Delo Design. All rights reserved. ; @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html diff --git a/radicalmart.xml b/radicalmart.xml index c56e8bc..ac2a334 100644 --- a/radicalmart.xml +++ b/radicalmart.xml @@ -7,7 +7,7 @@ https://www.gnu.org/copyleft/gpl.html GNU/GPL boss@delo-design.ru https://delo-design.ru - 1.0.2-dev + 2.0.0 PLG_AUTHENTICATION_RADICALMART_DESCRIPTION Joomla\Plugin\Authentication\RadicalMart script.php diff --git a/script.php b/script.php index a451be2..4d91399 100644 --- a/script.php +++ b/script.php @@ -2,7 +2,7 @@ /* * @package RadicalMart Authentication * @subpackage plg_authentication_radicalmart - * @version __DEPLOY_VERSION__ + * @version 2.0.0 * @author Delo Design - delo-design.ru * @copyright Copyright (c) 2023 Delo Design. All rights reserved. * @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html @@ -37,7 +37,7 @@ public function register(Container $container) * * @var AdministratorApplication * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected AdministratorApplication $app; @@ -46,7 +46,7 @@ public function register(Container $container) * * @var DatabaseDriver * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected DatabaseDriver $db; @@ -55,7 +55,7 @@ public function register(Container $container) * * @var string * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected string $minimumJoomla = '4.2'; @@ -64,7 +64,7 @@ public function register(Container $container) * * @var string * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected string $minimumPhp = '7.4'; @@ -73,7 +73,7 @@ public function register(Container $container) * * @var array * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected array $updateMethods = []; @@ -82,7 +82,7 @@ public function register(Container $container) * * @param AdministratorApplication $app The application object. * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ public function __construct(AdministratorApplication $app) { @@ -97,7 +97,7 @@ public function __construct(AdministratorApplication $app) * * @return boolean True on success * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ public function install(InstallerAdapter $adapter): bool { @@ -113,7 +113,7 @@ public function install(InstallerAdapter $adapter): bool * * @return boolean True on success * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ public function update(InstallerAdapter $adapter): bool { @@ -127,7 +127,7 @@ public function update(InstallerAdapter $adapter): bool * * @return boolean True on success * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ public function uninstall(InstallerAdapter $adapter): bool { @@ -169,7 +169,7 @@ public function preflight(string $type, InstallerAdapter $adapter): bool * * @return boolean True on success * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ public function postflight(string $type, InstallerAdapter $adapter): bool { @@ -220,7 +220,7 @@ protected function changeUpdateServer() * * @return bool True on success, False on failure. * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected function checkCompatible(): bool { diff --git a/services/provider.php b/services/provider.php index bd73356..3f7ffc8 100644 --- a/services/provider.php +++ b/services/provider.php @@ -2,7 +2,7 @@ /* * @package RadicalMart Authentication * @subpackage plg_authentication_radicalmart - * @version __DEPLOY_VERSION__ + * @version 2.0.0 * @author Delo Design - delo-design.ru * @copyright Copyright (c) 2023 Delo Design. All rights reserved. * @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html @@ -25,7 +25,7 @@ * * @param Container $container The DI container. * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ public function register(Container $container) { diff --git a/src/Extension/RadicalMart.php b/src/Extension/RadicalMart.php index e32c4cd..2fbdd93 100644 --- a/src/Extension/RadicalMart.php +++ b/src/Extension/RadicalMart.php @@ -2,7 +2,7 @@ /* * @package RadicalMart Authentication * @subpackage plg_authentication_radicalmart - * @version __DEPLOY_VERSION__ + * @version 2.0.0 * @author Delo Design - delo-design.ru * @copyright Copyright (c) 2023 Delo Design. All rights reserved. * @license GNU/GPL license: https://www.gnu.org/copyleft/gpl.html @@ -47,7 +47,7 @@ class RadicalMart extends CMSPlugin implements SubscriberInterface * * @return array * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ public static function getSubscribedEvents(): array { @@ -118,7 +118,7 @@ public function onUserAuthenticate(array &$credentials, array $options, object & * * @return false|User User object if found, False if not. * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected function getRadicalMartUser(string $username) { @@ -139,7 +139,7 @@ protected function getRadicalMartUser(string $username) * * @return false|User User object on if find, False on not. * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected function getRadicalMartExpressUser(string $username) { @@ -159,7 +159,7 @@ protected function getRadicalMartExpressUser(string $username) * @param User $user Find user object. * @param object $response Authentication response object. * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected function authenticateWithPassword(array $credentials, array $options, User $user, object &$response) { @@ -186,7 +186,7 @@ protected function authenticateWithPassword(array $credentials, array $options, * @param User $user Find user object. * @param object $response Authentication response object. * - * @since __DEPLOY_VERSION__ + * @since 2.0.0 */ protected function authenticateWithCode(array $credentials, array $options, User $user, object &$response) {