Plugin Directory

Changeset 3427234


Ignore:
Timestamp:
12/25/2025 11:07:19 AM (3 months ago)
Author:
themepaste
Message:

Update to version 1.1.5 from GitHub

Location:
admin-safety-guard
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • admin-safety-guard/tags/1.1.5/admin-safety-guard.php

    r3419229 r3427234  
    44Plugin URI: http://themepaste.com/product/themepaste-secure-admin-pro/
    55Description: Secure your WordPress login with Admin safety guard to ensure secured access with limit login attempts, 2FA, reCaptcha, IP Blocking, Disable XML-RPC and activity tracking.
    6 Version: 1.1.4
     6Version: 1.1.5
    77Author: Themepaste Team
    88Author URI: http://themepaste.com/
     
    3939        define( 'TPSA_PLUGIN_FILE', __FILE__ );
    4040        define( 'TPSA_PREFIX', 'tpsa' );
    41         define( 'TPSA_PLUGIN_VERSION', '1.1.4' );
     41        define( 'TPSA_PLUGIN_VERSION', '1.1.5' );
    4242        define( 'TPSA_PLUGIN_DIRNAME', dirname( TPSA_PLUGIN_FILE ) );
    4343        define( 'TPSA_PLUGIN_BASENAME', plugin_basename( TPSA_PLUGIN_FILE ) );
  • admin-safety-guard/tags/1.1.5/app/Classes/Features/Recaptcha.php

    r3419229 r3427234  
    315315
    316316        if ( is_wp_error( $response ) ) {
     317            error_log( '[TPSA reCAPTCHA] wp_remote_post error: ' . $response->get_error_message() );
     318            error_log( '[TPSA reCAPTCHA] error code: ' . $response->get_error_code() );
     319
    317320            return new WP_Error( 'recaptcha_failed', __( 'Could not contact reCAPTCHA server.', 'tp-secure-plugin' ) );
    318321        }
  • admin-safety-guard/tags/1.1.5/readme.txt

    r3419229 r3427234  
    55Tested up to: 6.8
    66Requires PHP: 7.0
    7 Stable tag: 1.1.4
     7Stable tag: 1.1.5
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    152152== Changelog ==
    153153
     154= 1.1.5 =
     155* [Maintenance] - Release preparation and version alignment.
     156* [Maintenance] - Internal consistency checks.
     157* [Maintenance] - No code or feature changes in this version.
     158
     159
    154160= 1.1.4 =
    155161* [new] - [New] All Pro features are now available in the free version.
  • admin-safety-guard/trunk/admin-safety-guard.php

    r3419229 r3427234  
    44Plugin URI: http://themepaste.com/product/themepaste-secure-admin-pro/
    55Description: Secure your WordPress login with Admin safety guard to ensure secured access with limit login attempts, 2FA, reCaptcha, IP Blocking, Disable XML-RPC and activity tracking.
    6 Version: 1.1.4
     6Version: 1.1.5
    77Author: Themepaste Team
    88Author URI: http://themepaste.com/
     
    3939        define( 'TPSA_PLUGIN_FILE', __FILE__ );
    4040        define( 'TPSA_PREFIX', 'tpsa' );
    41         define( 'TPSA_PLUGIN_VERSION', '1.1.4' );
     41        define( 'TPSA_PLUGIN_VERSION', '1.1.5' );
    4242        define( 'TPSA_PLUGIN_DIRNAME', dirname( TPSA_PLUGIN_FILE ) );
    4343        define( 'TPSA_PLUGIN_BASENAME', plugin_basename( TPSA_PLUGIN_FILE ) );
  • admin-safety-guard/trunk/app/Classes/Features/Recaptcha.php

    r3419229 r3427234  
    315315
    316316        if ( is_wp_error( $response ) ) {
     317            error_log( '[TPSA reCAPTCHA] wp_remote_post error: ' . $response->get_error_message() );
     318            error_log( '[TPSA reCAPTCHA] error code: ' . $response->get_error_code() );
     319
    317320            return new WP_Error( 'recaptcha_failed', __( 'Could not contact reCAPTCHA server.', 'tp-secure-plugin' ) );
    318321        }
  • admin-safety-guard/trunk/readme.txt

    r3419229 r3427234  
    55Tested up to: 6.8
    66Requires PHP: 7.0
    7 Stable tag: 1.1.4
     7Stable tag: 1.1.5
    88License: GPLv3 or later
    99License URI: https://www.gnu.org/licenses/gpl-3.0.html
     
    152152== Changelog ==
    153153
     154= 1.1.5 =
     155* [Maintenance] - Release preparation and version alignment.
     156* [Maintenance] - Internal consistency checks.
     157* [Maintenance] - No code or feature changes in this version.
     158
     159
    154160= 1.1.4 =
    155161* [new] - [New] All Pro features are now available in the free version.
Note: See TracChangeset for help on using the changeset viewer.