Plugin Directory

Changeset 2084125


Ignore:
Timestamp:
05/09/2019 01:15:02 AM (7 years ago)
Author:
ivankk
Message:

Preparing for 0.52 release

Location:
google-authenticator/trunk
Files:
4 added
2 edited

Legend:

Unmodified
Added
Removed
  • google-authenticator/trunk/google-authenticator.php

    r2068375 r2084125  
    55Description: Two-Factor Authentication for WordPress using the Android/iPhone/Blackberry app as One Time Password generator.
    66Author: Ivan Kruchkoff
    7 Version: 0.51
     7Version: 0.52
    88Author URI: https://github.com/ivankruchkoff
    9 Compatibility: WordPress 5.1
     9Compatibility: WordPress 5.2
    1010Text Domain: google-authenticator
    1111Domain Path: /lang
     
    1313----------------------------------------------------------------------------
    1414
     15
     16    Thanks to Fabio Zumbi for Portuguese translation.
     17    Thanks to Guido Schalkx for the Dutch translation.
    1518    Thanks to Henrik Schack for creating / maintaining versions 0.20 to 0.48
    1619    Thanks to Ivan Kruchkoff for his UX improvements in user signup.
     
    313316        array(
    314317            'text' => __( 'iOS: Google Authenticator', 'google-authenticator' ),
    315             'link' => 'https://itunes.apple.com/app/authy/id494168017',
     318            'link' => 'https://itunes.apple.com/app/google-authenticator/id388497605',
    316319        ),
    317320        array(
    318321            'text' => __( 'Android: Authy', 'google-authenticator' ),
    319             'link' => 'https://itunes.apple.com/app/authy/id494168017',
     322            'link' => 'https://play.google.com/store/apps/details?id=com.authy.authy',
    320323        ),
    321324        array(
    322325            'text' => __( 'Android: Google Authenticator', 'google-authenticator' ),
    323             'link' => 'https://itunes.apple.com/app/authy/id494168017',
     326            'link' => 'https://play.google.com/store/apps/details?id=com.google.android.apps.authenticator2',
    324327        ),
    325328        array(
     
    541544    echo "\t<p>\n";
    542545    echo "\t\t<label title=\"".__('If you don\'t have Google Authenticator enabled for your WordPress account, leave this field empty.','google-authenticator')."\">".__('Google Authenticator code','google-authenticator')."<span id=\"google-auth-info\"></span><br />\n";
    543     echo "\t\t<input type=\"text\" name=\"googleotp\" id=\"googleotp\" class=\"input\" value=\"\" size=\"20\" style=\"ime-mode: inactive;\" /></label>\n";
     546    echo "\t\t<input type=\"text\" name=\"googleotp\" id=\"googleotp\" class=\"input\" value=\"\" size=\"20\" style=\"ime-mode: inactive;\" autocomplete=\"off\" /></label>\n";
    544547    echo "\t</p>\n";
    545548}
  • google-authenticator/trunk/readme.txt

    r2068375 r2084125  
    33Tags: authentication,otp,password,security,login,android,iphone,blackberry
    44Requires at least: 4.5
    5 Tested up to: 5.1
    6 Stable tag: 0.51
     5Tested up to: 5.2
     6Stable tag: 0.52
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    8181
    8282== Changelog ==
     83= 0.52 =
     84* Add a Dutch translation
     85* Add a Portuguese translation
     86
    8387= 0.51 =
    8488* Fix a regression that broke app passwords
     
    116120* App password hash function switched to one that doesn't have rainbow tables available.
    117121* PHP notices occurring during app password login removed.
    118 
    119122
    120123= 0.44 = 
     
    167170Thanks to:
    168171
     172[Fabio Zumbi](https://github.com/FabioZumbi12) for the Portuguese translation
     173
     174[Guido Schalkx](https://www.guidoschalkx.com/) for the Dutch translation.
     175
    169176[Henrik.Schack](https://www.paypal.com/cgi-bin/webscr?cmd=_donations&business=henrik%40schack%2edk&lc=US&item_name=Google%20Authenticator&item_number=Google%20Authenticator&no_shipping=0&no_note=1&tax=0&bn=PP%2dDonationsBF&charset=UTF%2d8) for writing/maintaining versions 0.20 through 0.48
    170177
Note: See TracChangeset for help on using the changeset viewer.