reGenerate Thumbnails Advanced - Version 0.8.2.3

Version Description

*Progress and errors aligned with containers *javascript changed so that it shows processing for errors when processing starts

=

Download this release

Release Info

Developer turcuciprian
Plugin Icon 128x128 reGenerate Thumbnails Advanced
Version 0.8.2.3
Comparing to
See all releases

Code changes from version 0.8.2.2 to 0.8.2.3

readme.txt CHANGED
@@ -4,7 +4,7 @@ Donate link: https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_i
4
  Tags: regenerate, thumbnails, advanced, easy, day, weeek, month
5
  Requires at least: 4.0
6
  Tested up to: 4.2.4
7
- Stable tag: 0.8.2.2
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
@@ -71,9 +71,13 @@ The script stops, it does not run in the background
71
  *Images processed gets updated on regenerate request (it was frozen before if no images where available to be processed)
72
  *Added a extra image
73
 
74
- = 0.8.2.1 =
75
  *Added a "no js or js error" message to the page if it's the case
76
 
 
 
 
 
77
  == Upgrade Notice ==
78
 
79
  = 0.7 =
@@ -92,4 +96,7 @@ No issuse with this version that require attention
92
  No issuse with this version that require attention. Small update change
93
 
94
  = 0.8.2.2 =
 
 
 
95
  No issuse with this version that require attention. Small update change. It's basically a feature, so unless you want it, the older version works great.
4
  Tags: regenerate, thumbnails, advanced, easy, day, weeek, month
5
  Requires at least: 4.0
6
  Tested up to: 4.2.4
7
+ Stable tag: 0.8.2.3
8
  License: GPLv2 or later
9
  License URI: http://www.gnu.org/licenses/gpl-2.0.html
10
 
71
  *Images processed gets updated on regenerate request (it was frozen before if no images where available to be processed)
72
  *Added a extra image
73
 
74
+ = 0.8.2.2 =
75
  *Added a "no js or js error" message to the page if it's the case
76
 
77
+ = 0.8.2.3 =
78
+ *Progress and errors aligned with containers
79
+ *javascript changed so that it shows processing for errors when processing starts
80
+
81
  == Upgrade Notice ==
82
 
83
  = 0.7 =
96
  No issuse with this version that require attention. Small update change
97
 
98
  = 0.8.2.2 =
99
+ No issuse with this version that require attention. Small update change. It's basically a feature, so unless you want it, the older version works great.
100
+
101
+ = 0.8.2.3 =
102
  No issuse with this version that require attention. Small update change. It's basically a feature, so unless you want it, the older version works great.
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: 0.8.2.2
7
  Author: turcuciprian
8
  Author URI: http://turcuciprian.com
9
  License: GPLv2 or later
@@ -241,16 +241,21 @@ class cc {
241
  $content .= sprintf('</select>');
242
  $content .= sprintf('<p class="submit">'
243
  . '<button class="button button-primary RTA">Regenerate Thumbnails</button>'
244
- . '<h3>Progress & Errors</h3>'
 
245
  . '<div class="logstatus ui-widget-content">'
246
  . 'Nothing processed yet'
 
247
  . '</div>'//where the errors show
 
 
248
  . '<div class="errors ui-widget-content">'
249
  . 'No errors to display yet.'
250
  . '</div>'//where the errors show
251
  . '</p>');
252
 
253
  $content .= sprintf('</div>'
 
254
  . '</div>'
255
  . '<!-- Js Works End -->'
256
  . '<!--GTA wrap END -->');
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: 0.8.2.3
7
  Author: turcuciprian
8
  Author URI: http://turcuciprian.com
9
  License: GPLv2 or later
241
  $content .= sprintf('</select>');
242
  $content .= sprintf('<p class="submit">'
243
  . '<button class="button button-primary RTA">Regenerate Thumbnails</button>'
244
+ . '<div class="wrap">'
245
+ . '<h3>Progress</h3>'
246
  . '<div class="logstatus ui-widget-content">'
247
  . 'Nothing processed yet'
248
+ . '</div>'
249
  . '</div>'//where the errors show
250
+ . '<div class="wrap">'
251
+ . '<h3> Errors</h3>'
252
  . '<div class="errors ui-widget-content">'
253
  . 'No errors to display yet.'
254
  . '</div>'//where the errors show
255
  . '</p>');
256
 
257
  $content .= sprintf('</div>'
258
+ . '</div>'
259
  . '</div>'
260
  . '<!-- Js Works End -->'
261
  . '<!--GTA wrap END -->');
screenshot-1.png CHANGED
Binary file
screenshot-2.png CHANGED
Binary file
script.js CHANGED
@@ -18,6 +18,7 @@ jQuery(document).ready(function ($) {
18
  var rta_butt = $('.button.RTA');
19
  if (rta_butt[0]) {
20
  var logstatus = $('#rta .logstatus');
 
21
 
22
  rta_butt.click(submit_ajax_call);
23
  //
@@ -25,8 +26,8 @@ jQuery(document).ready(function ($) {
25
  //
26
  function submit_ajax_call() {
27
  logstatus.html('Processing...');
 
28
  err_arr=[];
29
- errors_obj.html('');
30
  var period = $('#rta_period');
31
  // First Time Request
32
  loop_ajax_request('general', 0, -1, period.val());
18
  var rta_butt = $('.button.RTA');
19
  if (rta_butt[0]) {
20
  var logstatus = $('#rta .logstatus');
21
+ var errstatus = $('#rta .errors');
22
 
23
  rta_butt.click(submit_ajax_call);
24
  //
26
  //
27
  function submit_ajax_call() {
28
  logstatus.html('Processing...');
29
+ errstatus.html('Processing...');
30
  err_arr=[];
 
31
  var period = $('#rta_period');
32
  // First Time Request
33
  loop_ajax_request('general', 0, -1, period.val());
style.css CHANGED
@@ -27,7 +27,7 @@
27
  #rta .errors,
28
  #rta .logstatus{
29
  float:left;
30
- width:46%;
31
  padding:10px;
32
  margin:0px 1% 0 0;
33
  text-align: left;
@@ -49,4 +49,7 @@
49
  color:red;
50
  text-align: center;
51
  margin:140px 0 100px 0;
 
 
 
52
  }
27
  #rta .errors,
28
  #rta .logstatus{
29
  float:left;
30
+ width:96%;
31
  padding:10px;
32
  margin:0px 1% 0 0;
33
  text-align: left;
49
  color:red;
50
  text-align: center;
51
  margin:140px 0 100px 0;
52
+ }#rta .wrap{
53
+ float:left;
54
+ width:46%;
55
  }