Plugin Directory

Changeset 2356137


Ignore:
Timestamp:
08/10/2020 12:26:12 PM (6 years ago)
Author:
2fas
Message:

Release v3.0.1

Location:
2fas/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • 2fas/trunk/changelog.txt

    r2343404 r2356137  
    11== Changelog ==
     2
     3= 3.0.1 (Aug. 10, 2020) =
     4* Fixed Push Notifications
    25
    36= 3.0 (Jul. 20, 2020) =
  • 2fas/trunk/constants.php

    r2343404 r2356137  
    1515define( 'TWOFAS_TEMPLATES_PATH', $templates_path );
    1616define( 'TWOFAS_WP_ADMIN_PATH', $admin_url );
    17 define( 'TWOFAS_PLUGIN_VERSION', '3.0' );
     17define( 'TWOFAS_PLUGIN_VERSION', '3.0.1' );
    1818define( 'TWOFAS_DEPRECATE_PHP_OLDER_THAN', '5.6' );
  • 2fas/trunk/readme.txt

    r2343404 r2356137  
    130130== Changelog ==
    131131
    132 = 3.0 (Jul. 20, 2020) =
    133 * Dropped support for PHP 5.4, 5.5. Minimum required PHP version is now 5.6
    134 * Dropped support for Wordpress < 4.2 Minimum required version is now 4.2
    135 * Added Privacy Policy
    136 * Updated SDK (Account 4.2, Api 7.2)
    137 * Administrator can disable trusted devices feature
    138 * Administrator can see 2FAS status on each user in user list
    139 * Fixed uninstaller
     132= 3.0.1 (Aug. 10, 2020) =
     133* Fixed Push Notifications
  • 2fas/trunk/src/Codes/QR_Code_Message.php

    r2343404 r2356137  
    6262    private function build_query( $totp_secret, $push_id ) {
    6363        return build_query( [
    64             'secret'  => $totp_secret,
    65             'issuer'  => $this->get_issuer(),
    66             'push_id' => $push_id,
     64            'secret'        => $totp_secret,
     65            'issuer'        => $this->get_issuer(),
     66            'mobile_secret' => $push_id,
    6767        ] );
    6868    }
  • 2fas/trunk/twofas.php

    r2343404 r2356137  
    44 * Plugin URI:  https://wordpress.org/plugins/2fas/
    55 * Description: 2FAS strengthens WordPress admin security by requiring an additional verification code on untrusted devices.
    6  * Version:     3.0
     6 * Version:     3.0.1
    77 * Author:      Two Factor Authentication Service Inc.
    88 * Author URI:  https://2fas.com
Note: See TracChangeset for help on using the changeset viewer.