Plugin Directory

Changeset 2139101


Ignore:
Timestamp:
08/13/2019 07:35:12 PM (7 years ago)
Author:
rom4i
Message:

1.0.1 release

Location:
sarvarov-lazy-load/trunk
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • sarvarov-lazy-load/trunk/README.txt

    r2139078 r2139101  
    66Tested up to: 5.2.2
    77Requires PHP: 5.6
    8 Stable tag: 1.0.0
     8Stable tag: 1.0.1
    99License: GPLv3 or later
    1010License URI: http://www.gnu.org/licenses/gpl-3.0.html
     
    8787== Changelog ==
    8888
     89= 1.0.1 =
     90* PHP error fix
     91* Minify public CSS & JavaScript files
     92
     93
    8994= 1.0.0 =
    90 * Initial release.
     95* Initial release
    9196
    9297== Upgrade Notice ==
    9398
     99= 1.0.1 =
     100Make your blog more faster by using minified CSS & JS
     101
    94102= 1.0.0 =
    95 This is the first version of the plugin.
     103This is the first version of the plugin
  • sarvarov-lazy-load/trunk/public/class-sarvarov-lazy-load-public.php

    r2139061 r2139101  
    9595   
    9696        // enqueue plugin style
    97         wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/sarvarov-lazy-load.css', array(), $this->plugin_version );
     97        wp_enqueue_style( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'css/sarvarov-lazy-load.min.css', array(), $this->plugin_version );
    9898   
    9999        // inline CSS
     
    117117       
    118118        // enqueue plugin script
    119         wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/sarvarov-lazy-load.js', array( 'jquery' ), $this->plugin_version, false );
     119        wp_enqueue_script( $this->plugin_name, plugin_dir_url( __FILE__ ) . 'js/sarvarov-lazy-load.min.js', array( 'jquery' ), $this->plugin_version, false );
    120120       
    121121        // load lazysizes library
     
    474474            }
    475475           
    476             $output = apply_filters( 'sarvarov_lazy_load_iframe_container', str_replace( $matches[1], " $new_atts_str", $iframe_html ) . $noscript_html, (int)$wh_matches[1] ?: 0, (int)$wh_matches[2] ?: 0, $new_atts );
     476            $output = apply_filters( 'sarvarov_lazy_load_iframe_container', str_replace( $matches[1], " $new_atts_str", $iframe_html ) . $noscript_html, $new_atts );
    477477            $output_with_container = apply_filters( 'sarvarov_lazy_load_image_output', sprintf( '<div class="sarvarov-lazy-iframe sarvarov-not-lazyloaded"%1$s>%2$s</div>', $style_attr, $output ) );
    478478           
  • sarvarov-lazy-load/trunk/public/js/sarvarov-lazy-load.js

    r2139061 r2139101  
    1 (function( $ ) {
     1(function($) {
    22   
    33    'use strict';
  • sarvarov-lazy-load/trunk/sarvarov-lazy-load.php

    r2139084 r2139101  
    44 * Plugin URI:        https://wordpress.org/plugins/sarvarov-lazy-load/
    55 * Description:       Lazy Load all your images, videos and iframes in just one click. Make your blog faster and look better with blurred LQIP and primary color placeholder.
    6  * Version:           1.0.0
     6 * Version:           1.0.1
    77 * Author:            Roman Sarvarov
    88 * Author URI:        https://about.me/sarvaroff
     
    2121 * Define constants.
    2222 */
    23 define( 'SARVAROV_LAZY_LOAD_VERSION', '1.0.0' );
     23define( 'SARVAROV_LAZY_LOAD_VERSION', '1.0.1' );
    2424define( 'SARVAROV_LAZY_LOAD_PLUGIN_NAME', 'sarvarov-lazy-load' );
    2525define( 'SARVAROV_LAZY_LOAD_PLUGIN_SLUG', 'sarvarov_lazy_load' );
Note: See TracChangeset for help on using the changeset viewer.