Plugin Directory

Changeset 1864091


Ignore:
Timestamp:
04/25/2018 10:41:55 AM (8 years ago)
Author:
authentiq
Message:

Preparing for 1.0.4 release

Location:
authentiq/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • authentiq/trunk/CHANGELOG.txt

    r1788237 r1864091  
    11== Changelog ==
     2
     3= 1.0.4 - 2018-04-25 =
     4
     5* Tweak - OAuth2 `state` parameter stored as session cookie. Fixes Issue #1.
    26
    37= 1.0.3 - 2017-12-17 =
  • authentiq/trunk/README.txt

    r1788237 r1864091  
    44Requires at least: 4.6
    55Tested up to: 4.9
    6 Stable tag: 1.0.3
     6Stable tag: 1.0.4
    77License: GPLv2 or later
    88License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    112112== Changelog ==
    113113
     114= 1.0.4 - 2018-04-25 =
     115
     116* Tweak - OAuth2 `state` parameter stored as session cookie. Fixes Issue #1.
     117
    114118= 1.0.3 - 2017-12-17 =
    115119
  • authentiq/trunk/authentiq.php

    r1788237 r1864091  
    44 * Plugin URI:        https://wordpress.org/plugins/authentiq
    55 * Description:       Sign in (and sign up) to WordPress sites using the Authentiq ID app. Strong authentication, without the passwords.
    6  * Version:           1.0.3
     6 * Version:           1.0.4
    77 * Author:            The Authentiq Team
    88 * Author URI:        https://www.authentiq.com
     
    2121define('AUTHENTIQ_PLUGIN_DIR', trailingslashit(plugin_dir_path(__FILE__)));
    2222define('AUTHENTIQ_PLUGIN_URL', trailingslashit(plugin_dir_url(__FILE__)));
    23 define('AUTHENTIQ_VERSION', '1.0.3');
     23define('AUTHENTIQ_VERSION', '1.0.4');
    2424define('AUTHENTIQ_NAME', 'authentiq');
    2525define('AUTHENTIQ_LANG', AUTHENTIQ_NAME);
  • authentiq/trunk/includes/class-authentiq-provider.php

    r1788237 r1864091  
    731731
    732732        $state = wp_generate_password(24, false);
    733         @setcookie(self::$cookie_name, $state, (time() + (60 * 30)), '/', '', is_ssl(), true);
     733        // store it as a session cookie
     734        @setcookie(self::$cookie_name, $state, 0, '/', '', is_ssl(), true);
    734735        $_COOKIE[self::$cookie_name] = $state;
    735736
  • authentiq/trunk/public/js/authentiq-public.min.js

    r1788237 r1864091  
    11/*!
    2  * Authentiq WordPress plugin - v1.0.3
     2 * Authentiq WordPress plugin - v1.0.4
    33 *
    44 * Authentiq
Note: See TracChangeset for help on using the changeset viewer.