diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2022-01-30 15:46:02 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-01-30 15:46:02 +0300 |
commit | 5459492eaef9926419def7d85ad18b6c895a1568 (patch) | |
tree | 926eae76ba72579a1a36e0865b2db9f523a0b7dd /CHANGELOG.md | |
parent | efae2cc80cb231081ce393fb922e6dcfc458260b (diff) | |
download | alacritty-5459492eaef9926419def7d85ad18b6c895a1568.tar.gz alacritty-5459492eaef9926419def7d85ad18b6c895a1568.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 | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index a397984c..edcdc07e 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). ### Changed - The `--help` output was reworked with a new colorful syntax +- Builtin font thickness is now based on cell width instead of underline thickness ### Fixed @@ -26,6 +27,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 |