diff --git a/.aiconfig b/.aiconfig index 0d6f231..4c24f14 100644 --- a/.aiconfig +++ b/.aiconfig @@ -3,15 +3,7 @@ "description": "WordPress plugin to fix 'Plugin file does not exist' notices", "schema_version": "1.0.0", "ignore_patterns": [ - "*.code-workspace", - ".history/", - ".ionide/", - ".ai-prompts/", - ".completions/", - ".chat-history/", - "*.docx", - "*.xlsx", - "*.pptx" + ".ai-tmp/" ], "models": { "default": "gpt-4", diff --git a/.augmentignore b/.augmentignore index f910eab..5156092 100644 --- a/.augmentignore +++ b/.augmentignore @@ -1,26 +1,14 @@ # Augment ignore file # Additional patterns beyond .gitignore that should be ignored by Augment's context engine -# IDE and editor files not in .gitignore -*.code-workspace -.history/ -.ionide/ - -# Temporary files that might not be in .gitignore +# Temporary files .temp-* -# WordPress specific files that might not be in .gitignore +# WordPress specific files wp-content/advanced-cache.php wp-content/object-cache.php wp-content/db.php wp-content/debug.log -# Large files that might be missed by .gitignore -*.docx -*.xlsx -*.pptx - -# AI-specific files -.ai-prompts/ -.completions/ -.chat-history/ +# Augment specific +.augment-cache/ diff --git a/.clinerc b/.clinerc index 74db2f0..15f3397 100644 --- a/.clinerc +++ b/.clinerc @@ -1,12 +1,6 @@ { "ignore": [ - ".cline/", - ".cline-cache/", - "*.code-workspace", - ".history/", - ".ai-prompts/", - ".completions/", - ".chat-history/" + ".cline-tmp/" ], "model": "gpt-4", "temperature": 0.2 diff --git a/.cursorignore b/.cursorignore index 94a2c82..b77b191 100644 --- a/.cursorignore +++ b/.cursorignore @@ -1,15 +1,5 @@ # Cursor ignore file # Additional patterns beyond .gitignore for Cursor's AI context -# Cursor-specific files -.cursor/ -.cursor-cache/ - -# IDE and editor files not in .gitignore -*.code-workspace -.history/ - -# AI-specific files -.ai-prompts/ -.completions/ -.chat-history/ +# Cursor-specific temporary files +.cursor-tmp/ diff --git a/.gitignore b/.gitignore index 38a9654..9b4cc54 100644 --- a/.gitignore +++ b/.gitignore @@ -81,6 +81,33 @@ debug.log *.3ds *.fbx +# Office documents +*.docx +*.xlsx +*.pptx +*.ppt +*.doc +*.xls +*.pdf + +# IDE specific +*.code-workspace +.history/ +.ionide/ + +# AI tools +.ai-prompts/ +.completions/ +.chat-history/ +.cursor/ +.cursor-cache/ +.v0/ +.v0-cache/ +.windsurf/ +.windsurf-cache/ +.cline/ +.cline-cache/ + # WordPress testing .phpunit.result.cache .phpcs.cache diff --git a/.v0ignore b/.v0ignore index 2a641a2..fcffc06 100644 --- a/.v0ignore +++ b/.v0ignore @@ -1,15 +1,5 @@ # v0 ignore file # Additional patterns beyond .gitignore for v0's context -# v0-specific files -.v0/ -.v0-cache/ - -# IDE and editor files not in .gitignore -*.code-workspace -.history/ - -# AI-specific files -.ai-prompts/ -.completions/ -.chat-history/ +# v0-specific temporary files +.v0-tmp/ diff --git a/.windsurfignore b/.windsurfignore index 030a93b..06c5ea6 100644 --- a/.windsurfignore +++ b/.windsurfignore @@ -1,15 +1,5 @@ # Windsurf ignore file # Additional patterns beyond .gitignore for Windsurf's context -# Windsurf-specific files -.windsurf/ -.windsurf-cache/ - -# IDE and editor files not in .gitignore -*.code-workspace -.history/ - -# AI-specific files -.ai-prompts/ -.completions/ -.chat-history/ +# Windsurf-specific temporary files +.windsurf-tmp/ diff --git a/CHANGELOG.md b/CHANGELOG.md index 744d9fc..e5de47d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,13 @@ All notable changes to this project will be documented in this file. +## [1.6.19] - 2024-05-17 +### Changed +- Consolidated common ignore patterns into .gitignore +- Simplified AI IDE configuration files to only include tool-specific patterns +- Improved organization of ignore patterns for better maintainability +- Added more file types to .gitignore for comprehensive coverage + ## [1.6.18] - 2024-05-17 ### Changed - Optimized AI IDE configuration files to only include patterns not in .gitignore diff --git a/README.md b/README.md index 360bba1..d87496b 100644 --- a/README.md +++ b/README.md @@ -122,6 +122,12 @@ The plugin works by: ## Changelog +### 1.6.19 +* Consolidated common ignore patterns into .gitignore +* Simplified AI IDE configuration files to only include tool-specific patterns +* Improved organization of ignore patterns for better maintainability +* Added more file types to .gitignore for comprehensive coverage + ### 1.6.18 * Optimized AI IDE configuration files to only include patterns not in .gitignore * Improved efficiency of ignore files for better AI context management diff --git a/fix-plugin-does-not-exist-notices.php b/fix-plugin-does-not-exist-notices.php index 89eec06..c282093 100644 --- a/fix-plugin-does-not-exist-notices.php +++ b/fix-plugin-does-not-exist-notices.php @@ -13,7 +13,7 @@ * Plugin Name: Fix 'Plugin file does not exist.' Notices * Plugin URI: https://wordpress.org/plugins/fix-plugin-does-not-exist-notices/ * Description: Adds missing plugins to the plugins list with a "Remove Reference" link so you can permanently clean up invalid plugin entries and remove error notices. By Marcus Quinn (marcusquinn.com) & WP ALLSTARS (wpallstars.com). - * Version: 1.6.18 + * Version: 1.6.19 * Author: Marcus Quinn & WP ALLSTARS * Author URI: https://www.wpallstars.com * License: GPL-2.0+ @@ -48,7 +48,7 @@ if ( ! defined( 'ABSPATH' ) ) { } // Define plugin constants -define( 'FPDEN_VERSION', '1.6.18' ); +define( 'FPDEN_VERSION', '1.6.19' ); define( 'FPDEN_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); define( 'FPDEN_PLUGIN_URL', plugin_dir_url( __FILE__ ) ); define( 'FPDEN_PLUGIN_FILE', __FILE__ ); diff --git a/languages/fix-plugin-does-not-exist-notices.pot b/languages/fix-plugin-does-not-exist-notices.pot index fdac606..0138485 100644 --- a/languages/fix-plugin-does-not-exist-notices.pot +++ b/languages/fix-plugin-does-not-exist-notices.pot @@ -2,7 +2,7 @@ # This file is distributed under the GPL-2.0+. msgid "" msgstr "" -"Project-Id-Version: Fix 'Plugin file does not exist.' Notices 1.6.18\n" +"Project-Id-Version: Fix 'Plugin file does not exist.' Notices 1.6.19\n" "Report-Msgid-Bugs-To: https://wordpress.org/support/plugin/fix-plugin-does-not-exist-notices\n" "Last-Translator: FULL NAME \n" "Language-Team: LANGUAGE \n" diff --git a/readme.txt b/readme.txt index 03f67a2..80320f5 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.4 Requires PHP: 7.0 -Stable tag: 1.6.18 +Stable tag: 1.6.19 License: GPL-2.0+ License URI: https://www.gnu.org/licenses/gpl-2.0.html @@ -91,6 +91,12 @@ Although this plugin consumes minimal disk space, and doesn't run unless you are == Changelog == += 1.6.19 = +* Consolidated common ignore patterns into .gitignore +* Simplified AI IDE configuration files to only include tool-specific patterns +* Improved organization of ignore patterns for better maintainability +* Added more file types to .gitignore for comprehensive coverage + = 1.6.18 = * Optimized AI IDE configuration files to only include patterns not in .gitignore * Improved efficiency of ignore files for better AI context management @@ -288,6 +294,9 @@ Although this plugin consumes minimal disk space, and doesn't run unless you are == Upgrade Notice == += 1.6.19 = +Improved organization of ignore patterns with consolidated .gitignore and simplified AI IDE configuration files. + = 1.6.18 = Optimized AI IDE configuration files for better efficiency and compatibility.