Version Description
- Replace the plugin with the new one.
- Nothing else is required! :)
Download this release
Release Info
Developer | TigrouMeow |
Plugin | Media File Renamer |
Version | 5.0.7 |
Comparing to | |
See all releases |
Code changes from version 5.0.6 to 5.0.7
- classes/admin.php +3 -1
- media-file-renamer.php +2 -2
- readme.txt +4 -1
classes/admin.php
CHANGED
@@ -31,7 +31,9 @@ class Meow_MFRH_Admin extends MeowCommon_Admin {
|
|
31 |
wp_register_script( 'mfrh_media_file_renamer', MFRH_URL . 'app/index.js',
|
32 |
['mfrh_media_file_renamer-vendor', 'wp-i18n'], $cache_buster
|
33 |
);
|
34 |
-
|
|
|
|
|
35 |
wp_enqueue_script('mfrh_media_file_renamer' );
|
36 |
|
37 |
// Load the fonts
|
31 |
wp_register_script( 'mfrh_media_file_renamer', MFRH_URL . 'app/index.js',
|
32 |
['mfrh_media_file_renamer-vendor', 'wp-i18n'], $cache_buster
|
33 |
);
|
34 |
+
if ( function_exists( 'wp_set_script_translations' ) ) {
|
35 |
+
wp_set_script_translations( 'mfrh_media_file_renamer', 'media-file-renamer' );
|
36 |
+
}
|
37 |
wp_enqueue_script('mfrh_media_file_renamer' );
|
38 |
|
39 |
// Load the fonts
|
media-file-renamer.php
CHANGED
@@ -3,7 +3,7 @@
|
|
3 |
Plugin Name: Media File Renamer
|
4 |
Plugin URI: https://meowapps.com
|
5 |
Description: Renames your media files for better SEO and a nicer filesystem (automatically or manually).
|
6 |
-
Version: 5.0.
|
7 |
Author: Jordy Meow
|
8 |
Author URI: https://meowapps.com
|
9 |
Text Domain: media-file-renamer
|
@@ -14,7 +14,7 @@ Originally developed for two of my websites:
|
|
14 |
- Haikyo (https://haikyo.org)
|
15 |
*/
|
16 |
|
17 |
-
define( 'MFRH_VERSION', '5.0.
|
18 |
define( 'MFRH_PREFIX', 'mfrh' );
|
19 |
define( 'MFRH_DOMAIN', 'media-file-renamer' );
|
20 |
define( 'MFRH_ENTRY', __FILE__ );
|
3 |
Plugin Name: Media File Renamer
|
4 |
Plugin URI: https://meowapps.com
|
5 |
Description: Renames your media files for better SEO and a nicer filesystem (automatically or manually).
|
6 |
+
Version: 5.0.7
|
7 |
Author: Jordy Meow
|
8 |
Author URI: https://meowapps.com
|
9 |
Text Domain: media-file-renamer
|
14 |
- Haikyo (https://haikyo.org)
|
15 |
*/
|
16 |
|
17 |
+
define( 'MFRH_VERSION', '5.0.7' );
|
18 |
define( 'MFRH_PREFIX', 'mfrh' );
|
19 |
define( 'MFRH_DOMAIN', 'media-file-renamer' );
|
20 |
define( 'MFRH_ENTRY', __FILE__ );
|
readme.txt
CHANGED
@@ -5,7 +5,7 @@ Donate link: https://commerce.coinbase.com/checkout/d047546a-77a8-41c8-9ea9-4a95
|
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
-
Stable tag: 5.0.
|
9 |
|
10 |
Renames your media files for better SEO and a nicer filesystem (automatically or manually).
|
11 |
|
@@ -39,6 +39,9 @@ Renaming (or moving) files is a dangerous process. Before doing anything in bulk
|
|
39 |
=== WHEN SOMETHING BAD HAPPENS ===
|
40 |
If your website seems broken after a few renames, try to **clear your cache**. The cached HTML is often using the old references. You can also enable the Undo feature and try to rollback to the previous filenames. If references aren't updated properly, please write a nice post (not an angry one) in the support threads :) I am trying my best to cover more and more use cases. Please have a look here: [Questions & Issues](https://meowapps.com/media-file-renamer-faq-issues/).
|
41 |
|
|
|
|
|
|
|
42 |
=== FOR DEVELOPERS ===
|
43 |
The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is also a little API that you can call. More about this [here](https://meowapps.com/media-file-renamer-faq/).
|
44 |
|
5 |
Requires at least: 4.8
|
6 |
Tested up to: 5.5
|
7 |
Requires PHP: 5.6
|
8 |
+
Stable tag: 5.0.7
|
9 |
|
10 |
Renames your media files for better SEO and a nicer filesystem (automatically or manually).
|
11 |
|
39 |
=== WHEN SOMETHING BAD HAPPENS ===
|
40 |
If your website seems broken after a few renames, try to **clear your cache**. The cached HTML is often using the old references. You can also enable the Undo feature and try to rollback to the previous filenames. If references aren't updated properly, please write a nice post (not an angry one) in the support threads :) I am trying my best to cover more and more use cases. Please have a look here: [Questions & Issues](https://meowapps.com/media-file-renamer-faq-issues/).
|
41 |
|
42 |
+
=== A SIMPLER PLUGIN ===
|
43 |
+
If you only need an editable field to modify the filename, feel free to try [Phoenix Media Rename](https://wordpress.org/plugins/phoenix-media-rename). It's a much simpler plugin and the developer is also very helpful :)
|
44 |
+
|
45 |
=== FOR DEVELOPERS ===
|
46 |
The plugin can be tweaked in many ways, there are many actions and filters available. Through them, for example, you can customize the automatic renaming to your liking. There is also a little API that you can call. More about this [here](https://meowapps.com/media-file-renamer-faq/).
|
47 |
|