Update version to 2.0.12 and update documentation
This commit is contained in:
@ -29,6 +29,7 @@ This small utility plugin adds missing plugins to your WordPress plugins list an
|
|||||||
* Includes helpful notifications explaining how to fix plugin errors
|
* Includes helpful notifications explaining how to fix plugin errors
|
||||||
* One-click auto-scroll to find missing plugins in large sites
|
* One-click auto-scroll to find missing plugins in large sites
|
||||||
* Clean, user-friendly interface following WordPress design patterns
|
* Clean, user-friendly interface following WordPress design patterns
|
||||||
|
* Integrated Git Updater branch fix (changes 'master' to 'main' for proper updates)
|
||||||
|
|
||||||
= How It Works =
|
= How It Works =
|
||||||
|
|
||||||
@ -140,6 +141,13 @@ Manually editing the WordPress database is risky and requires technical knowledg
|
|||||||
|
|
||||||
== Changelog ==
|
== Changelog ==
|
||||||
|
|
||||||
|
= 2.0.12 =
|
||||||
|
* Fixed: Integrated Git Updater branch fix directly into main plugin
|
||||||
|
* Removed: Separate "GU Branch Fix" plugin (no longer needed)
|
||||||
|
* Updated: Deploy script to remove separate branch fix plugin
|
||||||
|
* Added: Documentation explaining branch fix integration
|
||||||
|
* Improved: Compatibility with Git Updater plugin
|
||||||
|
|
||||||
= 2.0.11 =
|
= 2.0.11 =
|
||||||
* Added: Created separate "GU Branch Fix" plugin to fix Git Updater branch issues
|
* Added: Created separate "GU Branch Fix" plugin to fix Git Updater branch issues
|
||||||
* Added: Deploy script for local testing
|
* Added: Deploy script for local testing
|
||||||
|
@ -3,7 +3,7 @@
|
|||||||
* Plugin Name: Fix 'Plugin file does not exist' Notices
|
* Plugin Name: Fix 'Plugin file does not exist' Notices
|
||||||
* Plugin URI: https://www.wpallstars.com
|
* Plugin URI: https://www.wpallstars.com
|
||||||
* Description: Adds missing plugins to your plugins list with a "Remove Notice" action link, allowing you to safely clean up invalid plugin references.
|
* Description: Adds missing plugins to your plugins list with a "Remove Notice" action link, allowing you to safely clean up invalid plugin references.
|
||||||
* Version: 2.0.11
|
* Version: 2.0.12
|
||||||
* Author: Marcus Quinn & WP ALLSTARS
|
* Author: Marcus Quinn & WP ALLSTARS
|
||||||
* Author URI: https://www.wpallstars.com
|
* Author URI: https://www.wpallstars.com
|
||||||
* License: GPL-2.0+
|
* License: GPL-2.0+
|
||||||
@ -26,7 +26,7 @@ if ( ! defined( 'WPINC' ) ) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
// Define plugin constants.
|
// Define plugin constants.
|
||||||
define( 'FPDEN_VERSION', '2.0.11' );
|
define( 'FPDEN_VERSION', '2.0.12' );
|
||||||
define( 'FPDEN_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
define( 'FPDEN_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
|
||||||
define( 'FPDEN_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
define( 'FPDEN_PLUGIN_URL', plugin_dir_url( __FILE__ ) );
|
||||||
|
|
||||||
|
Reference in New Issue
Block a user