Plugin Directory

Changeset 3114791


Ignore:
Timestamp:
07/09/2024 08:20:42 AM (8 months ago)
Author:
friendlycaptcha
Message:

Update to version 1.14.5 from GitHub

Location:
friendly-captcha
Files:
6 edited
1 copied

Legend:

Unmodified
Added
Removed
  • friendly-captcha/tags/1.14.5/friendly-captcha.php

    r3102176 r3114791  
    44 * Plugin Name: Friendly Captcha for WordPress
    55 * Description: Protect WordPress website forms from spam and abuse with Friendly Captcha, a privacy-first anti-bot solution.
    6  * Version: 1.14.4
     6 * Version: 1.14.5
    77 * Requires at least: 5.0
    88 * Requires PHP: 7.3
     
    2020}
    2121
    22 define('FRIENDLY_CAPTCHA_VERSION', '1.14.4');
     22define('FRIENDLY_CAPTCHA_VERSION', '1.14.5');
    2323define('FRIENDLY_CAPTCHA_FRIENDLY_CHALLENGE_VERSION', '0.9.12');
    2424define('FRIENDLY_CAPTCHA_FRIENDLY_CAPTCHA_SDK_VERSION', '0.1.7');
  • friendly-captcha/tags/1.14.5/includes/verification.php

    r3095155 r3114791  
    1515{
    1616    $endpoint = 'https://api.friendlycaptcha.com/api/v1/siteverify';
     17    if (FriendlyCaptcha_Plugin::$instance->get_eu_puzzle_endpoint_active()) {
     18        $endpoint = 'https://eu-api.friendlycaptcha.eu/api/v1/siteverify';
     19    }
    1720
    1821    $request_body = array(
  • friendly-captcha/tags/1.14.5/readme.txt

    r3102176 r3114791  
    55Tested up to: 6.5
    66Requires PHP: 7.3
    7 Stable tag: 1.14.4
     7Stable tag: 1.14.5
    88License: GPL v2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html 
     
    9797== Changelog ==
    9898
     99= 1.14.5 =
     100
     101* Use the EU endpoint for verification when it's enabled
     102
    99103= 1.14.4 =
    100104
  • friendly-captcha/trunk/friendly-captcha.php

    r3102176 r3114791  
    44 * Plugin Name: Friendly Captcha for WordPress
    55 * Description: Protect WordPress website forms from spam and abuse with Friendly Captcha, a privacy-first anti-bot solution.
    6  * Version: 1.14.4
     6 * Version: 1.14.5
    77 * Requires at least: 5.0
    88 * Requires PHP: 7.3
     
    2020}
    2121
    22 define('FRIENDLY_CAPTCHA_VERSION', '1.14.4');
     22define('FRIENDLY_CAPTCHA_VERSION', '1.14.5');
    2323define('FRIENDLY_CAPTCHA_FRIENDLY_CHALLENGE_VERSION', '0.9.12');
    2424define('FRIENDLY_CAPTCHA_FRIENDLY_CAPTCHA_SDK_VERSION', '0.1.7');
  • friendly-captcha/trunk/includes/verification.php

    r3095155 r3114791  
    1515{
    1616    $endpoint = 'https://api.friendlycaptcha.com/api/v1/siteverify';
     17    if (FriendlyCaptcha_Plugin::$instance->get_eu_puzzle_endpoint_active()) {
     18        $endpoint = 'https://eu-api.friendlycaptcha.eu/api/v1/siteverify';
     19    }
    1720
    1821    $request_body = array(
  • friendly-captcha/trunk/readme.txt

    r3102176 r3114791  
    55Tested up to: 6.5
    66Requires PHP: 7.3
    7 Stable tag: 1.14.4
     7Stable tag: 1.14.5
    88License: GPL v2 or later
    99License URI: https://www.gnu.org/licenses/gpl-2.0.html 
     
    9797== Changelog ==
    9898
     99= 1.14.5 =
     100
     101* Use the EU endpoint for verification when it's enabled
     102
    99103= 1.14.4 =
    100104
Note: See TracChangeset for help on using the changeset viewer.