Changeset 2197233
- Timestamp:
- 11/20/2019 10:16:05 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
r2190374 r2197233 6 6 Tested up to: 5.2.4 7 7 Requires PHP: 5.6 8 Stable tag: 2. 1.78 Stable tag: 2.2.0 9 9 License: GPLv2 or later 10 10 License URI: http://www.gnu.org/licenses/gpl-2.0.html … … 151 151 * Changed link to cloudimage login page in footer 152 152 153 = 2.2.0 = 154 * Change version of the JavaScript responsive plugins 155 * fixed bug with is-resized class for resized images 156 153 157 == Upgrade Notice == 154 158 -
cloudimage/trunk/cloudimage.php
r2190374 r2197233 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. 1.714 * Version: 2.2.0 15 15 * Author: Cloudimage 16 16 * Author URI: https://cloudimage.io … … 31 31 * Rename this for your plugin and update it as you release new versions. 32 32 */ 33 define( 'CLOUDIMAGE_VERSION', '2. 1.7' );33 define( 'CLOUDIMAGE_VERSION', '2.2.0' ); 34 34 35 35 /** -
cloudimage/trunk/includes/class-cloudimage.php
r2190374 r2197233 83 83 $this->version = CLOUDIMAGE_VERSION; 84 84 } else { 85 $this->version = '2. 1.7';85 $this->version = '2.2.0'; 86 86 } 87 87 $this->plugin_name = 'cloudimage'; -
cloudimage/trunk/public/class-cloudimage-public.php
r2184295 r2197233 173 173 174 174 //If we use blurhash - there is different JavaScript file for handling ci-blur-hash, otherwise we use standart JS Cloudimage Responsive 175 if ($use_blurhash){176 wp_enqueue_script('js-cloudimage-responsive', 'https://cdn.scaleflex.it/plugins/js-cloudimage-responsive/3. 1.1/blur-hash/js-cloudimage-responsive.min.js', $use_lazy_loading ? ['lazysizes'] : [], 3, true);175 if ($use_blurhash) { 176 wp_enqueue_script('js-cloudimage-responsive', 'https://cdn.scaleflex.it/plugins/js-cloudimage-responsive/3.2.0/blur-hash/js-cloudimage-responsive.min.js', $use_lazy_loading ? ['lazysizes'] : [], 3, true); 177 177 } else { 178 wp_enqueue_script('js-cloudimage-responsive', 'https://cdn.scaleflex.it/plugins/js-cloudimage-responsive/3. 1.1/js-cloudimage-responsive.min.js', $use_lazy_loading ? ['lazysizes'] : [], 3, true);178 wp_enqueue_script('js-cloudimage-responsive', 'https://cdn.scaleflex.it/plugins/js-cloudimage-responsive/3.2.0/js-cloudimage-responsive.min.js', $use_lazy_loading ? ['lazysizes'] : [], 3, true); 179 179 } 180 180
Note: See TracChangeset
for help on using the changeset viewer.