Media File Renamer - Version 4.2.5

Version Description

  • Fix: Removed Updraft.
  • Update: UTF-8 is handled by default, no need to have an option for it.
  • Add: Option for transliteration (cyrillic, accents, umlauts).
  • Note: If you like it, please review the plugin here: https://wordpress.org/support/plugin/media-file-renamer/reviews/?rate=5#new-post. It's important for us :) Thank you!
Download this release

Release Info

Developer TigrouMeow
Plugin Icon 128x128 Media File Renamer
Version 4.2.5
Comparing to
See all releases

Code changes from version 4.2.4 to 4.2.5

common/admin.php CHANGED
@@ -19,7 +19,6 @@ if ( !class_exists( 'MeowApps_Admin' ) ) {
19
  add_action( 'admin_menu', array( $this, 'admin_menu_start' ) );
20
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
21
  add_action( 'plugins_loaded', array( $this, 'plugins_loaded' ) );
22
- add_filter( 'updraftplus_com_link', array( $this, 'updraftplus_com_link' ) );
23
  }
24
  MeowApps_Admin::$loaded = true;
25
  }
@@ -45,11 +44,6 @@ if ( !class_exists( 'MeowApps_Admin' ) ) {
45
  }
46
  }
47
 
48
- function updraftplus_com_link( $url ) {
49
- $url = $url . "?afref=460";
50
- return $url;
51
- }
52
-
53
  function show_meowapps_create_rating_date() {
54
  delete_option( 'meowapps_hide_meowapps' );
55
  $this->create_rating_date();
@@ -400,7 +394,7 @@ if ( !class_exists( 'MeowApps_Admin' ) ) {
400
  </div>
401
  </div>
402
 
403
-
404
  <?php
405
 
406
  }
19
  add_action( 'admin_menu', array( $this, 'admin_menu_start' ) );
20
  add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
21
  add_action( 'plugins_loaded', array( $this, 'plugins_loaded' ) );
 
22
  }
23
  MeowApps_Admin::$loaded = true;
24
  }
44
  }
45
  }
46
 
 
 
 
 
 
47
  function show_meowapps_create_rating_date() {
48
  delete_option( 'meowapps_hide_meowapps' );
49
  $this->create_rating_date();
394
  </div>
395
  </div>
396
 
397
+
398
  <?php
399
 
400
  }
media-file-renamer.php CHANGED
@@ -3,7 +3,7 @@
3
  Plugin Name: Media File Renamer
4
  Plugin URI: http://meowapps.com
5
  Description: Auto-rename the files when titles are modified and update and the references (links). Manual Rename is a Pro option. Please read the description.
6
- Version: 4.2.4
7
  Author: Jordy Meow
8
  Author URI: http://meowapps.com
9
  Text Domain: media-file-renamer
