diff options
author | Kyle Rooker <rookerka@gmail.com> | 2018-12-12 08:12:59 -0600 |
---|---|---|
committer | Christian Duerr <chrisduerr@users.noreply.github.com> | 2018-12-12 14:12:59 +0000 |
commit | 0a73312c3d8299e4ecad166709694fe9278bffc1 (patch) | |
tree | db0cfd08f3d1219dcc92c1ccb06be4493685bc90 /CHANGELOG.md | |
parent | 217ad9ec285b4923de1790b0976c8c793039c994 (diff) | |
download | alacritty-0a73312c3d8299e4ecad166709694fe9278bffc1.tar.gz alacritty-0a73312c3d8299e4ecad166709694fe9278bffc1.zip |
Fix color issues in ncurses programs
Certain programs like `htop` have problems with the number
of color pairs which are specified by the Alacritty terminfo
file.
By reducing the maximum number of color pairs to the value
which is specified by xterm-256color, these issues are
resolved.
This fixes #1862.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3a27cc8a..a8f44a52 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,12 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [Unreleased] + +### Fixed + +- Fix color issue in ncurses programs by updating terminfo pairs from 0x10000 to 0x7FFF + ## Version 0.2.4 ### Added |