Plugin Directory

Changeset 3112248


Ignore:
Timestamp:
07/04/2024 08:34:58 AM (21 months ago)
Author:
adcaptcha
Message:

Update to version 1.2.2 from GitHub

Location:
adcaptcha
Files:
21 edited
1 copied

Legend:

Unmodified
Added
Removed
  • adcaptcha/assets/banner-1544x500.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/assets/banner-772x250.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/assets/icon-128x128.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/assets/icon-256x256.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/assets/icon.svg

    • Property svn:mime-type set to image/svg+xml
  • adcaptcha/assets/screenshot-1.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/assets/screenshot-2.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/assets/screenshot-3.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/assets/screenshot-4.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/assets/screenshot-5.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/assets/screenshot-6.png

    • Property svn:mime-type changed from application/octet-stream to image/png
  • adcaptcha/tags/1.2.2/adcaptcha.php

    r3080465 r3112248  
    33 * Plugin Name: adCAPTCHA for WordPress
    44 * Description: Secure your site. Elevate your brand. Boost Ad Revenue.
    5  * Version: 1.2.1
     5 * Version: 1.2.2
    66 * Requires at least: 6.4.2
    77 * Requires PHP: 7.4
     
    4040use AdCaptcha\Instantiate;
    4141
    42 const PLUGIN_VERSION_ADCAPTCHA = '1.2.1';
     42const PLUGIN_VERSION_ADCAPTCHA = '1.2.2';
    4343define('ADCAPTCHA_ERROR_MESSAGE', __( 'Please complete the I am human box.', 'adcaptcha' ));
    4444
  • adcaptcha/tags/1.2.2/readme.txt

    r3080465 r3112248  
    55Requires at least: 6.0
    66Tested up to: 6.5.2
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    118118= 1.2.1 =
    119119- Update readme documentation
     120
     121= 1.2.2 =
     122- Minor patch: Plugin update to be compatible with PHP 8.2
  • adcaptcha/tags/1.2.2/src/Plugin/Mailchimp/Forms.php

    r3080455 r3112248  
    6161                                if (!window.adcap || !window.adcap.successToken) {
    6262                                    event.preventDefault();
    63                                     var responseDiv = document.querySelector(".mc4wp-response");
    64                                     responseDiv.innerHTML = \'<div class="mc4wp-alert mc4wp-error" role="alert"><p>\' + adCaptchaErrorMessage + \'</p></div>\';
    6563                                    return false;
    6664                                }
  • adcaptcha/tags/1.2.2/src/Settings/Settings.php

    r3080465 r3112248  
    7171
    7272    public function change_admin_footer_version() {
    73         return 'Version 1.2.1';
     73        return 'Version 1.2.2';
    7474    }
    7575}
  • adcaptcha/tags/1.2.2/src/Widget/Verify.php

    r3080455 r3112248  
    3838    }
    3939
    40     public function get_success_token() {
     40    public static function get_success_token() {
    4141        $script = '
    4242        document.addEventListener("DOMContentLoaded", function() {
  • adcaptcha/trunk/adcaptcha.php

    r3080465 r3112248  
    33 * Plugin Name: adCAPTCHA for WordPress
    44 * Description: Secure your site. Elevate your brand. Boost Ad Revenue.
    5  * Version: 1.2.1
     5 * Version: 1.2.2
    66 * Requires at least: 6.4.2
    77 * Requires PHP: 7.4
     
    4040use AdCaptcha\Instantiate;
    4141
    42 const PLUGIN_VERSION_ADCAPTCHA = '1.2.1';
     42const PLUGIN_VERSION_ADCAPTCHA = '1.2.2';
    4343define('ADCAPTCHA_ERROR_MESSAGE', __( 'Please complete the I am human box.', 'adcaptcha' ));
    4444
  • adcaptcha/trunk/readme.txt

    r3080465 r3112248  
    55Requires at least: 6.0
    66Tested up to: 6.5.2
    7 Stable tag: 1.2.1
     7Stable tag: 1.2.2
    88Requires PHP: 7.4
    99License: GPLv2 or later
     
    118118= 1.2.1 =
    119119- Update readme documentation
     120
     121= 1.2.2 =
     122- Minor patch: Plugin update to be compatible with PHP 8.2
  • adcaptcha/trunk/src/Plugin/Mailchimp/Forms.php

    r3080455 r3112248  
    6161                                if (!window.adcap || !window.adcap.successToken) {
    6262                                    event.preventDefault();
    63                                     var responseDiv = document.querySelector(".mc4wp-response");
    64                                     responseDiv.innerHTML = \'<div class="mc4wp-alert mc4wp-error" role="alert"><p>\' + adCaptchaErrorMessage + \'</p></div>\';
    6563                                    return false;
    6664                                }
  • adcaptcha/trunk/src/Settings/Settings.php

    r3080465 r3112248  
    7171
    7272    public function change_admin_footer_version() {
    73         return 'Version 1.2.1';
     73        return 'Version 1.2.2';
    7474    }
    7575}
  • adcaptcha/trunk/src/Widget/Verify.php

    r3080455 r3112248  
    3838    }
    3939
    40     public function get_success_token() {
     40    public static function get_success_token() {
    4141        $script = '
    4242        document.addEventListener("DOMContentLoaded", function() {
Note: See TracChangeset for help on using the changeset viewer.