Version Description
- Fixed: Show correct height value for thumbnails.
Download this release
Release Info
Developer | junkcoder |
Plugin | AJAX Thumbnail Rebuild |
Version | 1.03 |
Comparing to | |
See all releases |
Code changes from version 1.02 to 1.03
- ajax-thumbnail-rebuild.php +4 -4
- readme.txt +5 -1
ajax-thumbnail-rebuild.php
CHANGED
@@ -1,9 +1,9 @@
|
|
1 |
<?php
|
2 |
/* Plugin name: AJAX Thumbnail Rebuild
|
3 |
-
Plugin URI: http://breiti.cc/wordpress/ajax-thumbnail-rebuild
|
4 |
Author: junkcoder
|
5 |
Author URI: http://breiti.cc
|
6 |
-
Version: 1.
|
7 |
Description: Rebuild all thumbnails
|
8 |
Max WP Version: 3.0.1
|
9 |
|
@@ -124,7 +124,7 @@ class AjaxThumbnailRebuild {
|
|
124 |
|
125 |
<input type="checkbox" name="thumbnails[]" checked="checked" value="<?php echo $s ?>" />
|
126 |
<label>
|
127 |
-
<em><?php echo $s ?></em> (width : <?php echo $width ?>, height : <?php echo $
|
128 |
</label>
|
129 |
<br/>
|
130 |
<?php endforeach;?>
|
@@ -139,7 +139,7 @@ class AjaxThumbnailRebuild {
|
|
139 |
|
140 |
<p style="clear:both; padding-top:2em;">
|
141 |
If you find this plugin useful, I'd be happy to read your comments on
|
142 |
-
the <a href="http://breiti.cc/wordpress/ajax-thumbnail-rebuild" target="_blank">plugin homepage</a>.<br />
|
143 |
If you experience any problems, feel free to leave a comment too.
|
144 |
</p>
|
145 |
|
1 |
<?php
|
2 |
/* Plugin name: AJAX Thumbnail Rebuild
|
3 |
+
Plugin URI: http://software.breiti.cc/wordpress/ajax-thumbnail-rebuild
|
4 |
Author: junkcoder
|
5 |
Author URI: http://breiti.cc
|
6 |
+
Version: 1.03
|
7 |
Description: Rebuild all thumbnails
|
8 |
Max WP Version: 3.0.1
|
9 |
|
124 |
|
125 |
<input type="checkbox" name="thumbnails[]" checked="checked" value="<?php echo $s ?>" />
|
126 |
<label>
|
127 |
+
<em><?php echo $s ?></em> (width : <?php echo $width ?>, height : <?php echo $height ?>, crop : <?php echo $crop ?>)
|
128 |
</label>
|
129 |
<br/>
|
130 |
<?php endforeach;?>
|
139 |
|
140 |
<p style="clear:both; padding-top:2em;">
|
141 |
If you find this plugin useful, I'd be happy to read your comments on
|
142 |
+
the <a href="http://software.breiti.cc/wordpress/ajax-thumbnail-rebuild" target="_blank">plugin homepage</a>.<br />
|
143 |
If you experience any problems, feel free to leave a comment too.
|
144 |
</p>
|
145 |
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: junkcoder
|
|
3 |
Tags: ajax, thumbnail, rebuild, regenerate, admin
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0.1
|
6 |
-
Stable tag: 1.
|
7 |
|
8 |
AJAX Thumbnail Rebuild allows you to rebuild all thumbnails at once without script timeouts on your server.
|
9 |
|
@@ -23,6 +23,10 @@ Upload the plugin to your blog, activate it, done. You can then rebuild all thum
|
|
23 |
|
24 |
== Changelog ==
|
25 |
|
|
|
|
|
|
|
|
|
26 |
= 1.02 =
|
27 |
|
28 |
* You can now select which thumbnail sizes you want to rebuild. Thanks to Nicolas Juen!
|
3 |
Tags: ajax, thumbnail, rebuild, regenerate, admin
|
4 |
Requires at least: 2.8
|
5 |
Tested up to: 3.0.1
|
6 |
+
Stable tag: 1.03
|
7 |
|
8 |
AJAX Thumbnail Rebuild allows you to rebuild all thumbnails at once without script timeouts on your server.
|
9 |
|
23 |
|
24 |
== Changelog ==
|
25 |
|
26 |
+
= 1.03 =
|
27 |
+
|
28 |
+
* Fixed: Show correct height value for thumbnails.
|
29 |
+
|
30 |
= 1.02 =
|
31 |
|
32 |
* You can now select which thumbnail sizes you want to rebuild. Thanks to Nicolas Juen!
|