diff options
author | Christian Duerr <contact@christianduerr.com> | 2023-03-25 00:07:20 +0100 |
---|---|---|
committer | Kirill Chibisov <contact@kchibisov.com> | 2023-05-07 00:13:05 +0300 |
commit | d9131c59e0ca491d16f428c96c32885a3ee8314e (patch) | |
tree | 895b099d523f5107b4e546d3b5fce929d476cf17 /CHANGELOG.md | |
parent | 16e18f2fffc8b457522db3f6cae6ea719d401791 (diff) | |
download | alacritty-d9131c59e0ca491d16f428c96c32885a3ee8314e.tar.gz alacritty-d9131c59e0ca491d16f428c96c32885a3ee8314e.zip |
Fix selection rotation on the last line
This fixes an issue with terminal resizes when the selection is on the
last line. Alacritty would fail to rotate lines and keep the selection
in the same line index whenever the terminal line count was grown or
shrunk.
This issue occurred due to the range passed to the selection's rotate
function still being based on the old terminal size, which caused the
initial or target state of the rotation to be outside of the terminal
bounds.
Closes #6698.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 42d5ec8f..9609ecc7 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,13 @@ 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/). +## 0.13.0-dev + +### Fixed + +- Character `;` inside the `URI` in `OSC 8` sequence breaking the URI +- Selection on last line not updating correctly on resize + ## 0.12.0 ### Added @@ -50,7 +57,6 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/). - EOT (`\x03`) escaping bracketed paste mode - Drag & Drop not working for the search bar - Simple-fullscreened window not resized when moving between monitors on macOS -- Character `;` inside the `URI` in `OSC 8` sequence breaking the URI ### Removed |