Skip to content

Commit bb167f6

Browse files
committed
Release new version 2.2.2
= 2.2.2 - 2020/01/18 = * This maintenance release is to update incorrect help text regarding usage of the new class and attribute exclusion strings * Tweak - Update incorrect FQA help text on plugins description * Tweak - Update admin panel option box image and video exclusion class and attribute help text.
1 parent 0778829 commit bb167f6

File tree

3 files changed

+13
-11
lines changed

3 files changed

+13
-11
lines changed

a3-lazy-load.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
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: 2.2.1
5+
Version: 2.2.2
66
Author: a3rev Software
77
Author URI: https://a3rev.com/
88
Requires at least: 4.9
@@ -33,7 +33,7 @@
3333

3434
define( 'A3_LAZY_LOAD_KEY', 'a3_lazy_load' );
3535
define( 'A3_LAZY_LOAD_PREFIX', 'a3_lazy_load_' );
36-
define( 'A3_LAZY_VERSION', '2.2.1' );
36+
define( 'A3_LAZY_VERSION', '2.2.2' );
3737
define( 'A3_LAZY_LOAD_G_FONTS', false );
3838

3939
use \A3Rev\LazyLoad\FrameWork;

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

+2-2
Original file line numberDiff line numberDiff line change
@@ -329,7 +329,7 @@ public function init_form_fields() {
329329
'name' => __( 'Exclude Images', 'a3-lazy-load' ),
330330
'type' => 'heading',
331331
'class' => 'a3l_apply_to_load_images_container',
332-
'desc' => __( 'Images can be excluded from Lazy Load either by entering existing image classnames below or if the image has no classname by adding the <code>skip-lazy</code> class to the image, example <code>&#x3C;img class="skip-lazy"&#x3E;</code>', 'a3-lazy-load' )
332+
'desc' => __( 'Images can be excluded from Lazy Load by entering existing image classnames below or if the image has no classname by adding the exclusion <code>skip-lazy</code> classname or <code>data-skip-lazy</code> attribute to the image. Examples, by class <code>&#x3C;img class="skip-lazy"&#x3E;</code> , by attribute <code>&#x3C;img data-skip-lazy&#x3E;</code>', 'a3-lazy-load' )
333333
),
334334
array(
335335
'name' => __( 'Skip Images Classes', 'a3-lazy-load' ),
@@ -399,7 +399,7 @@ public function init_form_fields() {
399399
'name' => __( 'Exclude Videos / iframes', 'a3-lazy-load' ),
400400
'type' => 'heading',
401401
'class' => 'a3l_apply_to_load_videos_container',
402-
'desc' => __( 'Videos and iFrames can be excluded from Lazy Load either by entering the existing classnames below or if if it has has no classname by adding the <code>skip-lazy</code> class to the video / iframe, example <code>&#x3C;video class="skip-lazy"&#x3E;</code>', 'a3-lazy-load' )
402+
'desc' => __( 'Videos and iFrames can be excluded from Lazy Load either by entering existing classnames below or if it has has no classname by adding the exclusion <code>skip-lazy</code> classname or <code>data-skip-lazy</code> attribute to the video / iframe. Examples, by class <code>&#x3C;video class="skip-lazy"&#x3E;</code>, by attribute <code>&#x3C;video data-skip-lazy&#x3E;</code>', 'a3-lazy-load' )
403403
),
404404
array(
405405
'name' => __( 'Skip Videos Classes', 'a3-lazy-load' ),

readme.txt

+9-7
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ Contributors: a3rev, a3rev Software, nguyencongtuan
33
Tags: a3 lazy load, Lazy Loading , image lazy load, lazyload
44
Requires at least: 4.9
55
Tested up to: 5.3.2
6-
Stable tag: 2.2.1
6+
Stable tag: 2.2.2
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -155,12 +155,6 @@ Images, Videos / iframes can be excluded from Lazy Load by existing classnames o
155155
Exclude by classname <code>&#x3C;img class="skip-lazy"&#x3E; , &#x3C;video class="skip-lazy"&#x3E;</code>
156156
Exclude by attribute <code>&#x3C;img data-skip-lazy&#x3E; , &#x3C;video data-skip-lazy&#x3E;</code>
157157

158-
<strong>the text changes for the Images option box</strong>
159-
Images can be excluded from Lazy Load by entering existing image classnames below or if the image has no classname by adding the exclusion <code>skip-lazy</code> classname or <code>data-skip-lazy</code> attribute to the image. Examples, by class <code>&#x3C;img class="skip-lazy"&#x3E;</code> , by attribute <code>&#x3C;img data-skip-lazy&#x3E;</code>
160-
161-
<strong>the Videos</strong>
162-
Videos and iFrames can be excluded from Lazy Load either by entering existing classnames below or if it has has no classname by adding the exclusion <code>skip-lazy</code> classname or <code>data-skip-lazy</code> attribute to the video / iframe. Examples, by class <code>&#x3C;video class="skip-lazy"&#x3E;</code>, by attribute <code>&#x3C;video data-skip-lazy&#x3E;</code>
163-
164158
= Why are some images, videos, objects not Lazy Loaded? =
165159

166160
a3 Lazy Load can only be applied to objects that are added using core WordPress functions. If your theme or a plugin developer adds objects such as images or videos via a custom written function, a3 lazy Load cannot know what that custom function is and hence cannot Lazy Load the object.
@@ -212,6 +206,11 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
212206

213207
== Changelog ==
214208

209+
= 2.2.2 - 2020/01/18 =
210+
* This maintenance release is to update incorrect help text regarding usage of the new class and attribute exclusion strings
211+
* Tweak - Update incorrect FQA help text on plugins description
212+
* Tweak - Update admin panel option box image and video exclusion class and attribute help text.
213+
215214
= 2.2.1 - 2020/01/16 =
216215
* This maintenance release adds support for the Lazy Load exclusion attribute 'data-skip-lazy'
217216
* Tweak - Add support for lazy load exclusion by attribute 'data-skip-lazy'
@@ -476,6 +475,9 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
476475

477476
== Upgrade Notice ==
478477

478+
= 2.2.2 =
479+
This maintenance release is to update incorrect help text regarding usage of the new class and attribute exclusion strings
480+
479481
= 2.2.1 =
480482
This maintenance release adds support for the Lazy Load exclusion attribute 'data-skip-lazy'
481483

0 commit comments

Comments
 (0)