Skip to content

Commit 331f126

Browse files
committed
Send out version 1.8.2
* Tweak - Tested for compatibility with WordPress major version 4.8.0 * Tweak - Add Lazy Load support for new WordPress 4.8.0 Image, Video and Media widgets * Tweak - Updated Skip Image Classes and Skip Video Classes help text for better clarity * Fix - WordPress Admin Tool Bar User Avatar conflict Issue #2
1 parent bdd9424 commit 331f126

File tree

4 files changed

+18
-9
lines changed

4 files changed

+18
-9
lines changed

a3-lazy-load.php

+3-3
Original file line numberDiff line numberDiff line change
@@ -2,11 +2,11 @@
22
/*
33
Plugin Name: a3 Lazy Load
44
Description: Speed up your site and enhance frontend user's visual experience in PC's, Tablets and mobile with a3 Lazy Load.
5-
Version: 1.8.1
5+
Version: 1.8.2
66
Author: a3rev Software
77
Author URI: https://a3rev.com/
88
Requires at least: 4.0
9-
Tested up to: 4.7.5
9+
Tested up to: 4.8.0
1010
Text Domain: a3-lazy-load
1111
Domain Path: /languages
1212
License: GPLv2 or later
@@ -19,7 +19,7 @@
1919
*/
2020
?>
2121
<?php
22-
define('A3_LAZY_VERSION', '1.8.1');
22+
define('A3_LAZY_VERSION', '1.8.2');
2323
define('A3_LAZY_LOAD_FILE_PATH', dirname(__FILE__));
2424
define('A3_LAZY_LOAD_DIR_NAME', basename(A3_LAZY_LOAD_FILE_PATH));
2525
define('A3_LAZY_LOAD_FOLDER', dirname(plugin_basename(__FILE__)));

admin/a3-lazy-load-admin.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
update_option('a3rev_lazy_load_plugin', 'a3_lazy_load' );
33

44
function a3_lazy_load_activated(){
5-
update_option('a3_lazy_load_version', '1.8.1');
5+
update_option('a3_lazy_load_version', '1.8.2');
66

77
// Set Settings Default from Admin Init
88
global $a3_lazy_load_admin_init;
@@ -65,6 +65,6 @@ function a3_lazy_load_upgrade_plugin() {
6565
update_option('a3_lazy_load_style_version', time() );
6666
}
6767

68-
update_option('a3_lazy_load_version', '1.8.1');
68+
update_option('a3_lazy_load_version', '1.8.2');
6969
}
7070
?>

admin/settings/template-settings/global-settings.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -309,7 +309,7 @@ public function init_form_fields() {
309309
array(
310310
'name' => __( 'Skip Images Classes', 'a3-lazy-load' ),
311311
'id' => 'a3l_skip_image_with_class',
312-
'desc' => __('Comma separated. Example: "no-lazy, lazy-ignore, image-235"', 'a3-lazy-load' ),
312+
'desc' => __('Find and enter image class name. If more than 1 then comma seperate.<br>Example: image-class1, image-class2', 'a3-lazy-load' ),
313313
'type' => 'text',
314314
'default' => ""
315315
),
@@ -373,7 +373,7 @@ public function init_form_fields() {
373373
array(
374374
'name' => __( 'Skip Videos Classes', 'a3-lazy-load' ),
375375
'id' => 'a3l_skip_video_with_class',
376-
'desc' => __('Comma separated. Example: "no-lazy, lazy-ignore, video-235"', 'a3-lazy-load' ),
376+
'desc' => __('Find and enter video class name. If more than 1 then comma seperate.<br>Example: video-class1, video-class2', 'a3-lazy-load' ),
377377
'type' => 'text',
378378
'default' => ""
379379
),

readme.txt

+11-2
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@
22
Contributors: a3rev, a3rev Software, nguyencongtuan
33
Tags: a3 lazy load, Lazy Loading , image lazy load, lazyload
44
Requires at least: 4.5
5-
Tested up to: 4.7.5
6-
Stable tag: 1.8.1
5+
Tested up to: 4.8.0
6+
Stable tag: 1.8.2
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -136,6 +136,12 @@ Want to add a new language to a3 Lazy Load? Great! You can contribute via [trans
136136

137137
== Changelog ==
138138

139+
= 1.8.2 - 2017/06/02 =
140+
* Tweak - Tested for compatibility with WordPress major version 4.8.0
141+
* Tweak - Add Lazy Load support for new WordPress 4.8.0 Image, Video and Media widgets
142+
* Tweak - Updated Skip Image Classes and Skip Video Classes help text for better clarity
143+
* Fix - WordPress Admin Tool Bar User Avatar conflict Issue #2
144+
139145
= 1.8.1 - 2017/05/31 =
140146
* Fix - Use correct object A3_Lazy_Load instead of ‘this’ as it was causing a fatal error
141147

@@ -276,6 +282,9 @@ Want to add a new language to a3 Lazy Load? Great! You can contribute via [trans
276282

277283
== Upgrade Notice ==
278284

285+
= 1.8.2 =
286+
Maintenance Update. 1 bug fix and 1 code tweak for compatibility with upcoming Major WordPress version 4.8.0
287+
279288
= 1.8.1 =
280289
Maintenance Update. 1 bug fix causing afatal error from version 1.8.0 release yesterday
281290

0 commit comments

Comments
 (0)