Plugin Directory

Changeset 2300121


Ignore:
Timestamp:
05/07/2020 02:44:42 PM (6 years ago)
Author:
cloudimage
Message:

Release version 2.8.7

Location:
cloudimage/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cloudimage/trunk/README.txt

    r2299211 r2300121  
    66Tested up to: 5.4.0
    77Requires PHP: 5.6
    8 Stable tag: 2.8.6
     8Stable tag: 2.8.7
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    256256* fix bug with some styles used in the JS mode
    257257
     258= 2.8.7 =
     259* fix issue with custom Cloudimage name and background image
     260
    258261== Upgrade Notice ==
    259262* Upgrading from version 1 to 2 can show you warnings in the admin section
  • cloudimage/trunk/cloudimage.php

    r2299211 r2300121  
    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:           2.8.6
     14 * Version:           2.8.7
    1515 * Author:            Cloudimage
    1616 * Author URI:        https://cloudimage.io
     
    3030 * Start at version 1.0.0
    3131 */
    32 define('CLOUDIMAGE_VERSION', '2.8.6');
     32define('CLOUDIMAGE_VERSION', '2.8.7');
    3333
    3434/**
  • cloudimage/trunk/includes/class-cloudimage.php

    r2299211 r2300121  
    8383            $this->version = CLOUDIMAGE_VERSION;
    8484        } else {
    85             $this->version = '2.8.6';
     85            $this->version = '2.8.7';
    8686        }
    8787        $this->plugin_name = 'cloudimage';
  • cloudimage/trunk/public/class-cloudimage-public.php

    r2299211 r2300121  
    341341                        // Construct Cloudimage prefix in both cases - custom domain or token
    342342                        $cloudimg_prefix = "https://" . $this->cloudimage_domain;
    343                         $cloudimg_prefix = strpos($this->cloudimage_domain, '.cloudimg.io') !== false ? $cloudimg_prefix . "/v7/" : $cloudimg_prefix . "/";
     343                        // $cloudimg_prefix = strpos($this->cloudimage_domain, '.cloudimg.io') !== false ? $cloudimg_prefix . "/v7/" : $cloudimg_prefix . "/";
     344                        $cloudimg_prefix = $cloudimg_prefix . "/v7/";
    344345
    345346                        // replace the background-image URL
Note: See TracChangeset for help on using the changeset viewer.