Plugin Directory

Changeset 2209079


Ignore:
Timestamp:
12/10/2019 08:10:50 AM (6 years ago)
Author:
cloudimageio
Message:

Release of version 2.3.0: Change the default function of Cloudimage picture resizing from fit to bound

Location:
cloudimage/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • cloudimage/trunk/README.txt

    r2199992 r2209079  
    66Tested up to: 5.2.4
    77Requires PHP: 5.6
    8 Stable tag: 2.2.0
     8Stable tag: 2.3.0
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    155155* fixed bug with is-resized class for resized images
    156156
     157= 2.3.0 =
     158* Change the default function of Cloudimage picture resizing from "fit" to "bound"
     159
    157160== Upgrade Notice ==
     161* Upgrading from version 1 to 2 can show you warnings in the admin section
    158162
    159163= 1.0 =
  • cloudimage/trunk/cloudimage.php

    r2197233 r2209079  
    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.2.0
     14 * Version:           2.3.0
    1515 * Author:            Cloudimage
    1616 * Author URI:        https://cloudimage.io
     
    2828/**
    2929 * Currently plugin version.
    30  * Start at version 1.0.0 and use SemVer - https://semver.org
    31  * Rename this for your plugin and update it as you release new versions.
     30 * Start at version 1.0.0
    3231 */
    33 define( 'CLOUDIMAGE_VERSION', '2.2.0' );
     32define( 'CLOUDIMAGE_VERSION', '2.3.0' );
    3433
    3534/**
  • cloudimage/trunk/includes/class-cloudimage.php

    r2197233 r2209079  
    8383            $this->version = CLOUDIMAGE_VERSION;
    8484        } else {
    85             $this->version = '2.2.0';
     85            $this->version = '2.3.0';
    8686        }
    8787        $this->plugin_name = 'cloudimage';
  • cloudimage/trunk/public/class-cloudimage-public.php

    r2197233 r2209079  
    624624
    625625        if ($size_array['width'] > 0 && $size_array['height'] > 0) {
    626             return 'fit';
     626            return 'bound';
    627627        }
    628628
Note: See TracChangeset for help on using the changeset viewer.