Version Description
Download this release
Release Info
Developer | Rahe |
Plugin | Simple Image Sizes |
Version | 1.0.2 |
Comparing to | |
See all releases |
Code changes from version 1.0.1 to 1.0.2
- readme.txt +3 -1
- simple_image_sizes.php +15 -4
readme.txt
CHANGED
@@ -4,7 +4,7 @@ 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.
|
8 |
|
9 |
== Description ==
|
10 |
|
@@ -23,6 +23,8 @@ Regenerate your sizes by size and post type too !
|
|
23 |
2. Regenerating
|
24 |
|
25 |
== Changelog ==
|
|
|
|
|
26 |
* 1.0.1
|
27 |
* Add POT file
|
28 |
* Add french translation
|
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.2
|
8 |
|
9 |
== Description ==
|
10 |
|
23 |
2. Regenerating
|
24 |
|
25 |
== Changelog ==
|
26 |
+
* 1.0.2
|
27 |
+
* Fix the plugin license
|
28 |
* 1.0.1
|
29 |
* Add POT file
|
30 |
* Add french translation
|
simple_image_sizes.php
CHANGED
@@ -3,17 +3,28 @@
|
|
3 |
Plugin Name: Simple Image Size
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/simple-image-sizes/
|
5 |
Description: Add an option in media setting page for images sizes
|
6 |
-
Version: 1.0.
|
7 |
Author: Rahe
|
8 |
Author URI: http://www.beapi.fr
|
9 |
Text Domain: sis
|
10 |
Domain Path: /languages/
|
11 |
Network: false
|
12 |
|
13 |
-
Copyright
|
14 |
|
15 |
-
This
|
16 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
17 |
*/
|
18 |
|
19 |
define( 'SIS_URL', plugins_url('/', __FILE__) );
|
3 |
Plugin Name: Simple Image Size
|
4 |
Plugin URI: http://wordpress.org/extend/plugins/simple-image-sizes/
|
5 |
Description: Add an option in media setting page for images sizes
|
6 |
+
Version: 1.0.2
|
7 |
Author: Rahe
|
8 |
Author URI: http://www.beapi.fr
|
9 |
Text Domain: sis
|
10 |
Domain Path: /languages/
|
11 |
Network: false
|
12 |
|
13 |
+
Copyright 2011 Nicolas JUEN (njuen@beapi.fr) - Be-API
|
14 |
|
15 |
+
This program is free software; you can redistribute it and/or modify
|
16 |
+
it under the terms of the GNU General Public License as published by
|
17 |
+
the Free Software Foundation; either version 2 of the License, or
|
18 |
+
(at your option) any later version.
|
19 |
+
|
20 |
+
This program is distributed in the hope that it will be useful,
|
21 |
+
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
22 |
+
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
23 |
+
GNU General Public License for more details.
|
24 |
+
|
25 |
+
You should have received a copy of the GNU General Public License
|
26 |
+
along with this program; if not, write to the Free Software
|
27 |
+
Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
28 |
*/
|
29 |
|
30 |
define( 'SIS_URL', plugins_url('/', __FILE__) );
|