Version 1.10.0
March 22, 2026
Added
- Related Entries Sidebar Panel: A new panel in the entry edit sidebar that automatically loads all related entries when the page opens — no button click required. Shows both outgoing links (entries this entry links to) and incoming backlinks (entries that link to this entry), grouped by section. Collapsible, with collapse state remembered per entry per session.
- Sidebar Panel Position setting: Choose where the panel appears in the entry sidebar — Top (before all metadata), After Status, or Bottom (default).
- Section grouping in Related Entries modal: Results in the toolbar button modal are now grouped by section, matching the sidebar panel layout.
Changed
- Related Entries toolbar button defaults to off: The sidebar panel is now the primary way to view related entries, so the toolbar button (
showRelatedEntries) is disabled by default. ⚠️ Existing installations that had this enabled will need to re-enable it under Settings → Quick Search → "Show Related Entries Button". - Related entries fetch timeout raised to 60 seconds: The modal overlay now uses a 60-second timeout instead of the generic 10-second default, preventing false timeouts on large sites with complex content structures.
Fixed
- Related Entries modal was empty in Craft 5: The toolbar button was passing the provisional draft's element ID instead of the canonical entry ID. Since Craft 5 always creates a provisional draft when opening an entry for editing, the modal was querying relations for the draft element (which has none) instead of the canonical entry. Now uses
getCanonicalId(). - Severe performance issue in incoming relation search: The previous implementation iterated over every entry on the site and made additional queries per entry to search its content fields — an N+1 query pattern that could issue hundreds of DB queries on larger sites. Rewritten to use a single query with OR conditions against
elements_sites.content, the JSON blob where Craft 5 stores all field content. - Exceptions in raw content search are now logged to
storage/logs/quick-search.loginstead of being silently swallowed.
Translations
- New settings strings added to all 20 supported language files (
en+ 19 others with English placeholders, ready for localization).
Version 1.9.1
March 4, 2026
Fixed
- "All" option in Enabled Search Types and Searchable Sections settings now correctly shows as selected on page load (fresh install and after saving)
- Saving "All" in either checkbox-select field now stores
nullinstead of an empty/asterisk array, keeping the data clean and consistent - Section filter dropdown in the header search now only shows sections that are enabled in the Searchable Sections setting
Version 1.9.0
February 23, 2026
Added
- Theme mode setting (Auto / Light / Dark) in plugin settings — sets the color theme for all users
- Per-user theme override in My Account → Preferences — each user can override the site default for their own account, auto-saves without a page reload and applies instantly
Version 1.5.0
February 3, 2026
Changed
- Improved entry search performance by using direct title matching instead of search index
Version 1.4.0
February 2, 2026
Added
- Current entry shown at top of favorites dropdown with "Add to favorites" button
- Ability to favorite entries directly without visiting them first
Changed
- Show Related Entries setting now defaults to enabled
- Favorites limit default increased to 25
Version 1.3.0
February 2, 2026
Fixed
- Made migrations idempotent to handle both fresh installs and upgrades correctly
Version 1.2.0
February 1, 2026
Added
- Multi-site support with site filter dropdown
- Site badges on entries when viewing all sites
- Configurable search results limit setting
- Fetch timeouts (10 seconds) to prevent UI freezes
- Loading indicators for history and favorites popups
- Search request cancellation to prevent race conditions
Changed
- Improved error handling throughout
- Back button now considers both entry ID and site
Fixed
- Site context now correctly tracked from URL query parameter
- History entries now properly track which site was visited
Version 1.1.0
January 31, 2026
Added
- Favorites system with star button
- Entry outline navigation popup
- Related entries view (optional)
- Compact mode for denser display
- Clear history functionality
- 20 language translations
Changed
- Simplified section filter settings (removed include/exclude mode)
- Default favorites limit increased to 20
Version 1.0.0
January 30, 2026
Added
- Initial release
- Global header search integration
- Entry search by title with section filtering
- Section dropdown filter in search UI
- Visit history tracking (configurable limit per user)
- History popup with search functionality
- Keyboard navigation support (arrow keys, Enter, Escape)
- Automatic entry visit tracking on edit pages
- Permission-aware search and history
- Configurable settings:
- History limit
- Show/hide section filter
- Searchable sections
- Minimum search length
- Debounce delay
- Database migrations with proper indexes
- AJAX API endpoints for search and history
- Responsive design matching Craft CP styles