Skip to content

Commit b42422a

Browse files
committed
Version 0.6.0.
1 parent 0c1c890 commit b42422a

File tree

2 files changed

+32
-1
lines changed

2 files changed

+32
-1
lines changed

CHANGELOG.md

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,35 @@
11
# Changelog
22

3+
## [0.6.0] - 2022-09-08
4+
### Warning - HiDPI config change
5+
In the [0.5.0] release, the `scale` option was added to enable scaling of pixel
6+
values by the display's scale factor. In this release, the default value of
7+
`scale` has changed to be `true`, and fonts are no longer scaled if `scale` is
8+
set to `false`. This makes tofi's behaviour match that of e.g. Sway, and makes
9+
configs work more reliably on monitors with different scale factors.
10+
11+
If you use tofi on a HiDPI display, you may need to change your config's pixel
12+
values to make things look right again.
13+
14+
### Added
15+
- Added `require-match` option, to allow printing of input even when there are
16+
no matching results.
17+
- Added `prompt-padding` option for more flexible spacing between the prompt
18+
and other text.
19+
- Added a new example theme, dark-paper.
20+
21+
### Changed
22+
- The `scale` option now defaults to `true`, as noted above. The example themes
23+
have been updated to account for this change.
24+
- Spaces are now allowed as part of normal input. Similarly to dmenu, tofi will
25+
split the input into words, and only show results for which every word
26+
matches individually.
27+
- Split `tofi(5)` manpage into behaviour and style options to make finding
28+
options easier.
29+
30+
### Fixed
31+
- Fixed build failure when link-time optimisation is disabled.
32+
333
## [0.5.0] - 2022-08-21
434
### Warning - HiDPI config change
535
In previous versions of tofi, pixel values were always treated as device
@@ -128,6 +158,7 @@ is how it should have been done from the start.
128158
## [0.1.0] - 2022-06-27
129159
Initial release. Good enough to use, but still some jank.
130160

161+
[0.6.0]: https://github.com/philj56/tofi/compare/v0.5.0...v0.6.0
131162
[0.5.0]: https://github.com/philj56/tofi/compare/v0.4.0...v0.5.0
132163
[0.4.0]: https://github.com/philj56/tofi/compare/v0.3.1...v0.4.0
133164
[0.3.1]: https://github.com/philj56/tofi/compare/v0.3.0...v0.3.1

meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
project(
22
'tofi',
33
'c',
4-
version: '0.5.0',
4+
version: '0.6.0',
55
license: 'MIT',
66
default_options: [
77
'c_std=c2x',

0 commit comments

Comments
 (0)