Smush Image Compression and Optimization - Version 1.6.4

Version Description

  • Fix debug code left in 1.6.3
Download this release

Release Info

Developer WPMUDEV
Plugin Icon 128x128 Smush Image Compression and Optimization
Version 1.6.4
Comparing to
See all releases

Code changes from version 1.6.3 to 1.6.4

Files changed (2) hide show
  1. readme.txt +5 -2
  2. wp-smushit.php +2 -2
readme.txt CHANGED
@@ -1,13 +1,13 @@
1
  === WP Smush.it ===
2
  Plugin Name: WP Smush.it
3
- Version: 1.6.3
4
  Author: Dialect
5
  Author URI: http://dialect.ca/?wp_smush_it
6
  Contributors: alexdunae, WPMUDEV
7
  Tags: images, image, attachments, attachment
8
  Requires at least: 2.9
9
  Tested up to: 3.5.1
10
- Stable tag: 1.6.3
11
 
12
  Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
13
 
@@ -71,6 +71,9 @@ Cheers from Vancouver Island, and thanks for all the smushing.
71
 
72
  == Changelog ==
73
 
 
 
 
74
  = 1.6.3 =
75
  * check image size before uploading (1 MB limit)
76
  * attempt to smush more than one image before bailing (kind thanks to <a href="http://wordpress.org/support/profile/xrampage16">xrampage16</a>)
1
  === WP Smush.it ===
2
  Plugin Name: WP Smush.it
3
+ Version: 1.6.4
4
  Author: Dialect
5
  Author URI: http://dialect.ca/?wp_smush_it
6
  Contributors: alexdunae, WPMUDEV
7
  Tags: images, image, attachments, attachment
8
  Requires at least: 2.9
9
  Tested up to: 3.5.1
10
+ Stable tag: 1.6.4
11
 
12
  Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
13
 
71
 
72
  == Changelog ==
73
 
74
+ = 1.6.4 =
75
+ * Fix debug code left in 1.6.3
76
+
77
  = 1.6.3 =
78
  * check image size before uploading (1 MB limit)
79
  * attempt to smush more than one image before bailing (kind thanks to <a href="http://wordpress.org/support/profile/xrampage16">xrampage16</a>)
wp-smushit.php CHANGED
@@ -4,7 +4,7 @@ Plugin Name: WP Smush.it
4
  Plugin URI: http://dialect.ca/code/wp-smushit/
5
  Description: Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
6
  Author: Dialect
7
- Version: 1.6.3
8
  Author URI: http://dialect.ca/
9
  */
10
 
@@ -327,7 +327,7 @@ function wp_smushit_post($file_url) {
327
  wp_die( __('WP Smush.it requires WordPress 2.8 or greater', WP_SMUSHIT_DOMAIN) );
328
  }
329
 
330
- $data = FALSE;
331
 
332
  return $data;
333
  }
4
  Plugin URI: http://dialect.ca/code/wp-smushit/
5
  Description: Reduce image file sizes and improve performance using the <a href="http://smush.it/">Smush.it</a> API within WordPress.
6
  Author: Dialect
7
+ Version: 1.6.4
8
  Author URI: http://dialect.ca/
9
  */
10
 
327
  wp_die( __('WP Smush.it requires WordPress 2.8 or greater', WP_SMUSHIT_DOMAIN) );
328
  }
329
 
330
+ //$data = FALSE;
331
 
332
  return $data;
333
  }