diff --git a/CHANGELOG.md b/CHANGELOG.md index 4a6bc72..6229094 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ All notable changes to this project should be documented both here and in the main Readme files. +#### [2.2.3] - 2025-04-14 +#### Changed +- Moved admin-specific files to admin/lib directory for better organization +- Updated namespaces to reflect the new file locations +- Added comprehensive folder structure documentation +- Fixed file references in the main plugin file + #### [2.2.2-stable] - 2025-04-14 #### Changed - Renamed includes files to lowercase for consistency with the rest of the codebase diff --git a/README.md b/README.md index 09d033f..3ea6620 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,23 @@ For more information on Git Updater integration, see the [Git Updater Required H ## Changelog +### 2.2.3 +* Improved: Moved admin-specific files to admin/lib directory for better organization +* Improved: Updated namespaces to reflect the new file locations +* Added: Comprehensive folder structure documentation +* Fixed: File references in the main plugin file + +### 2.2.2-stable +* Changed: Renamed includes files to lowercase for consistency with the rest of the codebase +* Removed: Redundant Git Updater patches and version-fix.js as they're no longer needed +* Improved: Documentation for Git Updater integration and release process +* Fixed: Token-efficient documentation with references to .ai-workflows files +* Added: Comprehensive release process documentation with emphasis on merging to main branch + +### 2.2.1 +* Changed: Commented out version-fix.js script as it's no longer needed after refactoring +* Fixed: Version consistency across all files + ### 2.2.0 * Added: Completely refactored plugin to use OOP best practices * Added: New class structure with proper namespaces diff --git a/build.sh b/build.sh index b763fbd..e5df06b 100755 --- a/build.sh +++ b/build.sh @@ -43,6 +43,8 @@ mkdir -p $BUILD_DIR/admin/css cp -r admin/css/* $BUILD_DIR/admin/css/ mkdir -p $BUILD_DIR/admin/js cp -r admin/js/* $BUILD_DIR/admin/js/ +mkdir -p $BUILD_DIR/admin/lib +cp -r admin/lib/* $BUILD_DIR/admin/lib/ # Create assets directory structure mkdir -p $BUILD_DIR/assets diff --git a/languages/wp-fix-plugin-does-not-exist-notices.pot b/languages/wp-fix-plugin-does-not-exist-notices.pot index 81a60e6..ea55b57 100644 --- a/languages/wp-fix-plugin-does-not-exist-notices.pot +++ b/languages/wp-fix-plugin-does-not-exist-notices.pot @@ -2,14 +2,14 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Fix 'Plugin file does not exist' Notices 2.1.1\n" +"Project-Id-Version: Fix 'Plugin file does not exist' Notices 2.2.3\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-fix-plugin-does-not-exist-notices\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"POT-Creation-Date: 2025-04-13T00:00:00+00:00\n" +"POT-Creation-Date: 2025-04-14T00:00:00+00:00\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "X-Generator: WP-CLI 2.9.0\n" "X-Domain: wp-fix-plugin-does-not-exist-notices\n" diff --git a/readme.txt b/readme.txt index 3880486..32cccfb 100644 --- a/readme.txt +++ b/readme.txt @@ -5,7 +5,7 @@ Tags: plugins, missing plugins, cleanup, error fix, admin tools, plugin file doe Requires at least: 5.0 Tested up to: 6.7.2 Requires PHP: 7.0 -Stable tag: 2.2.2-stable +Stable tag: 2.2.3 License: GPL-2.0+ License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -179,6 +179,12 @@ Manually editing the WordPress database is risky and requires technical knowledg == Changelog == += 2.2.3 = +* Improved: Moved admin-specific files to admin/lib directory for better organization +* Improved: Updated namespaces to reflect the new file locations +* Added: Comprehensive folder structure documentation +* Fixed: File references in the main plugin file + = 2.2.2-stable = * Changed: Renamed includes files to lowercase for consistency with the rest of the codebase * Removed: Redundant Git Updater patches and version-fix.js as they're no longer needed diff --git a/wp-fix-plugin-does-not-exist-notices.php b/wp-fix-plugin-does-not-exist-notices.php index 55e84c4..de2cf14 100644 --- a/wp-fix-plugin-does-not-exist-notices.php +++ b/wp-fix-plugin-does-not-exist-notices.php @@ -3,7 +3,7 @@ * Plugin Name: Fix 'Plugin file does not exist' Notices * 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. - * Version: 2.2.2-stable + * Version: 2.2.3 * Author: Marcus Quinn & The WPALLSTARS Team * Author URI: https://www.wpallstars.com * License: GPL-2.0+ @@ -35,4 +35,4 @@ if (!defined('WPINC')) { require_once plugin_dir_path(__FILE__) . 'includes/plugin.php'; // Initialize the plugin -new WPALLSTARS\FixPluginDoesNotExistNotices\Plugin(__FILE__, '2.2.2-stable'); +new WPALLSTARS\FixPluginDoesNotExistNotices\Plugin(__FILE__, '2.2.3');