EWWW Image Optimizer - Version 5.8.1

Version Description

  • fixed: Easy IO parser has typo in $webp_quality variable
Download this release

Release Info

Developer nosilver4u
Plugin Icon 128x128 EWWW Image Optimizer
Version 5.8.1
Comparing to
See all releases

Code changes from version 5.8.0 to 5.8.1

.travis.yml CHANGED
@@ -22,12 +22,14 @@ services:
22
 
23
  env:
24
  - WP_VERSION=latest WP_MULTISITE=0
25
- - WP_VERSION=5.2 WP_MULTISITE=0
26
 
27
  jobs:
28
  include:
29
  - php: 5.6
30
  env: WP_VERSION=latest WP_MULTISITE=1 WPSNIFF=1
 
 
31
  - php: 7.4
32
  env: WP_VERSION=latest WP_MULTISITE=1 WPSNIFF=1
33
 
22
 
23
  env:
24
  - WP_VERSION=latest WP_MULTISITE=0
25
+ - WP_VERSION=5.3 WP_MULTISITE=0
26
 
27
  jobs:
28
  include:
29
  - php: 5.6
30
  env: WP_VERSION=latest WP_MULTISITE=1 WPSNIFF=1
31
+ - php: 7.3
32
+ env: WP_VERSION=5.2
33
  - php: 7.4
34
  env: WP_VERSION=latest WP_MULTISITE=1 WPSNIFF=1
35
 
changelog.txt CHANGED
@@ -1,3 +1,6 @@
 
 
 
1
  = 5.8.0 =
2
  * added: SVG optimization, huge thanks to @samsk for making this happen!
3
  * added: WebP quality setting, changed default to 75
1
+ = 5.8.1 =
2
+ * fixed: Easy IO parser has typo in $webp_quality variable
3
+
4
  = 5.8.0 =
5
  * added: SVG optimization, huge thanks to @samsk for making this happen!
6
  * added: WebP quality setting, changed default to 75
classes/class-exactdn.php CHANGED
@@ -2796,7 +2796,7 @@ if ( ! class_exists( 'ExactDN' ) ) {
2796
  if ( $this->plan_id > 1 && false === strpos( $image_url, 'quality=' ) && ! is_null( $jpg_quality ) && 82 !== (int) $jpg_quality ) {
2797
  $more_args['quality'] = $jpg_quality;
2798
  }
2799
- if ( $this->plan_id > 1 && false === strpos( $image_url, 'quality=' ) && 75 !== (int) $web_quality && $webp_quality < $jpg_quality ) {
2800
  $more_args['quality'] = $webp_quality;
2801
  }
2802
  // Merge given args with the automatic (option-based) args, and also makes sure args is an array if it was previously a string.
2796
  if ( $this->plan_id > 1 && false === strpos( $image_url, 'quality=' ) && ! is_null( $jpg_quality ) && 82 !== (int) $jpg_quality ) {
2797
  $more_args['quality'] = $jpg_quality;
2798
  }
2799
+ if ( $this->plan_id > 1 && false === strpos( $image_url, 'quality=' ) && 75 !== (int) $webp_quality && $webp_quality < $jpg_quality ) {
2800
  $more_args['quality'] = $webp_quality;
2801
  }
2802
  // Merge given args with the automatic (option-based) args, and also makes sure args is an array if it was previously a string.
common.php CHANGED
@@ -14,7 +14,7 @@ if ( ! defined( 'ABSPATH' ) ) {
14
  exit;
15
  }
16
 
17
- define( 'EWWW_IMAGE_OPTIMIZER_VERSION', '580.0' );
18
 
19
  // Initialize a couple globals.
20
  $eio_debug = '';
14
  exit;
15
  }
16
 
17
+ define( 'EWWW_IMAGE_OPTIMIZER_VERSION', '581.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: 5.8.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: 5.8.1
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.2
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
- Stable tag: 5.8.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
  = 5.8.0 =
136
  * added: SVG optimization, huge thanks to @samsk for making this happen!
137
  * added: WebP quality setting, changed default to 75
5
  Requires at least: 5.2
6
  Tested up to: 5.5
7
  Requires PHP: 5.6
8
+ Stable tag: 5.8.1
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
+ = 5.8.1 =
136
+ * fixed: Easy IO parser has typo in $webp_quality variable
137
+
138
  = 5.8.0 =
139
  * added: SVG optimization, huge thanks to @samsk for making this happen!
140
  * added: WebP quality setting, changed default to 75