Version Description
- Bugfix: Prevent a fatal error on case sensitive operating systems
Download this release
Release Info
| Developer | wp_media |
| Plugin | |
| Version | 2.0.1 |
| Comparing to | |
| See all releases | |
Code changes from version 2.0 to 2.0.1
- readme.txt +4 -1
- rocket-lazy-load.php +2 -2
readme.txt
CHANGED
|
@@ -4,7 +4,7 @@ Tags: lazyload, lazy load, images, iframes, thumbnail, thumbnails, smiley, smili
|
|
| 4 |
Requires at least: 4.7
|
| 5 |
Tested up to: 5.0.2
|
| 6 |
Requires PHP: 5.4
|
| 7 |
-
Stable tag: 2.0
|
| 8 |
|
| 9 |
Lazy Load your images and iframes, replace Youtube videos by a preview thumbnail.
|
| 10 |
|
|
@@ -78,6 +78,9 @@ The element you want to apply lazyload on must have this specific markup:
|
|
| 78 |
The element must have the class `rocket-lazyload-bg`, and a `data-bg` attribute, which value is the CSS url for the image.
|
| 79 |
|
| 80 |
== Changelog ==
|
|
|
|
|
|
|
|
|
|
| 81 |
= 2.0 =
|
| 82 |
* Enhancement: Lazyload is now applied on the template_redirect hook, which should allow the plugin to apply the optimization on more images and encountering less conflicts at the same time
|
| 83 |
* Enhancement: Specifically target with the lazyload script images/iframes elements with a data-lazy-src attribute
|
| 4 |
Requires at least: 4.7
|
| 5 |
Tested up to: 5.0.2
|
| 6 |
Requires PHP: 5.4
|
| 7 |
+
Stable tag: 2.0.1
|
| 8 |
|
| 9 |
Lazy Load your images and iframes, replace Youtube videos by a preview thumbnail.
|
| 10 |
|
| 78 |
The element must have the class `rocket-lazyload-bg`, and a `data-bg` attribute, which value is the CSS url for the image.
|
| 79 |
|
| 80 |
== Changelog ==
|
| 81 |
+
= 2.0.1 =
|
| 82 |
+
* Bugfix: Prevent a fatal error on case sensitive operating systems
|
| 83 |
+
|
| 84 |
= 2.0 =
|
| 85 |
* Enhancement: Lazyload is now applied on the template_redirect hook, which should allow the plugin to apply the optimization on more images and encountering less conflicts at the same time
|
| 86 |
* Enhancement: Specifically target with the lazyload script images/iframes elements with a data-lazy-src attribute
|
rocket-lazy-load.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
* Plugin Name: Lazy Load by WP Rocket
|
| 4 |
* Plugin URI: http://wordpress.org/plugins/rocket-lazy-load/
|
| 5 |
* Description: The tiny Lazy Load script for WordPress without jQuery or others libraries.
|
| 6 |
-
* Version: 2.0
|
| 7 |
* Author: WP Media
|
| 8 |
* Author URI: https://wp-rocket.me
|
| 9 |
* Text Domain: rocket-lazy-load
|
|
@@ -27,7 +27,7 @@
|
|
| 27 |
|
| 28 |
defined('ABSPATH') || die('Cheatin\' uh?');
|
| 29 |
|
| 30 |
-
define('ROCKET_LL_VERSION', '2.0');
|
| 31 |
define('ROCKET_LL_WP_VERSION', '4.7');
|
| 32 |
define('ROCKET_LL_PHP_VERSION', '5.4');
|
| 33 |
define('ROCKET_LL_BASENAME', plugin_basename(__FILE__));
|
| 3 |
* Plugin Name: Lazy Load by WP Rocket
|
| 4 |
* Plugin URI: http://wordpress.org/plugins/rocket-lazy-load/
|
| 5 |
* Description: The tiny Lazy Load script for WordPress without jQuery or others libraries.
|
| 6 |
+
* Version: 2.0.1
|
| 7 |
* Author: WP Media
|
| 8 |
* Author URI: https://wp-rocket.me
|
| 9 |
* Text Domain: rocket-lazy-load
|
| 27 |
|
| 28 |
defined('ABSPATH') || die('Cheatin\' uh?');
|
| 29 |
|
| 30 |
+
define('ROCKET_LL_VERSION', '2.0.1');
|
| 31 |
define('ROCKET_LL_WP_VERSION', '4.7');
|
| 32 |
define('ROCKET_LL_PHP_VERSION', '5.4');
|
| 33 |
define('ROCKET_LL_BASENAME', plugin_basename(__FILE__));
|
