Version Description
Download this release
Release Info
Developer | Rahe |
Plugin | Simple Image Sizes |
Version | 3.0.2 |
Comparing to | |
See all releases |
Code changes from version 3.0.1 to 3.0.2
- README +2 -0
- classes/admin/main.php +1 -1
- readme.txt +2 -0
- simple_image_sizes.php +2 -2
README
CHANGED
@@ -64,6 +64,8 @@ And then you can choose if the image is displayed on the media insertion or not
|
|
64 |
](http://s.wordpress.org/extend/plugins/simple-image-sizes/screenshot-3.png)
|
65 |
|
66 |
## Changelog ##
|
|
|
|
|
67 |
* 3.0.1
|
68 |
* Change the template render method for non apache webservers : https://wordpress.org/support/topic/fatal-error-1190?replies=6
|
69 |
* Remove ambigious ids for the css bugging WooCommerce : https://wordpress.org/support/topic/bad-css-style-administration and
|
64 |
](http://s.wordpress.org/extend/plugins/simple-image-sizes/screenshot-3.png)
|
65 |
|
66 |
## Changelog ##
|
67 |
+
* 3.0.2
|
68 |
+
* Fix version check for the image crop positions
|
69 |
* 3.0.1
|
70 |
* Change the template render method for non apache webservers : https://wordpress.org/support/topic/fatal-error-1190?replies=6
|
71 |
* Remove ambigious ids for the css bugging WooCommerce : https://wordpress.org/support/topic/bad-css-style-administration and
|
classes/admin/main.php
CHANGED
@@ -150,7 +150,7 @@ Class SIS_Admin_Main {
|
|
150 |
global $wp_version;
|
151 |
|
152 |
// Return the only possible
|
153 |
-
if( version_compare( '3.9',
|
154 |
return array( );
|
155 |
}
|
156 |
|
150 |
global $wp_version;
|
151 |
|
152 |
// Return the only possible
|
153 |
+
if( version_compare( $wp_version, '3.9', '<' ) ) {
|
154 |
return array( );
|
155 |
}
|
156 |
|
readme.txt
CHANGED
@@ -48,6 +48,8 @@ And then you can choose if the image is displayed on the media insertion or not
|
|
48 |
3. Choose the sizes to regenerate and regenerate them
|
49 |
|
50 |
== Changelog ==
|
|
|
|
|
51 |
* 3.0.1
|
52 |
* Change the template render method for non apache webservers : https://wordpress.org/support/topic/fatal-error-1190?replies=6
|
53 |
* Remove ambigious ids for the css bugging WooCommerce : https://wordpress.org/support/topic/bad-css-style-administration and
|
48 |
3. Choose the sizes to regenerate and regenerate them
|
49 |
|
50 |
== Changelog ==
|
51 |
+
* 3.0.2
|
52 |
+
* Fix version check for the image crop positions
|
53 |
* 3.0.1
|
54 |
* Change the template render method for non apache webservers : https://wordpress.org/support/topic/fatal-error-1190?replies=6
|
55 |
* Remove ambigious ids for the css bugging WooCommerce : https://wordpress.org/support/topic/bad-css-style-administration and
|
simple_image_sizes.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Simple Image Sizes
|
4 |
Plugin URI: https://github.com/Rahe/'simple-image-sizes'
|
5 |
Description: Add options in media setting page for images sizes
|
6 |
-
Version: 3.0.
|
7 |
Author: Rahe
|
8 |
Author URI: http://nicolas-juen.fr
|
9 |
Text Domain: 'simple-image-sizes'
|
@@ -30,7 +30,7 @@ Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
|
30 |
|
31 |
define( 'SIS_URL', plugin_dir_url ( __FILE__ ) );
|
32 |
define( 'SIS_DIR', plugin_dir_path( __FILE__ ) );
|
33 |
-
define( 'SIS_VERSION', '3.0.
|
34 |
define( 'SIS_OPTION', 'custom_image_sizes' );
|
35 |
|
36 |
// Function for easy load files
|
3 |
Plugin Name: Simple Image Sizes
|
4 |
Plugin URI: https://github.com/Rahe/'simple-image-sizes'
|
5 |
Description: Add options in media setting page for images sizes
|
6 |
+
Version: 3.0.2
|
7 |
Author: Rahe
|
8 |
Author URI: http://nicolas-juen.fr
|
9 |
Text Domain: 'simple-image-sizes'
|
30 |
|
31 |
define( 'SIS_URL', plugin_dir_url ( __FILE__ ) );
|
32 |
define( 'SIS_DIR', plugin_dir_path( __FILE__ ) );
|
33 |
+
define( 'SIS_VERSION', '3.0.2' );
|
34 |
define( 'SIS_OPTION', 'custom_image_sizes' );
|
35 |
|
36 |
// Function for easy load files
|