Skip to content

Commit

Permalink
bump version to 1.8
Browse files Browse the repository at this point in the history
  • Loading branch information
mustafauysal committed Feb 18, 2023
1 parent 98278db commit 3ef33a4
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 12 deletions.
5 changes: 3 additions & 2 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "magic-login",
"version": "1.7.0",
"version": "1.8.0",
"description": "WordPress plugin for passwordless login",
"author": {
"name": "handyplugins",
Expand Down
4 changes: 2 additions & 2 deletions plugin.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
* Plugin Name: Magic Login
* Plugin URI: https://handyplugins.co/magic-login-pro/
* Description: Passwordless login for WordPress.
* Version: 1.7
* Version: 1.8
* Requires at least: 5.0
* Requires PHP: 5.6
* Author: HandyPlugins
Expand All @@ -19,7 +19,7 @@
namespace MagicLogin;

// Useful global constants.
define( 'MAGIC_LOGIN_VERSION', '1.7' );
define( 'MAGIC_LOGIN_VERSION', '1.8' );
define( 'MAGIC_LOGIN_PLUGIN_FILE', __FILE__ );
define( 'MAGIC_LOGIN_URL', plugin_dir_url( __FILE__ ) );
define( 'MAGIC_LOGIN_PATH', plugin_dir_path( __FILE__ ) );
Expand Down
23 changes: 16 additions & 7 deletions readme.txt
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
Contributors: handyplugins,m_uysl
Tags: login, passwordless, passwordless-login, magic-login, magic-link
Requires at least: 5.0
Tested up to: 6.1
Tested up to: 6.1.1
Requires PHP: 5.6
Stable tag: 1.7
Stable tag: 1.8
License: GPLv2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html

Expand All @@ -19,7 +19,7 @@ Streamline the login process by sending links to your users. No more passwords t
**[Learn more about Magic Login](https://handyplugins.co/magic-login-pro/)**

= How does it work? 🪄 =
Magic login uses a technique called "magic links". The magic link is a unique link sent directly to your email inbox which allows you to authenticate once.
Magic login uses a technique called "magic links". The magic link is a unique link sent directly to your email inbox which allows you to authenticate.

__Auto Login__: Magic Login also supports auto-login links for outgoing emails. It's useful when pending action from a user, such as reply a comment, complete the checkout, etc..

Expand Down Expand Up @@ -61,7 +61,7 @@ Passwordless authentication is an authentication method in which a user can log

= Is the magic links are secure? =

Yes! In fact, we thought this is more secure than the regular login due to most of the users are using weak passwords. Since magic login generates a random token for a limited time frame it makes the links quite strong and secure. Also, tokens can be used only once.
Yes! In fact, we thought this is more secure than the regular login due to most of the users are using weak passwords. Since magic login generates a random token for a limited time frame it makes the links quite strong and secure.

= When do login links expire? =

Expand All @@ -78,12 +78,21 @@ You can use `[magic_login_form]` shortcode or block. [Learn More.](https://handy

== Screenshots ==

1. Settings Page
2. Login Email
3. Login Block
1. Login Page
2. Settings Page
3. Login Email
4. Login Block

== Changelog ==

= 1.8 (February 18, 2023) =
* New feature: Token Validity - allows to specify how many times a token can be used.
* Improvements on the default login screen
* i18n improvements
* Added: German translation.
* Added: Autocomplete support.
* Added: New token `{{TOKEN_VALIDITY_COUNT}}` to customize email content.

= 1.7 (January 21, 2023) =
* PHP 8.1: fix deprecated 'FILTER_SANITIZE_STRING'
* UI/UX improvements on default login screen
Expand Down

0 comments on commit 3ef33a4

Please sign in to comment.