diff options
author | Phil Jones <philj56@gmail.com> | 2022-11-01 12:19:54 +0000 |
---|---|---|
committer | Phil Jones <philj56@gmail.com> | 2022-11-01 12:19:54 +0000 |
commit | 0b83f9adf66144c10adcb7b2b1aed7ac262daba5 (patch) | |
tree | d0b951a9d0448aef5d73bfc011e5fe48acbd1b83 | |
parent | b6c0d8ae889dbc9bbcbb11ef8189facd1c9b637d (diff) |
Version 0.7.0.
-rw-r--r-- | CHANGELOG.md | 27 | ||||
-rw-r--r-- | meson.build | 2 |
2 files changed, 28 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4521d6d..c25094e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,31 @@ # Changelog +## [0.7.0] - 2022-11-01 +### Added +- Added `include` option, allowing config files to include other files. +- Added `hide-input` and `hidden-character` options for sensitive input. +- Added `exclusive-zone` option, to control interaction with menu bars etc. +- Added `terminal` option to allow `tofi-drun` to launch terminal apps. +- Added a couple of extra keybindings. + +### Changed +- Searching is now Unicode aware, so case-insensitive matching of non-Latin + characters should work. +- Fuzzy matching will now use a simpler algorithm when matching lines more than + 100 characters in length to avoid slowdowns. +- By default, tofi will now refuse to start if another instance is already + running, preventing accidental double launches. This can be changed with the + `multi-instance` option. +- Tofi will now show up on top of fullscreen windows. + +### Fixed +- Keyboard shortcuts are now bound to physical keys rather than characters, so + should not change places when changing keyboard layouts. +- Fix crash when attempting to change the selection while no results are + displayed. +- Fixed a rare issue where input could become out of sync with the display. + + ## [0.6.0] - 2022-09-08 ### Warning - HiDPI config change In the [0.5.0] release, the `scale` option was added to enable scaling of pixel @@ -158,6 +184,7 @@ is how it should have been done from the start. ## [0.1.0] - 2022-06-27 Initial release. Good enough to use, but still some jank. +[0.7.0]: https://github.com/philj56/tofi/compare/v0.6.0...v0.7.0 [0.6.0]: https://github.com/philj56/tofi/compare/v0.5.0...v0.6.0 [0.5.0]: https://github.com/philj56/tofi/compare/v0.4.0...v0.5.0 [0.4.0]: https://github.com/philj56/tofi/compare/v0.3.1...v0.4.0 diff --git a/meson.build b/meson.build index 9183dcf..0f4c74d 100644 --- a/meson.build +++ b/meson.build @@ -1,7 +1,7 @@ project( 'tofi', 'c', - version: '0.6.0', + version: '0.7.0', license: 'MIT', meson_version: '>=0.61.0', default_options: [ |