diff options
author | Joe Wilm <jwilm@users.noreply.github.com> | 2018-09-17 08:15:20 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-17 08:15:20 -0700 |
commit | cff58e9d683c44a34f37e628c7faaea4410ada74 (patch) | |
tree | e051a942190247faeab42757dd6a5f08db5a7cca /CHANGELOG.md | |
parent | 865727c062810e29fa33b5c04bb05510e7da3ddf (diff) | |
parent | 054e38e98d8f150b99b50fec9f679c3d23875a0a (diff) | |
download | alacritty-cff58e9d683c44a34f37e628c7faaea4410ada74.tar.gz alacritty-cff58e9d683c44a34f37e628c7faaea4410ada74.zip |
Merge pull request #1147 from jwilm/scrollbackv0.2.0
Scrollback
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md new file mode 100644 index 00000000..031a3b90 --- /dev/null +++ b/CHANGELOG.md @@ -0,0 +1,34 @@ +# 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] + +## 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 |