Version Description
Fixes a critical bug from the previous version
=
Download this release
Release Info
| Developer | turcuciprian |
| Plugin | |
| Version | 1.0.2 |
| Comparing to | |
| See all releases | |
Code changes from version 1.0.1 to 1.0.2
- readme.txt +9 -5
- regenerate-thumbnails-advanced.php +1 -10
- screenshot-1.png +0 -0
- screenshot-2.png +0 -0
- screenshot-3.png +0 -0
- screenshot-4.png +0 -0
readme.txt
CHANGED
|
@@ -3,8 +3,8 @@ Contributors: turcuciprian
|
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MU4RJNNF74QKY
|
| 4 |
Tags: regenerate, thumbnails, advanced, easy, day, weeek, month
|
| 5 |
Requires at least: 4.0
|
| 6 |
-
Tested up to: 4.
|
| 7 |
-
Stable tag: 1.0.
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
|
@@ -47,9 +47,7 @@ The script stops, it does not run in the background
|
|
| 47 |
== Screenshots ==
|
| 48 |
|
| 49 |
1. The plugin page where it all happens
|
| 50 |
-
|
| 51 |
-
3. Where you find everything
|
| 52 |
-
4. From - To (between dates) Option
|
| 53 |
|
| 54 |
== Changelog ==
|
| 55 |
|
|
@@ -99,6 +97,9 @@ The script stops, it does not run in the background
|
|
| 99 |
= 1.0.1 =
|
| 100 |
Removed unnecesary functionality. Just the checkbox for OTF is now available.
|
| 101 |
|
|
|
|
|
|
|
|
|
|
| 102 |
== Upgrade Notice ==
|
| 103 |
|
| 104 |
= 0.7 =
|
|
@@ -136,3 +137,6 @@ This version changes the style and adds a bit of functionality to the general se
|
|
| 136 |
|
| 137 |
= 1.0.1 =
|
| 138 |
nothing that affect the previous data is changed. Update is save
|
|
|
|
|
|
|
|
|
| 3 |
Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=MU4RJNNF74QKY
|
| 4 |
Tags: regenerate, thumbnails, advanced, easy, day, weeek, month
|
| 5 |
Requires at least: 4.0
|
| 6 |
+
Tested up to: 4.4.1
|
| 7 |
+
Stable tag: 1.0.2
|
| 8 |
License: GPLv2 or later
|
| 9 |
License URI: http://www.gnu.org/licenses/gpl-2.0.html
|
| 10 |
|
| 47 |
== Screenshots ==
|
| 48 |
|
| 49 |
1. The plugin page where it all happens
|
| 50 |
+
|
|
|
|
|
|
|
| 51 |
|
| 52 |
== Changelog ==
|
| 53 |
|
| 97 |
= 1.0.1 =
|
| 98 |
Removed unnecesary functionality. Just the checkbox for OTF is now available.
|
| 99 |
|
| 100 |
+
= 1.0.2 =
|
| 101 |
+
Fixes a critical bug from the previous version
|
| 102 |
+
|
| 103 |
== Upgrade Notice ==
|
| 104 |
|
| 105 |
= 0.7 =
|
| 137 |
|
| 138 |
= 1.0.1 =
|
| 139 |
nothing that affect the previous data is changed. Update is save
|
| 140 |
+
|
| 141 |
+
= 1.0.2 =
|
| 142 |
+
nothing that affect the previous data is changed. Update is save
|
regenerate-thumbnails-advanced.php
CHANGED
|
@@ -3,7 +3,7 @@
|
|
| 3 |
Plugin Name: reGenerate Thumbnails - advanced
|
| 4 |
Plugin URI: http://turcuciprian.com
|
| 5 |
Description: A plugin that makes regenerating thumbnails even easier than before and more flexible.
|
| 6 |
-
Version: 1.0.
|
| 7 |
Author: turcuciprian
|
| 8 |
Author URI: http://turcuciprian.com
|
| 9 |
License: GPLv2 or later
|
|
@@ -335,8 +335,6 @@ if(!isset($meta['sizes'][$size]) && !empty($meta['sizes'][$size])){
|
|
| 335 |
|
| 336 |
add_action('init','rtaInit');
|
| 337 |
function rtaInit(){
|
| 338 |
-
add_image_size('test3',400,400);
|
| 339 |
-
|
| 340 |
$rotf = get_option( 'rtaOTF');
|
| 341 |
if ( ! function_exists( 'gambit_otf_regen_thumbs_media_downsize' ) && $rotf=='checked') {
|
| 342 |
add_filter( 'image_downsize', 'gambit_otf_regen_thumbs_media_downsize', 10, 3 );
|
|
@@ -483,10 +481,3 @@ function rtaInit(){
|
|
| 483 |
}
|
| 484 |
}
|
| 485 |
}
|
| 486 |
-
add_action('wp_head','wpinittest');
|
| 487 |
-
function wpinittest(){
|
| 488 |
-
// echo wp_get_attachment_image( 5,'test3' );
|
| 489 |
-
$rotf = get_option( 'rtaOTF');
|
| 490 |
-
echo $rotf."xxxxxxxxxx";
|
| 491 |
-
exit;
|
| 492 |
-
}
|
| 3 |
Plugin Name: reGenerate Thumbnails - advanced
|
| 4 |
Plugin URI: http://turcuciprian.com
|
| 5 |
Description: A plugin that makes regenerating thumbnails even easier than before and more flexible.
|
| 6 |
+
Version: 1.0.2
|
| 7 |
Author: turcuciprian
|
| 8 |
Author URI: http://turcuciprian.com
|
| 9 |
License: GPLv2 or later
|
| 335 |
|
| 336 |
add_action('init','rtaInit');
|
| 337 |
function rtaInit(){
|
|
|
|
|
|
|
| 338 |
$rotf = get_option( 'rtaOTF');
|
| 339 |
if ( ! function_exists( 'gambit_otf_regen_thumbs_media_downsize' ) && $rotf=='checked') {
|
| 340 |
add_filter( 'image_downsize', 'gambit_otf_regen_thumbs_media_downsize', 10, 3 );
|
| 481 |
}
|
| 482 |
}
|
| 483 |
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
screenshot-1.png
CHANGED
|
Binary file
|
screenshot-2.png
DELETED
|
Binary file
|
screenshot-3.png
DELETED
|
Binary file
|
screenshot-4.png
DELETED
|
Binary file
|
