aboutsummaryrefslogtreecommitdiff
path: root/Cargo.lock
AgeCommit message (Collapse)Author
2020-03-02Fix DCS escape parsing crashChristian Duerr
This resolves a problem with the vte depedency, where the parser would crash when trying to parse a DCS escape with more than 16 parameters.
2020-02-29Update terminfo dependencyKirill Chibisov
2020-02-28Fix crash on Wayland compositors with `wl_seat` version 7+Kirill Chibisov
2020-02-17Extract winpty crateChristian Duerr
The winpty crate and its winpty-sys depedency have been moved to https://github.com/alacritty/winpty.
2020-02-11Bump vte and urlocatorChristian Duerr
Fixes #3247.
2020-02-07Update glutin to v0.23.0Kirill Chibisov
Fixes #3191. Fixes #3150. Fixes #1465. Fixes #1359.
2020-01-31Mirror OSC query terminatorChristian Duerr
Fixes #3091.
2020-01-24Fix build error on OpenBSDeau
2020-01-12Bump VTE to 0.5.0Christian Duerr
This change includes dynamic escape buffer support in VTE, which allows us to have arbitrary escape sizes. Since tmux could potentially use very long escapes for the clipboard escape, this allows copying more text. Fixes #1002.
2020-01-11Move Alacritty to organizationChristian Duerr
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.
2020-01-10Bump glutin to 0.22.0Christian Duerr
Fixes #3165.
2020-01-06Remove winit key remappingsChristian Duerr
2020-01-05Bump version to 0.4.2-devKirill Chibisov
2020-01-05Bump winit to 0.20.0 Alpha 6Christian Duerr
Fixes #3070. Fixes #2893. Fixes #2877. Fixes #2829. Fixes #2767. Fixes #2271.
2020-01-02Clean up Windows PTY string handlingDavid Hewitt
Removes widestring and dunce dependencies, reduces some code duplication and corrects a few typos.
2019-12-06Fix unicode 11/12 glyph widthChristian Duerr
2019-12-04Fix incorrect DPI after wakeup on X11Christian Duerr
Fixes #3022.
2019-11-30Fix direct escape input on Windows using altChristian Duerr
Fixes #1939.
2019-11-30Move icon embed step from winpty to Alacrittysterlingjensen
2019-11-27Fix parsing of file schemeChristian Duerr
Fixes #3034.
2019-11-26Bump copypasta to 0.6.1Christian Duerr
2019-11-25Bump x11-clipboard to 0.4.0Cole Helbling
2019-11-23Fix modifiers not getting released with XWaylandChristian 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-23Move renderer from alacritty_terminal to alacrittyKirill Chibisov
2019-11-21Fix paste on Wayland inserting empty linesKirill Chibisov
Fixes #2844.
2019-11-19Bump master to 0.4.1-devChristian 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-18Bump glutin depedencyChristian Duerr
2019-11-12Fix incorrect DPI at startup on X11Christian Duerr
Fixes #2938.
2019-11-11Fix modifier inconsistenciesChristian Duerr
Fixes #2906.
2019-11-03Fix URL highlightingChristian Duerr
Fixes #2898. Fixes #2479.
2019-10-23Update dependenciesKirill Chibisov
2019-10-16Bump winit versionKirill Chibisov
Fixes cursor icon managing with `hide_when_typing: true` on Wayland.
2019-10-05Update to winit/glutin EventLoop 2.0Christian Duerr
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.
2019-09-09Bump minimum Rust version to 1.36.0Christian Duerr
2019-09-06Update and dedupe parking_lot to 0.9Bastien Orivel
2019-09-03Fix Wayland selection clipboard not storing text when stopping outside of windowKirill Chibisov
2019-08-18Update depedenciesBastien Orivel
2019-08-16Fix smithay-clipboard integrationKirill Chibisov
Fixes: #2574
2019-08-04Remove errno depedencyChristian Duerr
2019-08-01Switch to rfind_url for URL detectionChristian Duerr
This switches to rfind_url for detecting URLs inside the grid. Instead of expanding at the cursor position, the complete terminal is searched from the bottom until the visible region is left with no active URL. Instead of having the field `cur` publicly accessibly on the `DisplayIterator`, there are the two methods `DisplayIterator::point` and `DisplayIterator::cell` for accessing the current element of the iterator now. This allows accessing the current element right after creating the iterator. Fixes #2629. Fixes #2627.
2019-07-30Bump minimum supported Rust version to 1.34.0Christian Duerr
2019-07-28Update gl_generator to 0.13Wild Kat
2019-07-22Fix NetBSD build failureChristian Duerr
Fixes #2631.
2019-07-10Fix row occ not set during new and resetChristian Duerr
Since ref tests were only stored whenever winit requested the window close, they would not get stored properly when the terminal was closed through Alacritty using `exit`, Ctrl+D or similar. This moves the ref test code to the and of the main entry point, which will always be executed regardless of how the terminal was shutdown. Fixes #2613.
2019-07-07Fix saving of ref testsChristian Duerr
Since ref tests were only stored whenever winit requested the window close, they would not get stored properly when the terminal was closed through Alacritty using `exit`, Ctrl+D or similar. This moves the ref test code to the and of the main entry point, which will always be executed regardless of how the terminal was shutdown.
2019-06-29Fix X11 clipboard hanging with mime setChristian Duerr
2019-06-23Fix performance issues with text reflowChristian Duerr
Fixes #2567. Fixes #2414.
2019-06-16Bump version to 0.3.3v0.3.3Christian Duerr
2019-06-15Bump version to 0.3.3-rc2v0.3.3-rc2Christian Duerr
2019-06-15Bump smithay-clipboard dependency versionChristian Duerr