Plugin Directory

Changeset 2184295


Ignore:
Timestamp:
11/01/2019 08:57:40 AM (6 years ago)
Author:
cloudimageio
Message:

Release of version 2.1.6 - Add default ci-ratio and update JavaScript libraries

Location:
cloudimage
Files:
84 added
4 edited

Legend:

Unmodified
Added
Removed
  • cloudimage/trunk/README.txt

    r2183723 r2184295  
    66Tested up to: 5.2.4
    77Requires PHP: 5.6
    8 Stable tag: 2.1.5
     8Stable tag: 2.1.6
    99License: GPLv2 or later
    1010License URI: http://www.gnu.org/licenses/gpl-2.0.html
     
    143143* Insert different JavaScript responsive library if blurhash is used. Save progressive loading.
    144144
     145= 2.1.6 =
     146* Add default ci-ration = 1
     147* Change the version of the JavaScript responsive libraries
    145148
    146149== Upgrade Notice ==
  • cloudimage/trunk/cloudimage.php

    r2183723 r2184295  
    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.1.5
     14 * Version:           2.1.6
    1515 * Author:            Cloudimage
    1616 * Author URI:        https://cloudimage.io
     
    3131 * Rename this for your plugin and update it as you release new versions.
    3232 */
    33 define( 'CLOUDIMAGE_VERSION', '2.1.5' );
     33define( 'CLOUDIMAGE_VERSION', '2.1.6' );
    3434
    3535/**
  • cloudimage/trunk/includes/class-cloudimage.php

    r2183723 r2184295  
    8383            $this->version = CLOUDIMAGE_VERSION;
    8484        } else {
    85             $this->version = '2.1.5';
     85            $this->version = '2.1.6';
    8686        }
    8787        $this->plugin_name = 'cloudimage';
  • cloudimage/trunk/public/class-cloudimage-public.php

    r2183723 r2184295  
    174174            //If we use blurhash - there is different JavaScript file for handling ci-blur-hash, otherwise we use standart JS Cloudimage Responsive
    175175            if($use_blurhash){
    176                 wp_enqueue_script('js-cloudimage-responsive', 'https://cdn.scaleflex.it/plugins/js-cloudimage-responsive/3.1.0/blur-hash/js-cloudimage-responsive.min.js', $use_lazy_loading ? ['lazysizes'] : [], 3, true);
     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);
    177177            } else {
    178                 wp_enqueue_script('js-cloudimage-responsive', 'https://cdn.scaleflex.it/plugins/js-cloudimage-responsive/3.1.0/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.1.1/js-cloudimage-responsive.min.js', $use_lazy_loading ? ['lazysizes'] : [], 3, true);
    179179            }
    180180
     
    859859            baseUrl: "' . get_site_url() . '",
    860860            lazyLoading: ' . $lazy_loading . ',
     861            ratio: 1,
    861862        });
    862863        ' . $lazy_sizes_if_needed;
Note: See TracChangeset for help on using the changeset viewer.