mirror of
https://github.com/alacritty/alacritty.git
synced 2024-11-03 04:34:21 -05:00
35ea0cded2
Set `COLORTERM` to `truecolor` in order for applications to be able to detect that alacritty supports 24-bit colors. See https://gist.github.com/XVilka/8346728 for more details. Closes #1526.
42 lines
1.6 KiB
Markdown
42 lines
1.6 KiB
Markdown
# Changelog
|
|
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]
|
|
|
|
### Added
|
|
|
|
- Set the environment variable `COLORTERM="truecolor"` to advertise 24-bit color support
|
|
|
|
### Changed
|
|
|
|
- First click on unfocused Alacritty windows is no longer ignored on platforms other than macOS
|
|
|
|
## Version 0.2.0
|
|
|
|
### Added
|
|
|
|
- Add a scrollback history buffer (10_000 lines by default)
|
|
- CHANGELOG has been added for documenting relevant user-facing changes
|
|
- Add `ClearHistory` key binding action and the `Erase Saved Lines` control sequence
|
|
- When growing the window height, Alacritty will now try to load additional lines out of the
|
|
scrollback history
|
|
- Support the dim foreground color (`echo -e '\033[2mDimmed Text'`)
|
|
- Add support for the LCD-V pixel mode (vertical screens)
|
|
- Pressing enter on the numpad should now insert a newline
|
|
- The mouse bindings now support keyboard modifiers (shift/ctrl/alt/super)
|
|
- Add support for the bright foreground color
|
|
|
|
### Changed
|
|
|
|
- Multiple key/mouse bindings for a single key will now all be executed instead of picking one and
|
|
ignoring the rest
|
|
- Improve text scrolling performance (affects applications like `yes`, not scrolling the history)
|
|
|
|
### Fixed
|
|
|
|
- Clear the visible region when the RIS escape sequence (`echo -ne '\033c'`) is received
|
|
- Prevent logger from crashing Alacritty when stdout/stderr is not available
|
|
- Fix a crash when sending the IL escape sequence with a large number of lines
|