Changeset 3462974
- Timestamp:
- 02/16/2026 11:24:09 PM (7 weeks ago)
- Location:
- intufind
- Files:
-
- 34 added
- 3 edited
-
tags/1.1.0 (added)
-
tags/1.1.0/admin (added)
-
tags/1.1.0/admin/class-intufind-admin.php (added)
-
tags/1.1.0/admin/class-intufind-components.php (added)
-
tags/1.1.0/admin/css (added)
-
tags/1.1.0/admin/css/intufind-admin.css (added)
-
tags/1.1.0/admin/js (added)
-
tags/1.1.0/admin/js/intufind-admin.js (added)
-
tags/1.1.0/admin/partials (added)
-
tags/1.1.0/admin/partials/chat-display.php (added)
-
tags/1.1.0/admin/partials/recommendations-display.php (added)
-
tags/1.1.0/admin/partials/search-display.php (added)
-
tags/1.1.0/admin/partials/settings-display.php (added)
-
tags/1.1.0/admin/partials/status-display.php (added)
-
tags/1.1.0/admin/partials/sync-display.php (added)
-
tags/1.1.0/includes (added)
-
tags/1.1.0/includes/class-intufind-api.php (added)
-
tags/1.1.0/includes/class-intufind-chat-widget.php (added)
-
tags/1.1.0/includes/class-intufind-content-extractor.php (added)
-
tags/1.1.0/includes/class-intufind-exclusions.php (added)
-
tags/1.1.0/includes/class-intufind-list-columns.php (added)
-
tags/1.1.0/includes/class-intufind-mcp.php (added)
-
tags/1.1.0/includes/class-intufind-plugin.php (added)
-
tags/1.1.0/includes/class-intufind-recommendations-override.php (added)
-
tags/1.1.0/includes/class-intufind-search-override.php (added)
-
tags/1.1.0/includes/class-intufind-shortcodes.php (added)
-
tags/1.1.0/includes/class-intufind-sync-status.php (added)
-
tags/1.1.0/includes/class-intufind-sync.php (added)
-
tags/1.1.0/intufind.php (added)
-
tags/1.1.0/languages (added)
-
tags/1.1.0/languages/intufind.pot (added)
-
tags/1.1.0/readme.txt (added)
-
tags/1.1.0/uninstall.php (added)
-
trunk/includes/class-intufind-plugin.php (modified) (2 diffs)
-
trunk/includes/class-intufind-shortcodes.php (added)
-
trunk/intufind.php (modified) (2 diffs)
-
trunk/readme.txt (modified) (3 diffs)
Legend:
- Unmodified
- Added
- Removed
-
intufind/trunk/includes/class-intufind-plugin.php
r3461186 r3462974 95 95 */ 96 96 private $chat_widget = null; 97 98 /** 99 * Shortcodes handler instance. 100 * 101 * @var Intufind_Shortcodes|null 102 */ 103 private $shortcodes = null; 97 104 98 105 /** … … 146 153 $this->chat_widget = new Intufind_Chat_Widget( $this->api ); 147 154 $this->chat_widget->init(); 155 156 // Initialize shortcodes (frontend only, but shortcode registration is safe everywhere). 157 $this->shortcodes = new Intufind_Shortcodes(); 158 $this->shortcodes->init(); 148 159 } 149 160 -
intufind/trunk/intufind.php
r3462954 r3462974 4 4 * Plugin URI: https://intufind.com/integrations/wordpress 5 5 * Description: AI-powered search and chat for WordPress. Syncs your content to the cloud for semantic search, intelligent recommendations, and conversational AI. 6 * Version: 1. 0.86 * Version: 1.1.0 7 7 * Requires at least: 6.0 8 8 * Requires PHP: 8.0 … … 26 26 * Plugin constants. 27 27 */ 28 define( 'INTUFIND_VERSION', '1. 0.8' );28 define( 'INTUFIND_VERSION', '1.1.0' ); 29 29 define( 'INTUFIND_PLUGIN_FILE', __FILE__ ); 30 30 define( 'INTUFIND_PLUGIN_DIR', plugin_dir_path( __FILE__ ) ); -
intufind/trunk/readme.txt
r3462954 r3462974 5 5 Tested up to: 6.9 6 6 Requires PHP: 8.0 7 Stable tag: 1. 0.87 Stable tag: 1.1.0 8 8 WC tested up to: 9.6 9 9 License: GPLv2 or later … … 215 215 == Changelog == 216 216 217 = 1.1.0 = 218 * Added [intufind_search] shortcode for placing an inline search trigger button anywhere on the site 219 * Added intufind_search_button() template tag for theme developers 220 * Four trigger variants: default, compact, icon, and bar (Spotlight-style) 221 * Platform-aware keyboard shortcut badge with auto dark mode, high contrast, and reduced motion support 222 * CSS custom properties for easy styling overrides 223 * Improved floating search trigger accessibility (focus-visible, reduced motion, high contrast) 224 217 225 = 1.0.8 = 218 226 * Fixed orphan cleanup incorrectly deleting valid cloud documents when plan indexing limit is reached during sync … … 259 267 == Upgrade Notice == 260 268 269 = 1.1.0 = 270 New [intufind_search] shortcode for placing a search trigger button anywhere on your site. Supports multiple variants, dark mode, and keyboard shortcuts. 271 261 272 = 1.0.8 = 262 273 Fixed sync cleanup bug that could delete valid cloud documents when plan limit is reached, and PHP 8 error handling fix.
Note: See TracChangeset
for help on using the changeset viewer.