diff options
author | Kirill Chibisov <contact@kchibisov.com> | 2024-04-18 22:58:15 +0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-04-18 22:58:15 +0400 |
commit | d28868855afd769209a7ac81692cdbaa67be2905 (patch) | |
tree | 996b114011236e84bb988e1bfb58fe00a21206fd /CHANGELOG.md | |
parent | d4f2f8577f763df059653dfab733dfe6ddc06913 (diff) | |
download | alacritty-d28868855afd769209a7ac81692cdbaa67be2905.tar.gz alacritty-d28868855afd769209a7ac81692cdbaa67be2905.zip |
Fix window being focused by default
Winit explicitly states that the window is not focused by default and
the `Focused` event will deliver the state later on.
Also start adding notable changes to alacritty_terminal in its own
CHANGELOG.
Closes #7866.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fa9f0d65..b6e47476 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,8 +5,15 @@ The sections should follow the order `Packaging`, `Added`, `Changed`, `Fixed` an The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). +Notable changes to the `alacritty_terminal` crate are documented in its +[CHANGELOG](./alacritty_terminal/CHANGELOG.md). + ## 0.14.0-dev +### Fixed + +- New window being treated as focused when it's not on Wayland + ### Changed - Pressing `Alt` with unicode input will now add `ESC` like for ASCII input |