Version Description
(2022/10/24) = * Fix: There was an issue with WP-CLI in the latest versions. * Note: Please try my new Database Cleaner! You'll love it.
Download this release
Release Info
Developer | TigrouMeow |
Plugin | Media File Renamer |
Version | 5.4.8 |
Comparing to | |
See all releases |
Code changes from version 5.4.7 to 5.4.8
- classes/core.php +1 -1
- media-file-renamer.php +2 -2
- readme.txt +5 -2
classes/core.php
CHANGED
@@ -32,6 +32,7 @@ class Meow_MFRH_Core {
|
|
32 |
|
33 |
// Before use get_option function, it has to set up Meow_MFRH_Admin.
|
34 |
// Part of the core, settings and stuff
|
|
|
35 |
$this->allow_setup = apply_filters( 'mfrh_allow_setup', current_user_can( 'manage_options' ) );
|
36 |
$this->admin = new Meow_MFRH_Admin( $this->allow_setup, $this );
|
37 |
if ( class_exists( 'MeowPro_MFRH_Core' ) ) {
|
@@ -41,7 +42,6 @@ class Meow_MFRH_Core {
|
|
41 |
|
42 |
// This should be checked after the init (is_rest checks the capacities)
|
43 |
$this->is_rest = MeowCommon_Helpers::is_rest();
|
44 |
-
$this->is_cli = defined( 'WP_CLI' ) && WP_CLI;
|
45 |
$this->images_only = $this->get_option( 'images_only', false ) == 1;
|
46 |
$this->featured_only = $this->get_option( 'featured_only', false ) == 1;
|
47 |
|
32 |
|
33 |
// Before use get_option function, it has to set up Meow_MFRH_Admin.
|
34 |
// Part of the core, settings and stuff
|
35 |
+
$this->is_cli = defined( 'WP_CLI' ) && WP_CLI;
|
36 |
$this->allow_setup = apply_filters( 'mfrh_allow_setup', current_user_can( 'manage_options' ) );
|
37 |
$this->admin = new Meow_MFRH_Admin( $this->allow_setup, $this );
|
38 |
if ( class_exists( 'MeowPro_MFRH_Core' ) ) {
|
42 |
|
43 |
// This should be checked after the init (is_rest checks the capacities)
|
44 |
$this->is_rest = MeowCommon_Helpers::is_rest();
|
|
|
45 |
$this->images_only = $this->get_option( 'images_only', false ) == 1;
|
46 |
$this->featured_only = $this->get_option( 'featured_only', false ) == 1;
|
47 |
|
media-file-renamer.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Media File Renamer
|
4 |
Plugin URI: https://meowapps.com
|
5 |
Description: Rename your files and images for a better SEO, automatically and manually.
|
6 |
-
Version: 5.4.
|
7 |
Author: Jordy Meow
|
8 |
Author URI: https://meowapps.com
|
9 |
Text Domain: media-file-renamer
|
@@ -15,7 +15,7 @@ Originally developed for two of my websites:
|
|
15 |
*/
|
16 |
|
17 |
if ( !defined( 'MFRH_VERSION' ) ) {
|
18 |
-
define( 'MFRH_VERSION', '5.4.
|
19 |
define( 'MFRH_PREFIX', 'mfrh' );
|
20 |
define( 'MFRH_DOMAIN', 'media-file-renamer' );
|
21 |
define( 'MFRH_ENTRY', __FILE__ );
|
3 |
Plugin Name: Media File Renamer
|
4 |
Plugin URI: https://meowapps.com
|
5 |
Description: Rename your files and images for a better SEO, automatically and manually.
|
6 |
+
Version: 5.4.8
|
7 |
Author: Jordy Meow
|
8 |
Author URI: https://meowapps.com
|
9 |
Text Domain: media-file-renamer
|
15 |
*/
|
16 |
|
17 |
if ( !defined( 'MFRH_VERSION' ) ) {
|
18 |
+
define( 'MFRH_VERSION', '5.4.8' );
|
19 |
define( 'MFRH_PREFIX', 'mfrh' );
|
20 |
define( 'MFRH_DOMAIN', 'media-file-renamer' );
|
21 |
define( 'MFRH_ENTRY', __FILE__ );
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://meowapps.com/donation/
|
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 6.0.1
|
7 |
Requires PHP: 7.0
|
8 |
-
Stable tag: 5.4.
|
9 |
|
10 |
Rename your files and images for a better SEO, automatically and manually.
|
11 |
|
@@ -69,12 +69,15 @@ The plugin can be tweaked in many ways, there are many actions and filters avail
|
|
69 |
|
70 |
== Changelog ==
|
71 |
|
|
|
|
|
|
|
|
|
72 |
= 5.4.7 (2022/10/12) =
|
73 |
* Add: Consider WebP as an "Image" (which it is 😏).
|
74 |
* Fix: The 'Featured Only' and 'Images Only' were not working perfectly.
|
75 |
* Update: Optimized the way options are updated and retrieved.
|
76 |
* Update: Some refactoring to simplify the code.
|
77 |
-
* Note: Please try my new [Database Cleaner](https://wordpress.org/plugins/database-cleaner/)! You'll love it.
|
78 |
|
79 |
= 5.4.5 (2022/09/27) =
|
80 |
* Add: Auto-retry on failure, up to 10 times.
|
5 |
Requires at least: 5.0
|
6 |
Tested up to: 6.0.1
|
7 |
Requires PHP: 7.0
|
8 |
+
Stable tag: 5.4.8
|
9 |
|
10 |
Rename your files and images for a better SEO, automatically and manually.
|
11 |
|
69 |
|
70 |
== Changelog ==
|
71 |
|
72 |
+
= 5.4.8 (2022/10/24) =
|
73 |
+
* Fix: There was an issue with WP-CLI in the latest versions.
|
74 |
+
* Note: Please try my new [Database Cleaner](https://wordpress.org/plugins/database-cleaner/)! You'll love it.
|
75 |
+
|
76 |
= 5.4.7 (2022/10/12) =
|
77 |
* Add: Consider WebP as an "Image" (which it is 😏).
|
78 |
* Fix: The 'Featured Only' and 'Images Only' were not working perfectly.
|
79 |
* Update: Optimized the way options are updated and retrieved.
|
80 |
* Update: Some refactoring to simplify the code.
|
|
|
81 |
|
82 |
= 5.4.5 (2022/09/27) =
|
83 |
* Add: Auto-retry on failure, up to 10 times.
|