Version Description
- Usability fix, input field for codes changed from password to text type.
Download this release
Release Info
Developer | Henrik.Schack |
Plugin | Google Authenticator |
Version | 0.38 |
Comparing to | |
See all releases |
Code changes from version 0.37 to 0.38
- google-authenticator.php +3 -2
- readme.txt +6 -1
google-authenticator.php
CHANGED
@@ -4,7 +4,7 @@ Plugin Name: Google Authenticator
|
|
4 |
Plugin URI: http://henrik.schack.dk/google-authenticator-for-wordpress
|
5 |
Description: Two-Factor Authentication for WordPress using the Android/iPhone/Blackberry app as One Time Password generator.
|
6 |
Author: Henrik Schack
|
7 |
-
Version: 0.
|
8 |
Author URI: http://henrik.schack.dk/
|
9 |
Compatibility: WordPress 3.2.1
|
10 |
Text Domain: google-authenticator
|
@@ -15,6 +15,7 @@ Domain Path: /lang
|
|
15 |
Thanks to Bryan Ruiz for his Base32 encode/decode class, found at php.net.
|
16 |
Thanks to Tobias B�thge for his major code rewrite and German translation.
|
17 |
Thanks to Pascal de Bruijn for his relaxed mode idea.
|
|
|
18 |
|
19 |
----------------------------------------------------------------------------
|
20 |
|
@@ -129,7 +130,7 @@ function create_secret() {
|
|
129 |
function loginform() {
|
130 |
echo "\t<p>\n";
|
131 |
echo "\t\t<label><a href=\"http://code.google.com/p/google-authenticator/\" target=\"_blank\" title=\"".__('If you don\'t have Google Authenticator enabled for your WordPress account, leave this field empty.','google-authenticator')."\">".__('Google Authenticator code','google-authenticator')."</a><span id=\"google-auth-info\"></span><br />\n";
|
132 |
-
echo "\t\t<input type=\"
|
133 |
echo "\t</p>\n";
|
134 |
}
|
135 |
|
4 |
Plugin URI: http://henrik.schack.dk/google-authenticator-for-wordpress
|
5 |
Description: Two-Factor Authentication for WordPress using the Android/iPhone/Blackberry app as One Time Password generator.
|
6 |
Author: Henrik Schack
|
7 |
+
Version: 0.38
|
8 |
Author URI: http://henrik.schack.dk/
|
9 |
Compatibility: WordPress 3.2.1
|
10 |
Text Domain: google-authenticator
|
15 |
Thanks to Bryan Ruiz for his Base32 encode/decode class, found at php.net.
|
16 |
Thanks to Tobias B�thge for his major code rewrite and German translation.
|
17 |
Thanks to Pascal de Bruijn for his relaxed mode idea.
|
18 |
+
Thanks to Daniel Werl for his usability tips.
|
19 |
|
20 |
----------------------------------------------------------------------------
|
21 |
|
130 |
function loginform() {
|
131 |
echo "\t<p>\n";
|
132 |
echo "\t\t<label><a href=\"http://code.google.com/p/google-authenticator/\" target=\"_blank\" title=\"".__('If you don\'t have Google Authenticator enabled for your WordPress account, leave this field empty.','google-authenticator')."\">".__('Google Authenticator code','google-authenticator')."</a><span id=\"google-auth-info\"></span><br />\n";
|
133 |
+
echo "\t\t<input type=\"text\" name=\"otp\" id=\"user_email\" class=\"input\" value=\"\" size=\"20\" tabindex=\"25\" /></label>\n";
|
134 |
echo "\t</p>\n";
|
135 |
}
|
136 |
|
readme.txt
CHANGED
@@ -4,7 +4,7 @@ Donate Link: https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=henri
|
|
4 |
Tags: authentication,otp,password,security,login,android,iphone,blackberry
|
5 |
Requires at least: 3.1.2
|
6 |
Tested up to: 3.2.1
|
7 |
-
Stable tag: 0.
|
8 |
|
9 |
Google Authenticator for your WordPress blog.
|
10 |
|
@@ -58,6 +58,9 @@ Another option is to enable "relaxed mode" in the settings for the plugin, this
|
|
58 |
|
59 |
== Changelog ==
|
60 |
|
|
|
|
|
|
|
61 |
= 0.37 =
|
62 |
* The plugin now supports "relaxed mode" when authenticating. If selected, codes from 4 minutes before and 4 minutes after will work. 30 seconds before and after is still the default setting.
|
63 |
|
@@ -83,3 +86,5 @@ Thanks to:
|
|
83 |
|
84 |
[Pascal de Bruijn](http://blog.pcode.nl/) for his "relaxed mode" idea.
|
85 |
|
|
|
|
4 |
Tags: authentication,otp,password,security,login,android,iphone,blackberry
|
5 |
Requires at least: 3.1.2
|
6 |
Tested up to: 3.2.1
|
7 |
+
Stable tag: 0.38
|
8 |
|
9 |
Google Authenticator for your WordPress blog.
|
10 |
|
58 |
|
59 |
== Changelog ==
|
60 |
|
61 |
+
= 0.38 =
|
62 |
+
* Usability fix, input field for codes changed from password to text type.
|
63 |
+
|
64 |
= 0.37 =
|
65 |
* The plugin now supports "relaxed mode" when authenticating. If selected, codes from 4 minutes before and 4 minutes after will work. 30 seconds before and after is still the default setting.
|
66 |
|
86 |
|
87 |
[Pascal de Bruijn](http://blog.pcode.nl/) for his "relaxed mode" idea.
|
88 |
|
89 |
+
[Daniel Werl](http://technobabbl.es/) for his usability tips.
|
90 |
+
|