Changeset 2209079
- Timestamp:
- 12/10/2019 08:10:50 AM (6 years ago)
- Location:
- cloudimage/trunk
- Files:
-
- 4 edited
-
README.txt (modified) (2 diffs)
-
cloudimage.php (modified) (2 diffs)
-
includes/class-cloudimage.php (modified) (1 diff)
-
public/class-cloudimage-public.php (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
cloudimage/trunk/README.txt
r2199992 r2209079 6 6 Tested up to: 5.2.4 7 7 Requires PHP: 5.6 8 Stable tag: 2. 2.08 Stable tag: 2.3.0 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 155 155 * fixed bug with is-resized class for resized images 156 156 157 = 2.3.0 = 158 * Change the default function of Cloudimage picture resizing from "fit" to "bound" 159 157 160 == Upgrade Notice == 161 * Upgrading from version 1 to 2 can show you warnings in the admin section 158 162 159 163 = 1.0 = -
cloudimage/trunk/cloudimage.php
r2197233 r2209079 12 12 * Plugin Name: Cloudimage - Responsive Images as a Service 13 13 * Description: The easiest way to <strong>deliver lightning fast images</strong> to your users. 14 * Version: 2. 2.014 * Version: 2.3.0 15 15 * Author: Cloudimage 16 16 * Author URI: https://cloudimage.io … … 28 28 /** 29 29 * 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 32 31 */ 33 define( 'CLOUDIMAGE_VERSION', '2. 2.0' );32 define( 'CLOUDIMAGE_VERSION', '2.3.0' ); 34 33 35 34 /** -
cloudimage/trunk/includes/class-cloudimage.php
r2197233 r2209079 83 83 $this->version = CLOUDIMAGE_VERSION; 84 84 } else { 85 $this->version = '2. 2.0';85 $this->version = '2.3.0'; 86 86 } 87 87 $this->plugin_name = 'cloudimage'; -
cloudimage/trunk/public/class-cloudimage-public.php
r2197233 r2209079 624 624 625 625 if ($size_array['width'] > 0 && $size_array['height'] > 0) { 626 return ' fit';626 return 'bound'; 627 627 } 628 628
Note: See TracChangeset
for help on using the changeset viewer.