@@ -30,7 +30,7 @@ if ( class_exists( 'Meow_MFRH_Core' ) ) {
30
  if ( is_admin() || strpos( trailingslashit( $_SERVER['REQUEST_URI'] ), '/' . trailingslashit( rest_get_url_prefix() ) ) === 0 ) {
31
 
32
  global $mfrh_version, $mfrh_core;
33
- $mfrh_version = '4.2.4';
34
 
35
  // Admin
36
  require( 'mfrh_admin.php');
3
  Plugin Name: Media File Renamer
4
  Plugin URI: http://meowapps.com
5
  Description: Auto-rename the files when titles are modified and update and the references (links). Manual Rename is a Pro option. Please read the description.
6
+ Version: 4.2.5
7
  Author: Jordy Meow
8
  Author URI: http://meowapps.com
9
  Text Domain: media-file-renamer
30
  if ( is_admin() || strpos( trailingslashit( $_SERVER['REQUEST_URI'] ), '/' . trailingslashit( rest_get_url_prefix() ) ) === 0 ) {
31
 
32
  global $mfrh_version, $mfrh_core;
33
+ $mfrh_version = '4.2.5';
34
 
35
  // Admin
36
  require( 'mfrh_admin.php');
readme.txt CHANGED
@@ -1,9 +1,9 @@
1
  === Media File Renamer ===
2
  Contributors: TigrouMeow, amekusa
3
  Tags: rename, file, files, media, manager, image, renamer, wpml, optimization, seo, retina, gutenberg
4
- Requires at least: 4.6
5
- Tested up to: 4.9.7
6
- Stable tag: 4.2.4
7
 
8
  Automatically rename files depending on Media titles dynamically + update links. Pro version has many more options. Check the description :)
9
 
@@ -17,7 +17,7 @@ The Media File Auto Renamer is a WordPress plugin that physically renames media
17
 
18
  **PRO VERSION**. The [Pro Version](https://meowapps.com/media-file-renamer/) gives a few more features like manual renaming, renaming depending on the post the media is attached to or the content of the alternative text (ALT), logging of SQL queries and a few more options. A good process is to actually let the plugin do the renaming automatically (like in the free version) and to do manual renaming for the files that require fine tuning.
19
 
20
- **BE CAREFUL**. File renaming is a dangerous process. Before renaming everything automatically, try to rename a few files first and check carefully that all the references to those files have been properly updated on your website. WordPress has so many themes and plugins that this renaming process can't unfortunately cover all the cases, especially if other plugins are using unconventional ways. If references aren't updated properly, please write a nice post (not an angry one) in the support threads :) I will try my best to cover more and more special cases. In any case, always make a **backup** of your database and files before using a plugin that alter your install. For backup, you can use such a plugin as [UpdraftPlus](https://updraftplus.com/?afref=460). Also, if your website seems broken after a few renames, try to **clear your cache**. The cached HTML will indeed not be linked to the new filenames.
21
 
22
  **FOR DEVELOPER**. The plugin can be tweaked and reference updates enhanced for your themes/plugins. Have a look [here](https://wordpress.org/plugins/media-file-renamer/faq/).
23
 
@@ -47,7 +47,8 @@ Check the FAQ on the official website, [here](https://meowapps.com/media-file-re
47
 
48
  == Changelog ==
49
 
50
- = 4.2.4 =
 
51
  * Update: UTF-8 is handled by default, no need to have an option for it.
52
  * Add: Option for transliteration (cyrillic, accents, umlauts).
53
  * Note: If you like it, please review the plugin here: https://wordpress.org/support/plugin/media-file-renamer/reviews/?rate=5#new-post. It's important for us :) Thank you!
1
  === Media File Renamer ===
2
  Contributors: TigrouMeow, amekusa
3
  Tags: rename, file, files, media, manager, image, renamer, wpml, optimization, seo, retina, gutenberg
4
+ Requires at least: 4.8
5
+ Tested up to: 4.9
6
+ Stable tag: 4.2.5
7
 
8
  Automatically rename files depending on Media titles dynamically + update links. Pro version has many more options. Check the description :)
9
 
17
 
18
  **PRO VERSION**. The [Pro Version](https://meowapps.com/media-file-renamer/) gives a few more features like manual renaming, renaming depending on the post the media is attached to or the content of the alternative text (ALT), logging of SQL queries and a few more options. A good process is to actually let the plugin do the renaming automatically (like in the free version) and to do manual renaming for the files that require fine tuning.
19
 
20
+ **BE CAREFUL**. File renaming is a dangerous process. Before renaming everything automatically, try to rename a few files first and check carefully that all the references to those files have been properly updated on your website. WordPress has so many themes and plugins that this renaming process can't unfortunately cover all the cases, especially if other plugins are using unconventional ways. If references aren't updated properly, please write a nice post (not an angry one) in the support threads :) I will try my best to cover more and more special cases. In any case, always make a **backup** of your database and files before using a plugin that alter your install. For backup, I recommend use the excellent service called [BlogVault](https://meow.click/blogvault). Also, if your website seems broken after a few renames, try to **clear your cache**. The cached HTML will indeed not be linked to the new filenames.
21
 
22
  **FOR DEVELOPER**. The plugin can be tweaked and reference updates enhanced for your themes/plugins. Have a look [here](https://wordpress.org/plugins/media-file-renamer/faq/).
23
 
47
 
48
  == Changelog ==
49
 
50
+ = 4.2.5 =
51
+ * Fix: Removed Updraft.
52
  * Update: UTF-8 is handled by default, no need to have an option for it.
53
  * Add: Option for transliteration (cyrillic, accents, umlauts).
54
  * Note: If you like it, please review the plugin here: https://wordpress.org/support/plugin/media-file-renamer/reviews/?rate=5#new-post. It's important for us :) Thank you!
views/menu-screen.php CHANGED
@@ -18,7 +18,7 @@
18
  <h2>Rename in Bulk</h2>
19
 
20
  <p>
21
- <?php _e( 'You might have noticed that some of your media are locked by the file renamer, others are unlocked. Automatically, the plugin locks the media you renamed manually. By default, they are unlocked. Here, you have the choice of rename all the media in your DB or only the ones which are unlocked (to keep the files you renamed manually). <span style="color: red; font-weight: bold;">Please backup your uploads folder + DB before using this.</span> If you don\'t know how, give a try to this: <a href="https://updraftplus.com/?afref=460" target="_blank">UpdraftPlus</a>.', 'media-file-renamer' ); ?>
22
  </p>
23
 
24
  <div style='margin-top: 12px; background: #FFF; padding: 5px; border-radius: 4px; height: 28px; box-shadow: 0px 0px 6px #C2C2C2;'>
18
  <h2>Rename in Bulk</h2>
19
 
20
  <p>
21
+ <?php _e( 'You might have noticed that some of your media are locked by the file renamer, others are unlocked. Automatically, the plugin locks the media you renamed manually. By default, they are unlocked. Here, you have the choice of rename all the media in your DB or only the ones which are unlocked (to keep the files you renamed manually). <span style="color: red; font-weight: bold;">Please backup your uploads folder + DB before using this.</span> If you don\'t know how, give a try to this backup service: <a href="https://meow.click/blogvault" target="_blank">BlogVault</a>.', 'media-file-renamer' ); ?>
22
  </p>
23
 
24
  <div style='margin-top: 12px; background: #FFF; padding: 5px; border-radius: 4px; height: 28px; box-shadow: 0px 0px 6px #C2C2C2;'>