Version Description
- Update: Bulk analyze/prepare galleries, avoid the first request to time out.
- Add: Many option to make the processing faster or slower depending on the server.
- Fix: Handle server timeout.
- Add: Pause button and Retry button.
Download this release
Release Info
Developer | TigrouMeow |
Plugin | Media Cleaner |
Version | 4.0.7 |
Comparing to | |
See all releases |
Code changes from version 4.0.6 to 4.0.7
- core.php +1 -0
- media-cleaner.php +2 -2
- readme.txt +2 -2
core.php
CHANGED
@@ -200,6 +200,7 @@ class Meow_WPMC_Core {
|
|
200 |
echo json_encode( array(
|
201 |
'results' => array(),
|
202 |
'success' => true,
|
|
|
203 |
'message' => __( "Galleries check is off. Prepare finished.", 'media-cleaner' )
|
204 |
) );
|
205 |
die();
|
200 |
echo json_encode( array(
|
201 |
'results' => array(),
|
202 |
'success' => true,
|
203 |
+
'finished' => true,
|
204 |
'message' => __( "Galleries check is off. Prepare finished.", 'media-cleaner' )
|
205 |
) );
|
206 |
die();
|
media-cleaner.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Media Cleaner
|
4 |
Plugin URI: http://meowapps.com
|
5 |
Description: Clean your Media Library, many options, trash system.
|
6 |
-
Version: 4.0.
|
7 |
Author: Jordy Meow
|
8 |
Author URI: http://meowapps.com
|
9 |
Text Domain: media-cleaner
|
@@ -19,7 +19,7 @@ Originally developed for two of my websites:
|
|
19 |
if ( is_admin() ) {
|
20 |
|
21 |
global $wpmc_version;
|
22 |
-
$wpmc_version = '4.0.
|
23 |
|
24 |
// Admin
|
25 |
require( 'wpmc_admin.php' );
|
3 |
Plugin Name: Media Cleaner
|
4 |
Plugin URI: http://meowapps.com
|
5 |
Description: Clean your Media Library, many options, trash system.
|
6 |
+
Version: 4.0.7
|
7 |
Author: Jordy Meow
|
8 |
Author URI: http://meowapps.com
|
9 |
Text Domain: media-cleaner
|
19 |
if ( is_admin() ) {
|
20 |
|
21 |
global $wpmc_version;
|
22 |
+
$wpmc_version = '4.0.7';
|
23 |
|
24 |
// Admin
|
25 |
require( 'wpmc_admin.php' );
|
readme.txt
CHANGED
@@ -3,7 +3,7 @@ Contributors: TigrouMeow
|
|
3 |
Tags: management, admin, file, files, images, image, media, library, upload, clean, cleaning
|
4 |
Requires at least: 4.2
|
5 |
Tested up to: 4.8
|
6 |
-
Stable tag: 4.0.
|
7 |
|
8 |
Clean your Media Library and Uploads directory. It has an internal trash and recovery features.
|
9 |
|
@@ -50,7 +50,7 @@ It re-creates the Media Cleaner table in the database. You will need to re-run t
|
|
50 |
|
51 |
== Changelog ==
|
52 |
|
53 |
-
= 4.0.
|
54 |
* Update: Bulk analyze/prepare galleries, avoid the first request to time out.
|
55 |
* Add: Many option to make the processing faster or slower depending on the server.
|
56 |
* Fix: Handle server timeout.
|
3 |
Tags: management, admin, file, files, images, image, media, library, upload, clean, cleaning
|
4 |
Requires at least: 4.2
|
5 |
Tested up to: 4.8
|
6 |
+
Stable tag: 4.0.7
|
7 |
|
8 |
Clean your Media Library and Uploads directory. It has an internal trash and recovery features.
|
9 |
|
50 |
|
51 |
== Changelog ==
|
52 |
|
53 |
+
= 4.0.7 =
|
54 |
* Update: Bulk analyze/prepare galleries, avoid the first request to time out.
|
55 |
* Add: Many option to make the processing faster or slower depending on the server.
|
56 |
* Fix: Handle server timeout.
|