aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* 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.
* Add separate deployment for Windows releasesChristian Duerr2020-01-09
|
* Build releases on Windows stableChristian Duerr2020-01-08
|
* 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.
* Bump version to 0.4.2-devKirill Chibisov2020-01-05
|
* 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.
* Update outdated reftestsKirill Chibisov2020-01-04
|
* Fix macOS OpenGL context resize orderingChristian Duerr2020-01-04
| | | Fixes #2226.
* Replace deprecated Error methodssterlingjensen2020-01-03
|
* Improve performance benchmarking documentationChristian Duerr2020-01-02
| | | Fixes #3136.
* Clean up Windows PTY string handlingDavid Hewitt2020-01-02
| | | | | Removes widestring and dunce dependencies, reduces some code duplication and corrects a few typos.
* Remove C1 escape supportChristian Duerr2019-12-31
| | | | Fixes #2981.
* Fix high startup time on wlroots compositorsKirill Chibisov2019-12-31
|
* Move live-shader-reload feature to alacrittyKirill Chibisov2019-12-30
|
* Remove outdated information from READMEKirill Chibisov2019-12-29
|
* Fix screen reset not clearing cell flagsChristian Duerr2019-12-24
|
* Fix crash on clear when scrolled up in historyKirill Chibisov2019-12-22
| | | Fixes #3112.
* Remove unneeded NamedPipe::connect() callsDavid Hewitt2019-12-22
| | | | In the way the code was set up, these calls would always do nothing and return io::ErrorKind::WouldBlock, so they can be safely removed.
* Default to ConPTY instead of WinPTYDavid Hewitt2019-12-21
|
* Fix Windows CI build failureChristian Duerr2019-12-21
|
* Add conpty dynamic loading restrictions docssterlingjensen2019-12-15
|
* 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 storage rotation errorChristian Duerr2019-12-13
| | | | | | | This fixes a regression introduced in e99057b179cbdc0851c36575dd043fcdaa45437a, which used `self.len` to calculate the remainder of `self.zero` during rotation instead of `self.inner.len()`, leading to a broken `self.zero` offset and incorrect rotation.
* Fix crash when resizing AlacrittyChristian Duerr2019-12-12
| | | Fixes #3088.
* Fix deadlock when closing on Windows using ConptyDavid Hewitt2019-12-12
| | | Fixes #3042.
* Fix vague startup crash messages with WinPTYDavid Hewitt2019-12-12
| | | Fixes #2344.
* Fix colored row reset performanceChristian Duerr2019-12-10
| | | | | | | | | | | | | | This fixes a bug where a row would always get reset completely if its background does not equal the default terminal background. This leads to big performance bottlenecks when running commands like `echo "\e[41m" && yes`. Instead of resetting the entire row whenever the template cell is not empty, the template cell is now compared to the last cell in the row. The last cell will always be equal to the previous template cell when `row.occ < row.inner.len()` and if `occ` is equal to the row's length, the entire row is always reset anyways. Fixes #2989.
* Add support for colored emojis on Linux/BSDKirill Chibisov2019-12-09
| | | Fixes #153.
* Fix minimize causing resize WindowsDavid Hewitt2019-12-09
|
* Add /Application symlink to macOS DMGMark Vainomaa2019-12-07
|
* Fix unicode 11/12 glyph widthChristian Duerr2019-12-06
|
* Remove unnecessary lifetimes from winptysterlingjensen2019-12-05
|
* Add documentation for the release processChristian Duerr2019-12-05
| | | | Fixes #3032.
* Fix incorrect DPI after wakeup on X11Christian Duerr2019-12-04
| | | Fixes #3022.
* Fix PR and issue templateChristian Duerr2019-12-02
|
* Add new issue and PR templatesChristian Duerr2019-12-01
| | | | | | | | | | | | This adds a PR template that should remind users to document their changes in our CHANGELOG, without requiring too much direct interaction from the user. The issue template has also been reworked a bit, hopefully making it easier for people to report bugs, without intruding on them if the information is irrelevant or providing it is too much effort. Fixes #3031.
* Fix direct escape input on Windows using altChristian Duerr2019-11-30
| | | Fixes #1939.
* Move icon embed step from winpty to Alacrittysterlingjensen2019-11-30
|
* Add Insert/Delete bindings with combined modifiersKirill Chibisov2019-11-28
| | | | Fixes #3046.
* Add prerendered PNG and simplified SVG logojansol2019-11-28
| | | | | This should help with compatibility problems with some platforms like KDE, that do not support all the features necessary for rendering the default Alacritty logo.
* Fix `OSC 52` with empty clipboard paramChristian Duerr2019-11-28
| | | | | | | | | This fixes the behavior of the clipboard escape (`OSC 52`) when the second parameter is not specified. If it is missing, the parameter is now assumed to be `c`, defaulting to the default clipboard. This has been fixed both for writing and reading. Fixes #3037.
* Fix parsing of file schemeChristian Duerr2019-11-27
| | | Fixes #3034.
* Remove unused PackedVertex structCole Helbling2019-11-26
| | | | All references to `PackedVertex` were removed in #2066, so there is no reason to keep it around.
* Simplify `cargo deb` usagePen Tree2019-11-26
|
* Bump copypasta to 0.6.1Christian Duerr2019-11-26
|