Plugin Directory

Changeset 3462974


Ignore:
Timestamp:
02/16/2026 11:24:09 PM (7 weeks ago)
Author:
intufind
Message:

Release intufind v1.1.0

Location:
intufind
Files:
34 added
3 edited

Legend:

Unmodified
Added
Removed
  • intufind/trunk/includes/class-intufind-plugin.php

    r3461186 r3462974  
    9595     */
    9696    private $chat_widget = null;
     97
     98    /**
     99     * Shortcodes handler instance.
     100     *
     101     * @var Intufind_Shortcodes|null
     102     */
     103    private $shortcodes = null;
    97104
    98105    /**
     
    146153        $this->chat_widget = new Intufind_Chat_Widget( $this->api );
    147154        $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();
    148159    }
    149160
  • intufind/trunk/intufind.php

    r3462954 r3462974  
    44 * Plugin URI: https://intufind.com/integrations/wordpress
    55 * 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.8
     6 * Version: 1.1.0
    77 * Requires at least: 6.0
    88 * Requires PHP: 8.0
     
    2626 * Plugin constants.
    2727 */
    28 define( 'INTUFIND_VERSION', '1.0.8' );
     28define( 'INTUFIND_VERSION', '1.1.0' );
    2929define( 'INTUFIND_PLUGIN_FILE', __FILE__ );
    3030define( 'INTUFIND_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • intufind/trunk/readme.txt

    r3462954 r3462974  
    55Tested up to: 6.9
    66Requires PHP: 8.0
    7 Stable tag: 1.0.8
     7Stable tag: 1.1.0
    88WC tested up to: 9.6
    99License: GPLv2 or later
     
    215215== Changelog ==
    216216
     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
    217225= 1.0.8 =
    218226* Fixed orphan cleanup incorrectly deleting valid cloud documents when plan indexing limit is reached during sync
     
    259267== Upgrade Notice ==
    260268
     269= 1.1.0 =
     270New [intufind_search] shortcode for placing a search trigger button anywhere on your site. Supports multiple variants, dark mode, and keyboard shortcuts.
     271
    261272= 1.0.8 =
    262273Fixed 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.