aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/renderer/rects.rs
Commit message (Collapse)AuthorAge
* Move renderer from alacritty_terminal to alacrittyKirill Chibisov2019-11-23
|
* Fix URL highlightingChristian Duerr2019-11-03
| | | | Fixes #2898. Fixes #2479.
* Fix visual bell rendering modeKirill Chibisov2019-10-26
| | | Fixes #2911.
* Update to winit/glutin EventLoop 2.0Christian Duerr2019-10-05
| | | | | | | | | | | | | | | | | | | | | | | | | This takes the latest glutin master to port Alacritty to the EventLoop 2.0 rework. This changes a big part of the event loop handling by pushing the event loop in a separate thread from the renderer and running both in parallel. Fixes #2796. Fixes #2694. Fixes #2643. Fixes #2625. Fixes #2618. Fixes #2601. Fixes #2564. Fixes #2456. Fixes #2438. Fixes #2334. Fixes #2254. Fixes #2217. Fixes #1789. Fixes #1750. Fixes #1125.
* Fix multiple underlines/strikeouts on the same lineKirill Chibisov2019-08-06
| | | This commit fixes regression introduced in ddee14a.
* Fix lines in last line not rendered when scrolled upChristian Duerr2019-08-04
| | | | | | | | | | | | | Instead of creating the rectangles for lines after the line is completed, the rectangle is now initialized as soon as it is started. Then when following cells also contain the same line type, the rectangle is updated. This resolves the problem of having to finish the last line when it ends in the last non-empty column in the last line, since the render iterator only returns non-empty cells and we never get the information that the underline has ended. Fixes #2680.
* Split alacritty into a separate cratesTheodore Dubois2019-04-28
The crate containing the entry point is called alacritty, and the crate containing everything else is called alacritty_terminal.