Skip to content

Commit 2f29475

Browse files
committed
Version 0.9.0.
1 parent cfab8ef commit 2f29475

File tree

2 files changed

+31
-1
lines changed

2 files changed

+31
-1
lines changed

CHANGELOG.md

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

3+
## [0.9.0] - 2023-04-09
4+
### Added
5+
- Added support for a text cursor. This can be enabled with the `text-cursor`
6+
option, the style of cursor chosen with `text-cursor-style`, and themed
7+
similarly to other text.
8+
- Added support for fractional scaling, correcting the behaviour of percentage
9+
sizes when fractional scaling is used.
10+
- Added Ctrl-n, Ctrl-p, Page-Up and Page-Down keybindings.
11+
- Added `auto-accept-single` option, to automatically accept the last remaining
12+
result when there is only one.
13+
14+
### Changed
15+
- The `font` option now performs home path substitution for paths starting with
16+
`~/`.
17+
18+
### Fixed
19+
- Fixed some more potential errors from malformed config files.
20+
- Fixed some potential memory leaks when generating caches.
21+
- Fixed rounded corners when a background padding of -1 is specified.
22+
- Fixed broken text rendering with some versions of Harfbuzz.
23+
- Fixed some man page typos.
24+
25+
26+
## [0.8.1] - 2022-12-01
27+
### Fixed
28+
- Stop debug logs printing in release builds.
29+
30+
331
## [0.8.0] - 2022-12-01
432
### Deprecated
533
Text styling has been overhauled in this update, and as a result the
@@ -239,6 +267,8 @@ is how it should have been done from the start.
239267
## [0.1.0] - 2022-06-27
240268
Initial release. Good enough to use, but still some jank.
241269

270+
[0.9.0]: https://github.com/philj56/tofi/compare/v0.8.1...v0.9.0
271+
[0.8.1]: https://github.com/philj56/tofi/compare/v0.8.0...v0.8.1
242272
[0.8.0]: https://github.com/philj56/tofi/compare/v0.7.0...v0.8.0
243273
[0.7.0]: https://github.com/philj56/tofi/compare/v0.6.0...v0.7.0
244274
[0.6.0]: https://github.com/philj56/tofi/compare/v0.5.0...v0.6.0

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.8.1',
4+
version: '0.9.0',
55
license: 'MIT',
66
meson_version: '>=0.61.0',
77
default_options: [

0 commit comments

Comments
 (0)