Age | Commit message (Collapse) | Author | |
---|---|---|---|
2020-01-05 | Bump version to 0.4.1-rc1v0.4.1-rc1 | Christian Duerr | |
2020-01-05 | Add `Minimize` binding action | Kirill Chibisov | |
Fixes #2534. | |||
2020-01-05 | Bump winit to 0.20.0 Alpha 6 | Christian Duerr | |
Fixes #3070. Fixes #2893. Fixes #2877. Fixes #2829. Fixes #2767. Fixes #2271. | |||
2020-01-04 | Update outdated reftests | Kirill Chibisov | |
2020-01-04 | Fix macOS OpenGL context resize ordering | Christian Duerr | |
Fixes #2226. | |||
2020-01-03 | Replace deprecated Error methods | sterlingjensen | |
2020-01-02 | Improve performance benchmarking documentation | Christian Duerr | |
Fixes #3136. | |||
2020-01-02 | Clean up Windows PTY string handling | David Hewitt | |
Removes widestring and dunce dependencies, reduces some code duplication and corrects a few typos. | |||
2019-12-31 | Remove C1 escape support | Christian Duerr | |
Fixes #2981. | |||
2019-12-31 | Fix high startup time on wlroots compositors | Kirill Chibisov | |
2019-12-30 | Move live-shader-reload feature to alacritty | Kirill Chibisov | |
2019-12-29 | Remove outdated information from README | Kirill Chibisov | |
2019-12-24 | Fix screen reset not clearing cell flags | Christian Duerr | |
2019-12-22 | Fix crash on clear when scrolled up in history | Kirill Chibisov | |
Fixes #3112. | |||
2019-12-22 | Remove unneeded NamedPipe::connect() calls | David Hewitt | |
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. | |||
2019-12-21 | Default to ConPTY instead of WinPTY | David Hewitt | |
2019-12-21 | Fix Windows CI build failure | Christian Duerr | |
2019-12-15 | Add conpty dynamic loading restrictions docs | sterlingjensen | |
2019-12-14 | Send PTY resize messages through event loop | David Hewitt | |
This allows us to clean up the Arcs on windows, as well as tidy up the code on unix a little too. Fixes #3086. | |||
2019-12-13 | Fix storage rotation error | Christian Duerr | |
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. | |||
2019-12-12 | Fix crash when resizing Alacritty | Christian Duerr | |
Fixes #3088. | |||
2019-12-12 | Fix deadlock when closing on Windows using Conpty | David Hewitt | |
Fixes #3042. | |||
2019-12-12 | Fix vague startup crash messages with WinPTY | David Hewitt | |
Fixes #2344. | |||
2019-12-10 | Fix colored row reset performance | Christian Duerr | |
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. | |||
2019-12-09 | Add support for colored emojis on Linux/BSD | Kirill Chibisov | |
Fixes #153. | |||
2019-12-09 | Fix minimize causing resize Windows | David Hewitt | |
2019-12-07 | Add /Application symlink to macOS DMG | Mark Vainomaa | |
2019-12-06 | Fix unicode 11/12 glyph width | Christian Duerr | |
2019-12-05 | Remove unnecessary lifetimes from winpty | sterlingjensen | |
2019-12-05 | Add documentation for the release process | Christian Duerr | |
Fixes #3032. | |||
2019-12-04 | Fix incorrect DPI after wakeup on X11 | Christian Duerr | |
Fixes #3022. | |||
2019-12-02 | Fix PR and issue template | Christian Duerr | |
2019-12-01 | Add new issue and PR templates | Christian Duerr | |
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. | |||
2019-11-30 | Fix direct escape input on Windows using alt | Christian Duerr | |
Fixes #1939. | |||
2019-11-30 | Move icon embed step from winpty to Alacritty | sterlingjensen | |
2019-11-28 | Add Insert/Delete bindings with combined modifiers | Kirill Chibisov | |
Fixes #3046. | |||
2019-11-28 | Add prerendered PNG and simplified SVG logo | jansol | |
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. | |||
2019-11-28 | Fix `OSC 52` with empty clipboard param | Christian Duerr | |
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. | |||
2019-11-27 | Fix parsing of file scheme | Christian Duerr | |
Fixes #3034. | |||
2019-11-26 | Remove unused PackedVertex struct | Cole Helbling | |
All references to `PackedVertex` were removed in #2066, so there is no reason to keep it around. | |||
2019-11-26 | Simplify `cargo deb` usage | Pen Tree | |
2019-11-26 | Bump copypasta to 0.6.1 | Christian Duerr | |
2019-11-25 | Bump x11-clipboard to 0.4.0 | Cole Helbling | |
2019-11-23 | Fix modifiers not getting released with XWayland | Christian Duerr | |
This resolves a winit bug where modifiers would stay pressed when they were released outside of Alacritty when it was started in XWayland mode. | |||
2019-11-23 | Move renderer from alacritty_terminal to alacritty | Kirill Chibisov | |
2019-11-22 | Fix excessive allocations in URL parser | Christian Duerr | |
Fixes #3002. | |||
2019-11-21 | Fix paste on Wayland inserting empty lines | Kirill Chibisov | |
Fixes #2844. | |||
2019-11-19 | Bump master to 0.4.1-dev | Christian Duerr | |
To make the release process a bit smoother and prevent a freeze of the master process while review candidates are out, this will put the master in a perpetual development state. This should make it clear to everyone that the official source for releases is always the tagged branch and make it possible to release new versions completely independently. Since versions are bumped after each release, this makes it so the release branches do not have to get merged back into the master branch to show the correct development version. | |||
2019-11-19 | Remove tests failing in release mode | Christian Duerr | |
2019-11-18 | Bump glutin depedency | Christian Duerr | |