diff --git a/.wiki/Changelog.md b/.wiki/Changelog.md index ecf2458..c476dbd 100644 --- a/.wiki/Changelog.md +++ b/.wiki/Changelog.md @@ -2,6 +2,13 @@ This page documents all notable changes to the "Fix 'Plugin file does not exist' Notices" plugin. +## Version 2.4.0 (2025-04-17) +- Added: Comprehensive documentation for working in multi-repository workspaces +- Added: Guidelines to prevent feature hallucination in multi-repo environments +- Added: New .ai-workflows/multi-repo-workspace.md file with detailed best practices +- Improved: AI assistant documentation with repository context verification +- Improved: Wiki documentation to accurately reflect plugin functionality + ## Version 2.3.1 (2025-04-16) - Updated: Tested compatibility with WordPress 6.8 - Improved: Documentation to reflect WordPress 6.8 compatibility diff --git a/CHANGELOG.md b/CHANGELOG.md index a3d5106..42ea16b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ All notable changes to this project should be documented both here and in the main Readme files. +#### [2.4.0] - 2025-04-17 +#### Added +- Comprehensive documentation for working in multi-repository workspaces +- Guidelines to prevent feature hallucination in multi-repo environments +- New .ai-workflows/multi-repo-workspace.md file with detailed best practices + +#### Improved +- AI assistant documentation with repository context verification +- Wiki documentation to accurately reflect plugin functionality + #### [2.3.1] - 2025-04-16 #### Updated - Tested compatibility with WordPress 6.8 diff --git a/README.md b/README.md index 9c78da4..8a1d517 100644 --- a/README.md +++ b/README.md @@ -234,6 +234,13 @@ For more information on Git Updater integration, see the [Git Updater Required H ## Changelog +### 2.4.0 +* Added: Comprehensive documentation for working in multi-repository workspaces +* Added: Guidelines to prevent feature hallucination in multi-repo environments +* Added: New .ai-workflows/multi-repo-workspace.md file with detailed best practices +* Improved: AI assistant documentation with repository context verification +* Improved: Wiki documentation to accurately reflect plugin functionality + ### 2.3.1 * Updated: Tested compatibility with WordPress 6.8 * Improved: Documentation to reflect WordPress 6.8 compatibility diff --git a/languages/wp-fix-plugin-does-not-exist-notices.pot b/languages/wp-fix-plugin-does-not-exist-notices.pot index 7c43e9b..01c6f9b 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.3.1\n" +"Project-Id-Version: Fix 'Plugin file does not exist' Notices 2.4.0\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-16T00:00:00+00:00\n" +"POT-Creation-Date: 2025-04-17T00: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 bfd4d8b..5a2181a 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.8 Requires PHP: 7.0 -Stable tag: 2.3.1 +Stable tag: 2.4.0 License: GPL-2.0+ License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -179,6 +179,13 @@ Manually editing the WordPress database is risky and requires technical knowledg == Changelog == += 2.4.0 = +* Added: Comprehensive documentation for working in multi-repository workspaces +* Added: Guidelines to prevent feature hallucination in multi-repo environments +* Added: New .ai-workflows/multi-repo-workspace.md file with detailed best practices +* Improved: AI assistant documentation with repository context verification +* Improved: Wiki documentation to accurately reflect plugin functionality + = 2.3.1 = * Updated: Tested compatibility with WordPress 6.8 * Improved: Documentation to reflect WordPress 6.8 compatibility diff --git a/wp-fix-plugin-does-not-exist-notices.php b/wp-fix-plugin-does-not-exist-notices.php index 7180c0d..8b6c84c 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.3.1 + * Version: 2.4.0 * Author: Marcus Quinn & The WPALLSTARS Team * Author URI: https://www.wpallstars.com * License: GPL-2.0+ @@ -36,4 +36,4 @@ require_once plugin_dir_path(__FILE__) . 'includes/plugin.php'; // Initialize the plugin // This is a test change for our new workflow -new WPALLSTARS\FixPluginDoesNotExistNotices\Plugin(__FILE__, '2.3.1'); +new WPALLSTARS\FixPluginDoesNotExistNotices\Plugin(__FILE__, '2.4.0');