diff --git a/composer.json b/composer.json index 7ce08a4..d287d58 100644 --- a/composer.json +++ b/composer.json @@ -1,7 +1,7 @@ { "name": "google/native-lazyload", "description": "Lazy-loads media using the native browser feature.", - "version": "1.0.1", + "version": "1.0.2", "license": "Apache-2.0", "type": "wordpress-plugin", "keywords": [ diff --git a/native-lazyload.php b/native-lazyload.php index aa165fd..19aa3b7 100644 --- a/native-lazyload.php +++ b/native-lazyload.php @@ -11,7 +11,7 @@ * Plugin Name: Native Lazyload * Plugin URI: https://wordpress.org/plugins/native-lazyload/ * Description: Lazy-loads media using the native browser feature. - * Version: 1.0.1 + * Version: 1.0.2 * Author: Google * Author URI: https://opensource.google.com * License: Apache License 2.0 diff --git a/package.json b/package.json index f60df0b..8a0638d 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "native-lazyload", - "version": "1.0.1", + "version": "1.0.2", "description": "Lazy-loads media using the native browser feature.", "author": "Google", "license": "Apache-2.0", @@ -31,4 +31,4 @@ "build": "webpack -p --mode=production --config='./webpack.config.js' && copyfiles -f ./assets/images/src/* ./assets/images", "lint": "eslint ." } -} +} \ No newline at end of file diff --git a/readme.txt b/readme.txt index 2d79296..95c1b3f 100644 --- a/readme.txt +++ b/readme.txt @@ -2,9 +2,9 @@ Contributors: google, flixos90 Requires at least: 4.7 -Tested up to: 5.2 +Tested up to: 5.3 Requires PHP: 7.0 -Stable tag: 1.0.1 +Stable tag: 1.0.2 License: Apache License 2.0 License URI: https://www.apache.org/licenses/LICENSE-2.0 Tags: lazyload, lazy, load, native, loading, images, iframes @@ -64,6 +64,12 @@ You can also contribute to the plugin by translating it. Simply visit [translate == Changelog == += 1.0.2 = + +* Fix broken images which are using data URI scheme (e.g. base64-encoded images). Props [ieim](https://github.com/ieim). +* Fix images in IE 11 not being loaded until the user starts scrolling. Props [Soean](https://github.com/Soean). +* Fix image loading script not working in IE10 and other browsers that do not support `dataset`. + = 1.0.1 = * Improve compatibility with other plugins by using more specific class and only adding it for JS fallback.