Skip to content

Commit

Permalink
Prepare 2.0.0 Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Septdir committed Apr 14, 2023
1 parent bfa63b5 commit 3069d30
Show file tree
Hide file tree
Showing 8 changed files with 25 additions and 25 deletions.
2 changes: 1 addition & 1 deletion language/en-GB/en-GB.plg_authentication_radicalmart.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion language/ru-RU/ru-RU.plg_authentication_radicalmart.ini
Original file line number Diff line number Diff line change
@@ -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
Expand Down
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion radicalmart.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<license>https://www.gnu.org/copyleft/gpl.html GNU/GPL</license>
<authorEmail>boss@delo-design.ru</authorEmail>
<authorUrl>https://delo-design.ru</authorUrl>
<version>1.0.2-dev</version>
<version>2.0.0</version>
<description>PLG_AUTHENTICATION_RADICALMART_DESCRIPTION</description>
<namespace path="src">Joomla\Plugin\Authentication\RadicalMart</namespace>
<scriptfile>script.php</scriptfile>
Expand Down
24 changes: 12 additions & 12 deletions script.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -37,7 +37,7 @@ public function register(Container $container)
*
* @var AdministratorApplication
*
* @since __DEPLOY_VERSION__
* @since 2.0.0
*/
protected AdministratorApplication $app;

Expand All @@ -46,7 +46,7 @@ public function register(Container $container)
*
* @var DatabaseDriver
*
* @since __DEPLOY_VERSION__
* @since 2.0.0
*/
protected DatabaseDriver $db;

Expand All @@ -55,7 +55,7 @@ public function register(Container $container)
*
* @var string
*
* @since __DEPLOY_VERSION__
* @since 2.0.0
*/
protected string $minimumJoomla = '4.2';

Expand All @@ -64,7 +64,7 @@ public function register(Container $container)
*
* @var string
*
* @since __DEPLOY_VERSION__
* @since 2.0.0
*/
protected string $minimumPhp = '7.4';

Expand All @@ -73,7 +73,7 @@ public function register(Container $container)
*
* @var array
*
* @since __DEPLOY_VERSION__
* @since 2.0.0
*/
protected array $updateMethods = [];

Expand All @@ -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)
{
Expand All @@ -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
{
Expand All @@ -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
{
Expand All @@ -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
{
Expand Down Expand Up @@ -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
{
Expand Down Expand Up @@ -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
{
Expand Down
4 changes: 2 additions & 2 deletions services/provider.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -25,7 +25,7 @@
*
* @param Container $container The DI container.
*
* @since __DEPLOY_VERSION__
* @since 2.0.0
*/
public function register(Container $container)
{
Expand Down
12 changes: 6 additions & 6 deletions src/Extension/RadicalMart.php
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down Expand Up @@ -47,7 +47,7 @@ class RadicalMart extends CMSPlugin implements SubscriberInterface
*
* @return array
*
* @since __DEPLOY_VERSION__
* @since 2.0.0
*/
public static function getSubscribedEvents(): array
{
Expand Down Expand Up @@ -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)
{
Expand All @@ -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)
{
Expand All @@ -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)
{
Expand All @@ -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)
{
Expand Down

0 comments on commit 3069d30

Please sign in to comment.