Version 2.2.5 - Improve documentation for developer preferences memory file

This commit is contained in:
2025-04-14 23:30:07 +01:00
parent e3960f8514
commit b02151ac2e
7 changed files with 24 additions and 8 deletions

View File

@ -14,9 +14,9 @@ When submitting a plugin to WordPress.org, you'll work with an SVN repository th
banner-1544x500.png banner-1544x500.png
screenshot-1.png screenshot-1.png
/tags/ # Contains tagged releases /tags/ # Contains tagged releases
/2.2.3/ /2.2.5/
[plugin files] [plugin files]
/2.2.2-stable/ /2.2.4/
[plugin files] [plugin files]
/trunk/ # Contains the current version of the plugin /trunk/ # Contains the current version of the plugin
[plugin files] [plugin files]

View File

@ -53,9 +53,9 @@ When submitting to WordPress.org, your SVN repository will have this structure:
banner-1544x500.png banner-1544x500.png
screenshot-1.png screenshot-1.png
/tags/ /tags/
/2.2.3/ /2.2.5/
[plugin files] [plugin files]
/2.2.2-stable/ /2.2.4/
[plugin files] [plugin files]
/trunk/ /trunk/
[current plugin files] [current plugin files]

View File

@ -1,5 +1,11 @@
All notable changes to this project should be documented both here and in the main Readme files. All notable changes to this project should be documented both here and in the main Readme files.
#### [2.2.5] - 2025-04-14
#### Added
- Documentation for the developer preferences memory file in .ai-workflows/
- Improved AI assistant instructions for maintaining developer preferences
- Updated version numbers across all files for consistency
#### [2.2.4] - 2025-04-14 #### [2.2.4] - 2025-04-14
#### Added #### Added
- Developer preferences memory file for AI assistants - Developer preferences memory file for AI assistants

View File

@ -234,6 +234,11 @@ For more information on Git Updater integration, see the [Git Updater Required H
## Changelog ## Changelog
### 2.2.5
* Added: Documentation for the developer preferences memory file in .ai-workflows/
* Improved: AI assistant instructions for maintaining developer preferences
* Updated: Version numbers across all files for consistency
### 2.2.4 ### 2.2.4
* Added: Developer preferences memory file for AI assistants * Added: Developer preferences memory file for AI assistants
* Improved: AI assistant documentation with instructions for maintaining developer preferences * Improved: AI assistant documentation with instructions for maintaining developer preferences

View File

@ -2,7 +2,7 @@
# This file is distributed under the GPL-2.0+. # This file is distributed under the GPL-2.0+.
msgid "" msgid ""
msgstr "" msgstr ""
"Project-Id-Version: Fix 'Plugin file does not exist' Notices 2.2.4\n" "Project-Id-Version: Fix 'Plugin file does not exist' Notices 2.2.5\n"
"Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-fix-plugin-does-not-exist-notices\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/wp-fix-plugin-does-not-exist-notices\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n" "Language-Team: LANGUAGE <LL@li.org>\n"

View File

@ -5,7 +5,7 @@ Tags: plugins, missing plugins, cleanup, error fix, admin tools, plugin file doe
Requires at least: 5.0 Requires at least: 5.0
Tested up to: 6.7.2 Tested up to: 6.7.2
Requires PHP: 7.0 Requires PHP: 7.0
Stable tag: 2.2.4 Stable tag: 2.2.5
License: GPL-2.0+ License: GPL-2.0+
License URI: https://www.gnu.org/licenses/gpl-2.0.html License URI: https://www.gnu.org/licenses/gpl-2.0.html
@ -179,6 +179,11 @@ Manually editing the WordPress database is risky and requires technical knowledg
== Changelog == == Changelog ==
= 2.2.5 =
* Added: Documentation for the developer preferences memory file in .ai-workflows/
* Improved: AI assistant instructions for maintaining developer preferences
* Updated: Version numbers across all files for consistency
= 2.2.4 = = 2.2.4 =
* Added: Developer preferences memory file for AI assistants * Added: Developer preferences memory file for AI assistants
* Improved: AI assistant documentation with instructions for maintaining developer preferences * Improved: AI assistant documentation with instructions for maintaining developer preferences

View File

@ -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.2.4 * Version: 2.2.5
* Author: Marcus Quinn & The WPALLSTARS Team * Author: Marcus Quinn & The WPALLSTARS Team
* Author URI: https://www.wpallstars.com * Author URI: https://www.wpallstars.com
* License: GPL-2.0+ * License: GPL-2.0+
@ -35,4 +35,4 @@ if (!defined('WPINC')) {
require_once plugin_dir_path(__FILE__) . 'includes/plugin.php'; require_once plugin_dir_path(__FILE__) . 'includes/plugin.php';
// Initialize the plugin // Initialize the plugin
new WPALLSTARS\FixPluginDoesNotExistNotices\Plugin(__FILE__, '2.2.4'); new WPALLSTARS\FixPluginDoesNotExistNotices\Plugin(__FILE__, '2.2.5');