Plugin Directory

Changeset 3122836


Ignore:
Timestamp:
07/21/2024 11:45:39 PM (21 months ago)
Author:
tompec
Message:

Update to version 1.2.6

Location:
validator-pizza
Files:
4 edited
1 copied

Legend:

Unmodified
Added
Removed
  • validator-pizza/tags/1.2.6/readme.txt

    r3106351 r3122836  
    11=== MailCheck.ai ===
    2 Contributors: tompec, mailcheckai
     2Contributors: tompec
    33Tags: email validation, disposable email, spam prevention, security, user registration
    44Requires at least: 5.2
    55Tested up to: 6.5.3
    66Requires PHP: 7.2
    7 Stable tag: 1.2.5
     7Stable tag: 1.2.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757== Changelog ==
    5858
     59= 1.2.6 =
     60* Update the API endpoint
     61
    5962= 1.2.5 =
    6063* Improved code structure and organization
     
    9194= 1.0 =
    9295* First version
    93 
    94 == Upgrade Notice ==
    95 
    96 = 1.2.5 =
    97 This update improves plugin performance, security, and follows WordPress best practices. It requires WordPress 5.2+ and PHP 7.2+.
    98 
    99 == Privacy Policy ==
    100 
    101 MailCheck.ai plugin sends the domain part of email addresses to the MailCheck.ai API for validation. No personal data or email addresses are stored by the API. For more information, visit the [MailCheck.ai website](https://www.mailcheck.ai).
  • validator-pizza/tags/1.2.6/validator-pizza.php

    r3106351 r3122836  
    1212 * Plugin URI:        https://www.mailcheck.ai
    1313 * Description:       Prevents throwaway emails from signing up or commenting on your website using the MailCheck.ai API.
    14  * Version:           1.2.5
     14 * Version:           1.2.6
    1515 * Requires at least: 5.2
    1616 * Requires PHP:      7.2
     
    8787         */
    8888        private static function fetch_api_data($domain) {
    89             $request_url = "https://api.mailcheck.ai/domain/" . urlencode($domain);
     89            $request_url = "https://api.usercheck.com/domain/" . urlencode($domain);
    9090            $response = wp_remote_get($request_url, array('timeout' => 5));
    9191
  • validator-pizza/trunk/readme.txt

    r3106351 r3122836  
    11=== MailCheck.ai ===
    2 Contributors: tompec, mailcheckai
     2Contributors: tompec
    33Tags: email validation, disposable email, spam prevention, security, user registration
    44Requires at least: 5.2
    55Tested up to: 6.5.3
    66Requires PHP: 7.2
    7 Stable tag: 1.2.5
     7Stable tag: 1.2.6
    88License: GPLv2 or later
    99License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    5757== Changelog ==
    5858
     59= 1.2.6 =
     60* Update the API endpoint
     61
    5962= 1.2.5 =
    6063* Improved code structure and organization
     
    9194= 1.0 =
    9295* First version
    93 
    94 == Upgrade Notice ==
    95 
    96 = 1.2.5 =
    97 This update improves plugin performance, security, and follows WordPress best practices. It requires WordPress 5.2+ and PHP 7.2+.
    98 
    99 == Privacy Policy ==
    100 
    101 MailCheck.ai plugin sends the domain part of email addresses to the MailCheck.ai API for validation. No personal data or email addresses are stored by the API. For more information, visit the [MailCheck.ai website](https://www.mailcheck.ai).
  • validator-pizza/trunk/validator-pizza.php

    r3106351 r3122836  
    1212 * Plugin URI:        https://www.mailcheck.ai
    1313 * Description:       Prevents throwaway emails from signing up or commenting on your website using the MailCheck.ai API.
    14  * Version:           1.2.5
     14 * Version:           1.2.6
    1515 * Requires at least: 5.2
    1616 * Requires PHP:      7.2
     
    8787         */
    8888        private static function fetch_api_data($domain) {
    89             $request_url = "https://api.mailcheck.ai/domain/" . urlencode($domain);
     89            $request_url = "https://api.usercheck.com/domain/" . urlencode($domain);
    9090            $response = wp_remote_get($request_url, array('timeout' => 5));
    9191
Note: See TracChangeset for help on using the changeset viewer.