ShortPixel Image Optimizer - Version 4.1.1

Version Description

  • settings fix
Download this release

Release Info

Developer ShortPixel
Plugin Icon 128x128 ShortPixel Image Optimizer
Version 4.1.1
Comparing to
See all releases

Code changes from version 4.1.0 to 4.1.1

class/view/shortpixel_view.php CHANGED
@@ -542,7 +542,7 @@ class ShortPixelView {
542
  $removeExif = ($settings->keepExif ? '' : 'checked');
543
  $resize = ($this->ctrl->getResizeImages() ? 'checked' : '');
544
  $resizeDisabled = ($this->ctrl->getResizeImages() ? '' : 'disabled');
545
- //$minSizes = $this->ctrl->getMaxIntermediateImageSize();
546
  $thumbnailsToProcess = isset($quotaData['totalFiles']) ? ($quotaData['totalFiles'] - $quotaData['mainFiles']) - ($quotaData['totalProcessedFiles'] - $quotaData['mainProcessedFiles']) : 0;
547
  ?>
548
  <div class="wp-shortpixel-options">
542
  $removeExif = ($settings->keepExif ? '' : 'checked');
543
  $resize = ($this->ctrl->getResizeImages() ? 'checked' : '');
544
  $resizeDisabled = ($this->ctrl->getResizeImages() ? '' : 'disabled');
545
+ $minSizes = $this->ctrl->getMaxIntermediateImageSize();
546
  $thumbnailsToProcess = isset($quotaData['totalFiles']) ? ($quotaData['totalFiles'] - $quotaData['mainFiles']) - ($quotaData['totalProcessedFiles'] - $quotaData['mainProcessedFiles']) : 0;
547
  ?>
548
  <div class="wp-shortpixel-options">
readme.txt CHANGED
@@ -5,7 +5,7 @@ Tags: image optimizer, image optimization, compress pdf, compress jpeg, compress
5
 
6
  Requires at least: 3.2.0
7
  Tested up to: 4.6
8
- Stable tag: 4.1.0
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
@@ -57,11 +57,11 @@ Give it a spin on a <a href="https://addendio.com/try-plugin/?slug=shortpixel-im
57
  ShortPixel comes with 100 free credits/month and additional credits can be bought with as little as $4.99 for 5,000 image credits.
58
  Check out <a rel="friend" href="https://shortpixel.com/pricing" target="_blank">our prices</a>
59
 
60
- > **Testimonials:**
61
- > ★★★★★ **A Super Plugin works very well 62% reduction overall.**
62
- > ★★★★★ **The secret sauce for a WordPress website.**
63
- > ★★★★★ **A must have plugin, great support!**
64
- > ★★★★★ **Excellent Plugin! Even Better Customer Service!**
65
  > ★★★★★ **Great image compression, solid plugin, equally great support.**
66
  > [more testimonials](https://wordpress.org/support/plugin/shortpixel-image-optimiser/reviews/?filter=5)
67
 
@@ -177,10 +177,14 @@ The ShortPixel team is here to help. <a href="https://shortpixel.com/contact">Co
177
 
178
  == Changelog ==
179
 
 
 
 
 
180
  = 4.1.0 =
181
 
182
  * retina images support - optimize also retina images
183
- * WebP support - generate also WebP images option
184
  * optimize other media folders also from the root of the site, not only in wp-content
185
  * restore and re-optimize other media images
186
  * resize options - defined rectangle to be contained in the resized image or the resized image to contain the defined rectangle
5
 
6
  Requires at least: 3.2.0
7
  Tested up to: 4.6
8
+ Stable tag: 4.1.1
9
  License: GPLv2 or later
10
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
11
 
57
  ShortPixel comes with 100 free credits/month and additional credits can be bought with as little as $4.99 for 5,000 image credits.
58
  Check out <a rel="friend" href="https://shortpixel.com/pricing" target="_blank">our prices</a>
59
 
60
+ > **Testimonials:**
61
+ > ★★★★★ **A Super Plugin works very well 62% reduction overall.**
62
+ > ★★★★★ **The secret sauce for a WordPress website.**
63
+ > ★★★★★ **A must have plugin, great support!**
64
+ > ★★★★★ **Excellent Plugin! Even Better Customer Service!**
65
  > ★★★★★ **Great image compression, solid plugin, equally great support.**
66
  > [more testimonials](https://wordpress.org/support/plugin/shortpixel-image-optimiser/reviews/?filter=5)
67
 
177
 
178
  == Changelog ==
179
 
180
+ = 4.1.1 =
181
+
182
+ * settings fix
183
+
184
  = 4.1.0 =
185
 
186
  * retina images support - optimize also retina images
187
+ * WebP support - option to generate also WebP images
188
  * optimize other media folders also from the root of the site, not only in wp-content
189
  * restore and re-optimize other media images
190
  * resize options - defined rectangle to be contained in the resized image or the resized image to contain the defined rectangle
wp-shortpixel.php CHANGED
@@ -3,7 +3,7 @@
3
  * Plugin Name: ShortPixel Image Optimizer
4
  * Plugin URI: https://shortpixel.com/
5
  * Description: ShortPixel optimizes images automatically, while guarding the quality of your images. Check your <a href="options-general.php?page=wp-shortpixel" target="_blank">Settings &gt; ShortPixel</a> page on how to start optimizing your image library and make your website load faster.
6
- * Version: 4.1.0
7
  * Author: ShortPixel
8
  * Author URI: https://shortpixel.com
9
  */
@@ -12,7 +12,7 @@ define('SP_RESET_ON_ACTIVATE', false); //if true TODO set false
12
 
13
  define('SP_AFFILIATE_CODE', '');
14
 
15
- define('PLUGIN_VERSION', "4.1.0");
16
  define('SP_MAX_TIMEOUT', 10);
17
  define('SP_VALIDATE_MAX_TIMEOUT', 15);
18
  define('SP_BACKUP', 'ShortpixelBackups');
3
  * Plugin Name: ShortPixel Image Optimizer
4
  * Plugin URI: https://shortpixel.com/
5
  * Description: ShortPixel optimizes images automatically, while guarding the quality of your images. Check your <a href="options-general.php?page=wp-shortpixel" target="_blank">Settings &gt; ShortPixel</a> page on how to start optimizing your image library and make your website load faster.
6
+ * Version: 4.1.1
7
  * Author: ShortPixel
8
  * Author URI: https://shortpixel.com
9
  */
12
 
13
  define('SP_AFFILIATE_CODE', '');
14
 
15
+ define('PLUGIN_VERSION', "4.1.1");
16
  define('SP_MAX_TIMEOUT', 10);
17
  define('SP_VALIDATE_MAX_TIMEOUT', 15);
18
  define('SP_BACKUP', 'ShortpixelBackups');