Plugin Directory

Changeset 3333192


Ignore:
Timestamp:
07/23/2025 11:20:39 PM (8 months ago)
Author:
rsecurewp
Message:

Updated Version 1.3.0

Location:
rainbow-secure/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • rainbow-secure/trunk/assets/js/manage-subscription.js

    r3321484 r3333192  
    2626        const queryParams = new URLSearchParams({
    2727          email: data.email,
    28           site: rs_subscription_data.site_url,
     28          company_url: rs_subscription_data.site_url,
     29          appid: data.appid,
    2930          keep_login: data.keep_local_login ? 1 : 0
    3031        });
  • rainbow-secure/trunk/inc/Api/Ajax/FetchSubscriptionDataHandler.php

    r3321484 r3333192  
    1818        $ssoQty            = get_option('rainbow_secure_sso_quantity');
    1919        $keepLocalLogin    = get_option('rainbow_secure_keep_local_login') ? true : false;
    20         $status            = get_option('rainbow_secure_activation_status');
     20        $status            = get_option('rainbow_secure_activation_status');
     21        $app_id            = get_option('rainbow_secure_app_token');
    2122
    2223        wp_send_json_success([
     
    2627            'sso_quantity'       => $ssoQty ?: 0,
    2728            'status'             => $status ?: "N/A",
    28             'keep_local_login'   => $keepLocalLogin
     29            'keep_local_login'   => $keepLocalLogin,
     30            'appid'              => $app_id
    2931        ]);
    3032    }
  • rainbow-secure/trunk/rainbow-secure.php

    r3324593 r3333192  
    88Plugin URI: https://rainbowsecure.com
    99Description: Rainbow Secure MFA and SSO Plugin, allows you to secure your website with an interactive multi-layer security and get single sign on.
    10 Version: 1.2.0
     10Version: 1.3.0
    1111Author: Rainbow Secure
    1212License: GPLv2 or later
  • rainbow-secure/trunk/readme.txt

    r3324593 r3333192  
    44Requires at least: 5.0
    55Tested up to: 6.6
    6 Stable tag: 1.2.0
     6Stable tag: 1.3.0
    77Requires PHP: 7.2
    88License: GPLv2 or later
     
    8888== Changelog ==
    8989
    90 = 1.2.0 = 
     90= 1.3.0 = 
    9191* Initial release of Rainbow Secure 
    9292* Multi-Factor Authentication (MFA) options including OTP and Adaptive Authentication 
     
    9999== Upgrade Notice ==
    100100
    101 = 1.2.0 = 
     101= 1.3.0 = 
    102102Initial release with MFA and SSO support. Configure MFA options and security policies for enhanced protection.
    103103
Note: See TracChangeset for help on using the changeset viewer.