Version Description
- fixed: syntax error on PHP 7.2 or less
Download this release
Release Info
Developer | nosilver4u |
Plugin | EWWW Image Optimizer |
Version | 6.0.3 |
Comparing to | |
See all releases |
Code changes from version 6.0.2 to 6.0.3
- changelog.txt +3 -0
- classes/class-exactdn.php +1 -1
- common.php +1 -1
- ewww-image-optimizer.php +1 -1
- readme.txt +4 -1
changelog.txt
CHANGED
@@ -1,3 +1,6 @@
|
|
|
|
|
|
|
|
1 |
= 6.0.2 =
|
2 |
* security: new version of PNGOUT available on settings page (if enabled)
|
3 |
* added: compatibility with Phoenix Media Rename plugin
|
1 |
+
= 6.0.3 =
|
2 |
+
* fixed: syntax error on PHP 7.2 or less
|
3 |
+
|
4 |
= 6.0.2 =
|
5 |
* security: new version of PNGOUT available on settings page (if enabled)
|
6 |
* added: compatibility with Phoenix Media Rename plugin
|
classes/class-exactdn.php
CHANGED
@@ -2633,7 +2633,7 @@ if ( ! class_exists( 'ExactDN' ) ) {
|
|
2633 |
if ( strpos( $image_url, 'public/images/spacer.' ) ) {
|
2634 |
return array();
|
2635 |
}
|
2636 |
-
if ( '.svg' === substr( $image_url, -4
|
2637 |
return array();
|
2638 |
}
|
2639 |
return $args;
|
2633 |
if ( strpos( $image_url, 'public/images/spacer.' ) ) {
|
2634 |
return array();
|
2635 |
}
|
2636 |
+
if ( '.svg' === substr( $image_url, -4 ) ) {
|
2637 |
return array();
|
2638 |
}
|
2639 |
return $args;
|
common.php
CHANGED
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) {
|
|
14 |
exit;
|
15 |
}
|
16 |
|
17 |
-
define( 'EWWW_IMAGE_OPTIMIZER_VERSION', '
|
18 |
|
19 |
// Initialize a couple globals.
|
20 |
$eio_debug = '';
|
14 |
exit;
|
15 |
}
|
16 |
|
17 |
+
define( 'EWWW_IMAGE_OPTIMIZER_VERSION', '603.0' );
|
18 |
|
19 |
// Initialize a couple globals.
|
20 |
$eio_debug = '';
|
ewww-image-optimizer.php
CHANGED
@@ -13,7 +13,7 @@ Plugin Name: EWWW Image Optimizer
|
|
13 |
Plugin URI: https://wordpress.org/plugins/ewww-image-optimizer/
|
14 |
Description: Reduce file sizes for images within WordPress including NextGEN Gallery and GRAND FlAGallery. Uses jpegtran, optipng/pngout, and gifsicle.
|
15 |
Author: Exactly WWW
|
16 |
-
Version: 6.0.
|
17 |
Author URI: https://ewww.io/
|
18 |
License: GPLv3
|
19 |
*/
|
13 |
Plugin URI: https://wordpress.org/plugins/ewww-image-optimizer/
|
14 |
Description: Reduce file sizes for images within WordPress including NextGEN Gallery and GRAND FlAGallery. Uses jpegtran, optipng/pngout, and gifsicle.
|
15 |
Author: Exactly WWW
|
16 |
+
Version: 6.0.3
|
17 |
Author URI: https://ewww.io/
|
18 |
License: GPLv3
|
19 |
*/
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Tags: optimize, image, convert, webp, resize, compress, lazy load, optimization,
|
|
5 |
Requires at least: 5.3
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 6.0.
|
9 |
License: GPLv3
|
10 |
|
11 |
Smaller Images, Faster Sites, Happier Visitors. Comprehensive image optimization that doesn't require a degree in rocket science.
|
@@ -132,6 +132,9 @@ That's not a question, but since I made it up, I'll answer it. See this resource
|
|
132 |
* Feature requests can be viewed and submitted on our [feedback portal](https://feedback.ewww.io)
|
133 |
* If you would like to help translate this plugin in your language, [join the team](https://translate.wordpress.org/projects/wp-plugins/ewww-image-optimizer/)
|
134 |
|
|
|
|
|
|
|
135 |
= 6.0.2 =
|
136 |
* security: new version of PNGOUT available on settings page (if enabled)
|
137 |
* added: compatibility with Phoenix Media Rename plugin
|
5 |
Requires at least: 5.3
|
6 |
Tested up to: 5.6
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 6.0.3
|
9 |
License: GPLv3
|
10 |
|
11 |
Smaller Images, Faster Sites, Happier Visitors. Comprehensive image optimization that doesn't require a degree in rocket science.
|
132 |
* Feature requests can be viewed and submitted on our [feedback portal](https://feedback.ewww.io)
|
133 |
* If you would like to help translate this plugin in your language, [join the team](https://translate.wordpress.org/projects/wp-plugins/ewww-image-optimizer/)
|
134 |
|
135 |
+
= 6.0.3 =
|
136 |
+
* fixed: syntax error on PHP 7.2 or less
|
137 |
+
|
138 |
= 6.0.2 =
|
139 |
* security: new version of PNGOUT available on settings page (if enabled)
|
140 |
* added: compatibility with Phoenix Media Rename plugin
|