Plugin Directory

Changeset 3258467

Timestamp:
03/19/2025 11:47:49 AM (16 months ago)
Author:
clearoutio
Message:

Minor Enhancements

Location:
clearout-email-validator
Files:
19 added
3 edited

Legend:

Unmodified
Added
Removed
  • clearout-email-validator/trunk/assets/js/jquery.amsify.suggestags.js

    r2843997 r3258467  
    543543                        }
    544544
     545                        try {
     546                                let urlObj = new URL(value)
     547                                // Only save the origin + pathname, and remoev any query params
     548                                let sanitisedUrl = urlObj.origin + urlObj.pathname
     549
     550                                // if it ends with slash, remove it and save it, to maintain uniqueness
     551                                if (sanitisedUrl.endsWith('/')) sanitisedUrl = sanitisedUrl.slice(0, -1)
     552
     553                                // If the sanitised URL is diff, remoe that from the tags and add this instead
     554                                if (sanitisedUrl !== value) {
     555                                        value = sanitisedUrl;
     556                                }
     557                        } catch (e) {
     558                                return;
     559                        }
     560
    545561                        var html = '<span class="'+this.classes.tagItem.substring(1)+'" data-val="'+value+'">'+'<a href="'+ this.getTag(value) + '" target="_blank">'+this.getTag(value)+'</a>' + ' '+this.setIcon()+'</span>';
    546562                        $item    = $(html).insertBefore($(this.selectors.sTagsInput));
  • clearout-email-validator/trunk/plugin.php

    r3239399 r3258467  
    44 * Plugin URL:   https://developer.wordpress.org/plugins/clearout-email-validator
    55 * Description:  This plugin seamlessly integrated with all major forms to validate the user's given email address in real-time. Under the hood, this plugin use Clearout API to perform 20+ refined validation checks to determine the status of the email address, and thus helps capturing only the valid leads to maintain high quality mailing list.
    6  * Version:      3.2.0
     6 * Version:      3.2.1
    77 * Author:       Clearout.io
    88 * Author URI:   https://clearout.io
     
    1414
    1515// plugin version.
    16 define( 'CLEAROUT_PLUGIN_VERSION', '3.2.0' );
     16define( 'CLEAROUT_PLUGIN_VERSION', '3.2.1' );
    1717define( 'CLEAROUT_RESULT_CACHED_TIMEOUT', 3600 );
    1818define( 'CLEAROUT_BASE_API_URL', 'https://api.clearout.io/v2/' );
  • clearout-email-validator/trunk/readme.txt

    r3239399 r3258467  
    55Requires at least: 4.6
    66Tested up to: 6.5.5
    7 Stable tag: 3.2.0
     7Stable tag: 3.2.1
    88License: GPLv2 or later
    99Block invalid emails like temporary, disposable, etc. with our real-time email verification. Verify email address during form-fill and stop form spam.
     
    361361= 3.2.0 =
    362362* Introduced WooCommerce Signup Form support
     363= 3.2.1 =
     364* Minor Security Fixes
Note: See TracChangeset for help on using the changeset viewer.