Simple Image Sizes - Version 1.0.4

Version Description

Download this release

Release Info

Developer Rahe
Plugin Icon wp plugin Simple Image Sizes
Version 1.0.4
Comparing to
See all releases

Code changes from version 1.0.3 to 1.0.4

Files changed (3) hide show
  1. inc/class.client.php +1 -1
  2. readme.txt +7 -4
  3. simple_image_sizes.php +1 -1
inc/class.client.php CHANGED
@@ -29,7 +29,7 @@ Class SISClient {
29
  $crop = ( isset( $size['c'] ) && !empty( $size['c'] ) )? $size['c'] : 0 ;
30
 
31
  // Add the images sizes
32
- add_image_size( $name, $size['h'], $size['w'], $crop );
33
  }
34
  }
35
  }
29
  $crop = ( isset( $size['c'] ) && !empty( $size['c'] ) )? $size['c'] : 0 ;
30
 
31
  // Add the images sizes
32
+ add_image_size( $name, $size['w'], $size['h'], $crop );
33
  }
34
  }
35
  }
readme.txt CHANGED
@@ -1,21 +1,22 @@
1
  === Simple Image Sizes ===
2
  Contributors: rahe
3
  Donate link: http://www.beapi.fr/donate/
4
- Tags: images, image, custom sizes, custom images, thumbnail regenerate, thumbnail, regenerate,
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
- Stable tag: 1.0.3
8
 
9
  == Description ==
10
 
11
  This plugin allow create custom image sizes for your site. Override your theme sizes directly on the media option page.
12
- You can regenerate all the sizes you have just created and choose wich one you wanted to regenerate.
13
 
14
  == Installation ==
15
 
16
  1. Download, unzip and upload to your WordPress plugins directory
17
  2. Activate the plugin within you WordPress Administration Backend
18
- 3. Go to Settings > Medias and configure your new image sizes
 
19
 
20
  == Screenshots ==
21
 
@@ -23,6 +24,8 @@ You can regenerate all the sizes you have just created and choose wich one you w
23
  2. Regenerating
24
 
25
  == Changelog ==
 
 
26
  * 1.0.3
27
  * Fix the plugin language
28
  * Add some translations
1
  === Simple Image Sizes ===
2
  Contributors: rahe
3
  Donate link: http://www.beapi.fr/donate/
4
+ Tags: images, image, custom sizes, custom images, thumbnail regenerate, thumbnail, regenerate
5
  Requires at least: 3.0
6
  Tested up to: 3.1
7
+ Stable tag: 1.0.4
8
 
9
  == Description ==
10
 
11
  This plugin allow create custom image sizes for your site. Override your theme sizes directly on the media option page.
12
+ You can regenerate all the sizes you have just created and choose which one you wanted to regenerate.
13
 
14
  == Installation ==
15
 
16
  1. Download, unzip and upload to your WordPress plugins directory
17
  2. Activate the plugin within you WordPress Administration Backend
18
+ 3. Go to Settings > Medias
19
+ 4. Configure your new image sizes and regenerate the thumbnails !
20
 
21
  == Screenshots ==
22
 
24
  2. Regenerating
25
 
26
  == Changelog ==
27
+ * 1.0.4
28
+ * Fix the add_image_size issue ( height and width reversed )
29
  * 1.0.3
30
  * Fix the plugin language
31
  * Add some translations
simple_image_sizes.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Simple Image Size
4
  Plugin URI: http://wordpress.org/extend/plugins/simple-image-sizes/
5
  Description: Add options in media setting page for images sizes
6
- Version: 1.0.3
7
  Author: Rahe
8
  Author URI: http://www.beapi.fr
9
  Text Domain: sis
3
  Plugin Name: Simple Image Size
4
  Plugin URI: http://wordpress.org/extend/plugins/simple-image-sizes/
5
  Description: Add options in media setting page for images sizes
6
+ Version: 1.0.4
7
  Author: Rahe
8
  Author URI: http://www.beapi.fr
9
  Text Domain: sis