Improvements
Accurate Match Highlighting in Find Results
When using the Find feature, the exact matched text within cells is now highlighted with a darker background color.
Related issues: #83
SQL Console: Simplified File Path References
You can now reference CSV files using simpler path formats in SQL queries.
Previously, files required the @file: prefix:
-- Before: Required @file: prefix
SELECT * FROM "@file:/path/to/data.csv"Now you can use direct file paths or file:// URLs:
-- Direct file path
SELECT * FROM "/path/to/data.csv"
-- file:// URL format
SELECT * FROM "file:///path/to/data.csv"This makes it easier to copy-paste file paths directly into your queries.
Other Improvements
- Smarter Header Row Detection - Improved auto-detection logic for header rows, especially for files where headers appear after initial metadata rows.
- Performance - Faster startup time through lazy loading of drag-and-drop and SQL parsing components.