diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-01-30 15:46:02 +0300 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2022-02-10 03:17:21 +0300 |
commit | 5bab2ad2d0b1f3827f55665fe7b1bac98b4726b6 (patch) | |
tree | 62c78d31b2a1073e05b579191fe68ee47655c828 /CHANGELOG.md | |
parent | cd0e5c2a17012ddaf273ed1841e4ca546257a6fd (diff) | |
download | alacritty-5bab2ad2d0b1f3827f55665fe7b1bac98b4726b6.tar.gz alacritty-5bab2ad2d0b1f3827f55665fe7b1bac98b4726b6.zip |
Use cell width to compute builtin font thickness
While using underline thickness could sound logical to draw other
lines most fonts don't make underlines thick compared to cell bounding
box if you increase font size. So instead we're using cell width to
scale builtin font nicely.
This commit also adjusts arcs drawing and alignment.
Fixes #5826.
Fixes #5821.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 5f48967f..fce012a9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,6 +11,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - Option `font.builtin_box_drawing` to disable the built-in font for drawing box characters +### Changed + +- Builtin font thickness is now based on cell width instead of underline thickness + ### Fixed - OSC 4 not handling `?` @@ -18,6 +22,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - OSC 104 not clearing colors when second parameter is empty - Builtin font lines not contiguous when `font.offset` is used - `font.glyph_offset` is no longer applied on builtin font +- Buili-in font arcs alignment ## 0.10.0 |