Added
#743 by @CyanVoxel
Added "Smartcase" and Globless Path Search
-
path: temp
: Returns all paths that have "temp" (Case insensitive) somewhere in the name. -
path: Temp
: Returns all paths that have "Temp" (Case sensitive) somewhere in the name.
Glob Patterns w/ Smartcase
-
path: *temp*
: Returns all paths that have "temp" (Case insensitive) somewhere in the name. -
path: *Temp*
: Returns all paths that have "Temp" (Case sensitive) somewhere in the name. -
path: temp*
: Returns all paths that start with "temp" (Case insensitive) somewhere in the name. -
path: Temp*
: Returns all paths that start with "Temp" (Case sensitive) somewhere in the name. -
path: *temp
: Returns all paths that end with "temp" (Case insensitive) somewhere in the name. -
path: *TEmP
: Returns all paths that end with "TEmP" (Case sensitive) somewhere in the name.
#788 by @CyanVoxel
- Added a "View Limit" dropdown to tag search boxes to limit the number of on-screen tags. Previously this limit was hardcoded to 100, but now options range from 25 to unlimited.
Changed
- fix(ui): expand usage of esc and enter for modals by @CyanVoxel in #793
- perf: optimize query methods and reduce preview panel updates by @CyanVoxel in #794
#788 by @CyanVoxel
- Improved performance of tag search boxes, including the tag manager
Fixed
- fix(ui): hide library actions when no library is open by @CyanVoxel in #787
- feat: port file trashing (#409) to v9.5 by @CyanVoxel in #792
Docs
- Added references to alternative POSIX shells, as well as pyenv to CONTRIBUTING.md by @ChloeZamorano in #791
Still coming in v9.5.0
The following features and fixes are still to come in either the next pre-release or the full v9.5.0 release:
- User-created tag colors
- In-app option to select language
- Fix for back/next button states
New Contributors
- @ChloeZamorano made their first contribution in #791
Full Changelog: v9.5.0-pr2...v9.5.0-pr3