Plugin Directory

Changeset 2416696


Ignore:
Timestamp:
11/11/2020 03:08:12 PM (5 years ago)
Author:
cloudimage
Message:

Release version 3.0.3

Location:
cloudimage/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cloudimage/trunk/README.txt

    r2411655 r2416696  
    66Tested up to: 5.5.1
    77Requires PHP: 5.6
    8 Stable tag: 3.0.2
     8Stable tag: 3.0.3
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    294294* Fix an issue with RegEx in JS mode (WP_DEBUG warning)
    295295
     296= 3.0.3 =
     297* Fix preg_match issue in some PHP versions
     298
    296299== Upgrade Notice ==
    297300* Upgrading from version 1 to 2 can show you warnings in the admin section
  • cloudimage/trunk/cloudimage.php

    r2411655 r2416696  
    1212 * Plugin Name:       Cloudimage - Responsive Images as a Service
    1313 * Description:       The easiest way to <strong>deliver lightning fast images</strong> to your users.
    14  * Version:           3.0.2
     14 * Version:           3.0.3
    1515 * Author:            Cloudimage
    1616 * Author URI:        https://cloudimage.io
     
    3030 * Start at version 1.0.0
    3131 */
    32 define('CLOUDIMAGE_VERSION', '3.0.2');
     32define('CLOUDIMAGE_VERSION', '3.0.3');
    3333
    3434/**
  • cloudimage/trunk/includes/class-cloudimage.php

    r2411655 r2416696  
    8383            $this->version = CLOUDIMAGE_VERSION;
    8484        } else {
    85             $this->version = '3.0.2';
     85            $this->version = '3.0.3';
    8686        }
    8787        $this->plugin_name = 'cloudimage';
  • cloudimage/trunk/public/class-cloudimage-public.php

    r2411655 r2416696  
    460460                    // don't do the replacement if the image is a data-uri or already a ci-src
    461461                    if (!preg_match("/src=['\"]data:image/is", $imgHTML)
    462                         && !preg_match("/url\s*(['\"]?data:image/is", $imgHTML)
     462                       // && !preg_match("/url\s*(['\"]?data:image/is", $imgHTML)
    463463                        && !preg_match("/ci-src=['\"].*['\"]/is", $imgHTML)
    464464                        && !preg_match("/src=['\"](.*)\.svg['\"]/is", $imgHTML)
Note: See TracChangeset for help on using the changeset viewer.