diff options
author | Daniel Eklöf <daniel@ekloef.se> | 2018-09-24 21:06:12 +0200 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-09-24 19:06:12 +0000 |
commit | ec3a80427b717bb13d56c3031f4195bdae9c011a (patch) | |
tree | 85f9119f88c2dfe56d8839150fc136623e14c624 /CHANGELOG.md | |
parent | 3d7e88e8a975f40996aaa71d951842db6f2fccbb (diff) | |
download | alacritty-ec3a80427b717bb13d56c3031f4195bdae9c011a.tar.gz alacritty-ec3a80427b717bb13d56c3031f4195bdae9c011a.zip |
Add standalone terminfo definition
This replaces the current definitions, which depend on the system's
'xterm-256color' terminfo definition with the `alacritty` and
`alacritty-direct` definitions.
The new definitions are completely standalone.
The default `TERM` value has been changed to be dynamically
set based on the definitions installed on the system. Alacritty will
try to use the `alacritty` definition first and fall back to
`xterm-256color` if the `alacritty` definition is not present.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index f18f46c6..72e5edbb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -17,12 +17,22 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - `buttonless` - Similar to transparent but also removed the buttons. - Add support for changing the colors from 16 to 256 in the `indexed_colors` config section - Add `save_to_clipboard` configuration option for copying selected text to the system clipboard +- New terminfo entry, `alacritty-direct`, that advertises 24-bit color support ### Changed - Inverse/Selection color is now modelled after XTerm/VTE instead of URxvt to improve consistency - First click on unfocused Alacritty windows is no longer ignored on platforms other than macOS - Reduce memory usage significantly by only initializing part of the scrollback buffer at startup +- The `alacritty` terminfo entry no longer requires the `xterm` definition to be + present on the system +- The default `TERM` value is no longer static; the `alacritty` entry is used if + available, otherwise the `xterm-256color` entry is used instead + +### Removed + +- The terminfo entry `alacritty-256color`. It is replaced by the `alacritty` + entry (which also advertises 256 colors) ### Fixed |