aboutsummaryrefslogtreecommitdiff
path: root/alacritty/src
Commit message (Collapse)AuthorAge
...
* Fix reset CLI parameters on config reload (#3216)Christian Duerr2020-01-17
| | | | | | Fix reset CLI parameters on config reload Fixes #3197.
* Remove synthetic keyboard event handlingChristian Duerr2020-01-14
| | | Fixes #3109.
* Fix crash with invalid working directoryChristian Duerr2020-01-12
|
* Fix font size reset when moving between screensChristian Duerr2020-01-11
| | | Fixes #3183.
* Move Alacritty to organizationChristian Duerr2020-01-11
| | | | | | | | This fixes various outdated links pointing to the old jwilm/alacritty repository. Since `copypasta` now has its own github repository at https://github.com/alacritty/copypasta, the sources have been removed from Alacritty.
* Bump glutin to 0.22.0Christian Duerr2020-01-10
| | | Fixes #3165.
* Force exact modifiers match for mouse bindingsChristian Duerr2020-01-10
| | | Fixes #3152.
* Fix cut off full width glyphs in last columnChristian Duerr2020-01-09
| | | | | | | | | | | | This resolves the issue with full width glyphs getting rendered in the last column. Since they need at least two glyphs, it is not possible to properly render them in the last column. Instead of rendering half of the glyph in the last column, with the other half cut off, an additional spacer is now inserted before the wide glyph. This means that the specific glyph in question is then three cells wide. Fixes #2385.
* Fix keybinding deserializationChristian Duerr2020-01-07
| | | Fixes #3160.
* Remove winit key remappingsChristian Duerr2020-01-06
|
* Fix incorrect config path in --help and manpageChristian Duerr2020-01-06
| | | Fixes #3154.
* Add `Minimize` binding actionKirill Chibisov2020-01-05
| | | Fixes #2534.
* Bump winit to 0.20.0 Alpha 6Christian Duerr2020-01-05
| | | | | | | | Fixes #3070. Fixes #2893. Fixes #2877. Fixes #2829. Fixes #2767. Fixes #2271.
* Fix macOS OpenGL context resize orderingChristian Duerr2020-01-04
| | | Fixes #2226.
* Replace deprecated Error methodssterlingjensen2020-01-03
|
* Clean up Windows PTY string handlingDavid Hewitt2020-01-02
| | | | | Removes widestring and dunce dependencies, reduces some code duplication and corrects a few typos.
* Fix high startup time on wlroots compositorsKirill Chibisov2019-12-31
|
* Send PTY resize messages through event loopDavid Hewitt2019-12-14
| | | | | | | This allows us to clean up the Arcs on windows, as well as tidy up the code on unix a little too. Fixes #3086.
* Fix deadlock when closing on Windows using ConptyDavid Hewitt2019-12-12
| | | Fixes #3042.
* Add support for colored emojis on Linux/BSDKirill Chibisov2019-12-09
| | | Fixes #153.
* Fix minimize causing resize WindowsDavid Hewitt2019-12-09
|
* Add Insert/Delete bindings with combined modifiersKirill Chibisov2019-11-28
| | | | Fixes #3046.
* Remove unused PackedVertex structCole Helbling2019-11-26
| | | | All references to `PackedVertex` were removed in #2066, so there is no reason to keep it around.
* Move renderer from alacritty_terminal to alacrittyKirill Chibisov2019-11-23
|
* Fix excessive allocations in URL parserChristian Duerr2019-11-22
| | | Fixes #3002.
* Fix WinPTY freeze on terminationMaciej Makowski2019-11-16
| | | Fixes #2889.
* Fix division by zero without any cols or linesBurak Yigit Kaya2019-11-14
| | | | | | | | | The URL check uses a division to wrap column indices across lines, which will cause a runtime error if the size of the terminal is zero columns wide. Since a lot of our logic assumes that we at least have one column and line to work with and our behavior doesn't matter otherwise, this change fixes the terminal dimensions to have space for at least one cell.
* Fix incorrect DPI at startup on X11Christian Duerr2019-11-12
| | | Fixes #2938.
* Fix modifier inconsistenciesChristian Duerr2019-11-11
| | | Fixes #2906.
* Fix URL scheme highlightingChristian Duerr2019-11-04
|
* Add UTF-8 mouse mode supportKirill Chibisov2019-11-04
| | | | Fixes #1934.
* Fix incorrect cell foreground when clearing screenChristian Duerr2019-11-04
| | | | | | | | | | | | | This fixes a bug that would clear the cells with the current template cell with just the `flags` reset, to make sure the colors are correct. However, the cell foreground was not reset, leading to cells counting as occupied when resizing. With this change both cell flags and foreground color are ignored when clearing both the whole screen and inside the line, allowing us to accurately keep track of cell occupation. Fixes #2866.
* Fix URL highlightingChristian Duerr2019-11-03
| | | | Fixes #2898. Fixes #2479.
* Add live config reload for font family and stylewayne2019-11-03
| | | | Fixes #2737.
* Fix wrong default cursor iconKirill Chibisov2019-11-02
|
* Fix clippy warningsChristian Duerr2019-11-02
|
* Remove unused imports on WindowsDavid Hewitt2019-10-31
|
* Fix message bar drawing over terminal after resizeKirill Chibisov2019-10-29
| | | | | | This regression was introduced in 729eef0c933831bccfeac6a355bdb410787fbe5f. Fixes #2924.
* Fix sending chars with bind not clearing selectionKirill Chibisov2019-10-29
| | | | Fixes #2925.
* Fix visual bell rendering modeKirill Chibisov2019-10-26
| | | Fixes #2911.
* Fix bell not redrawing without event updatesKenny Levinsen2019-10-25
| | | | Fixes #2914.
* Fix setting persistent logging via CLIDo Duy2019-10-24
|
* Fix unused import warning on macOS/WindowsKohki Miki2019-10-22
|
* Fix XEmbed compilation error on 32-bit platformscyclopsian2019-10-20
|
* Fix window title not filled by defaultDustin2019-10-17
| | | | | | | | | | | In the config, if `window` is undefined, the derived `Default` for the String `title` is used, which is an empty String. This was unintended, and causes issues in gnome-shell (e.g. in the alt-tab dialog) when the window title is an empty string. This commit adds a manually implemented default for the `WindowConfig`, it's the same as the derived `Default`, except for the `title`, which will now always be "Alacritty" as originally intended.
* Revert "Disable depth and stencil buffers"Christian Duerr2019-10-16
| | | This reverts commit 3475e449870b382cda4ea6d48f980577cd8c929e.
* Add support for alternate scroll escapeAleksey Kuznetsov2019-10-15
| | | | Fixes #2727.
* Fix logged config path separators on WindowsKirill Chibisov2019-10-14
| | | | | | It was discovered that we were logging path with `\\` instead of `\` as separators on Windows due to use of Debug formatting instead of Display for paths.
* Add support for title stack escape sequencesDustin2019-10-14
| | | | | | | | | | | | This commit adds the concept of a "title stack" to the terminal. Some programs (e.g. vim) send control sequences `CSI 22 ; 0` (push title) and `CSI 23 ; 0` (pop title). The title stack is just a history of previous titles. Applications can push the current title onto the stack, and pop it back off (setting the window title in the process). Fixes #2840.
* Disable depth and stencil buffersJasper Mattsson2019-10-11
| | | | Disable allocation of depth and stencil buffers. This reduces active GPU memory consumption by almost a third, at least on Linux.