Skip to content

Commit 3049019

Browse files
committed
Release new version 1.8.8
* This maintenance update is for compatibility with WordPress 4.9.6 and the new GDPR compliance requirements for users in the EU * Tweak - Test for compatibility with WordPress 4.9.6 * Tweak - Check for any issues with GDPR compliance. None Found
1 parent 7a64031 commit 3049019

File tree

3 files changed

+17
-7
lines changed

3 files changed

+17
-7
lines changed

a3-lazy-load.php

Lines changed: 3 additions & 3 deletions
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.7
5+
Version: 1.8.8
66
Author: a3rev Software
77
Author URI: https://a3rev.com/
88
Requires at least: 4.0
9-
Tested up to: 4.9.4
9+
Tested up to: 4.9.6
1010
Text Domain: a3-lazy-load
1111
Domain Path: /languages
1212
License: GPLv2 or later
@@ -30,7 +30,7 @@
3030
define('A3_LAZY_LOAD_IMAGES_URL', A3_LAZY_LOAD_URL . '/assets/images');
3131

3232
define( 'A3_LAZY_LOAD_KEY', 'a3_lazy_load' );
33-
define( 'A3_LAZY_VERSION', '1.8.7' );
33+
define( 'A3_LAZY_VERSION', '1.8.8' );
3434

3535
/**
3636
* Load Localisation files.

admin/admin-interface.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1846,6 +1846,7 @@ class="a3rev-ui-text a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?> <?p
18461846
$progressing_text = $value['progressing_text'];
18471847
$completed_text = $value['completed_text'];
18481848
$successed_text = $value['successed_text'];
1849+
$errors_text = $value['errors_text'];
18491850
$submit_data = json_encode( $value['submit_data'] );
18501851

18511852
?><tr valign="top">
@@ -1864,7 +1865,7 @@ class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-button <?php echo
18641865
<?php echo implode( ' ', $custom_attributes ); ?>
18651866
><?php echo $button_name; ?></button>
18661867
<span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-successed"><?php echo $successed_text; ?></span>
1867-
<span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-errors"></span>
1868+
<span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-errors"><?php echo $errors_text; ?></span>
18681869

18691870
<!-- Progress Bar -->
18701871
<div class="a3rev-ui-progress-bar-wrap">
@@ -1887,6 +1888,7 @@ class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-button <?php echo
18871888
$progressing_text = $value['progressing_text'];
18881889
$completed_text = $value['completed_text'];
18891890
$successed_text = $value['successed_text'];
1891+
$errors_text = $value['errors_text'];
18901892
$statistic_column = isset( $value['statistic_column'] ) ? $value['statistic_column'] : 1;
18911893

18921894
$multi_current_items = 0;
@@ -1931,7 +1933,7 @@ class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-button <?php echo
19311933
<?php echo implode( ' ', $custom_attributes ); ?>
19321934
><?php echo $button_name; ?></button>
19331935
<span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-successed"><?php echo $successed_text; ?></span>
1934-
<span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-errors"></span>
1936+
<span class="a3rev-ui-<?php echo sanitize_title( $value['type'] ) ?>-errors"><?php echo $errors_text; ?></span>
19351937

19361938
<!-- Progress Bar -->
19371939
<div class="a3rev-ui-progress-bar-wrap">

readme.txt

Lines changed: 10 additions & 2 deletions
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.9.4
6-
Stable tag: 1.8.7
5+
Tested up to: 4.9.6
6+
Stable tag: 1.8.8
77
License: GPLv3
88
License URI: http://www.gnu.org/licenses/gpl-3.0.html
99

@@ -194,6 +194,11 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
194194

195195
== Changelog ==
196196

197+
= 1.8.8 - 2018/05/26 =
198+
* This maintenance update is for compatibility with WordPress 4.9.6 and the new GDPR compliance requirements for users in the EU
199+
* Tweak - Test for compatibility with WordPress 4.9.6
200+
* Tweak - Check for any issues with GDPR compliance. None Found
201+
197202
= 1.8.7 - 2018/03/24 =
198203
* Maintenance Update. 2 code tweaks to enhance the lazy loading of images, video and iframe added by third party shortcodes in the content
199204
* Tweak - Increase lazy load filter priority value so that lazy load is applied to images loaded by the shortcode function do_shortcode
@@ -376,6 +381,9 @@ Filter tags to add to class name of theme to exclude lazy load on images or vide
376381

377382
== Upgrade Notice ==
378383

384+
= 1.8.8 =
385+
Maintenance Update. Compatibility WordPress 4.9.6 and the new GDPR compliance requirements for users in the EU
386+
379387
= 1.8.7 =
380388
Maintenance Update. 2 code tweaks to enhance the lazy loading of images, video and iframe added by third party shortcodes in the content
381389

0 commit comments

Comments
 (0)