aboutsummaryrefslogtreecommitdiff
path: root/alacritty_terminal/src/tty/windows/child.rs
Commit message (Collapse)AuthorAge
* Bump all dependenciesChristian Duerr2024-11-02
| | | | | This patch applies all major and minor version bumps, with the exception of `unicode-width` since it will need to be handled separately for Unicode version 16.
* Send exit code events on child process exitKirill Bulatov2024-03-09
| | | | Fixes #7753.
* Expose more process info on WindowsSmall White2024-03-07
|
* Port from mio to pollingJohn Nunley2023-10-07
| | | | | | | | | This patch replaces the mio crate with the polling. Now that smol-rs/polling#96 has been merged, we should be at full feature parity with mio v0.6 now. Fixes #7104. Fixes #6486.
* Bump dependenciesPavel Roskin2023-06-11
| | | Co-authored-by: Christian Duerr <contact@christianduerr.com>
* Migrate from winapi to windows-syskillian2022-09-30
|
* Remove copyright notice from filesChristian Duerr2020-06-06
| | | | | | | | | | | | | | Keeping the license as part of every file bloats up the files unnecessarily and introduces an additional overhead to the creation of new modules. Since cargo already provides excellent dependency management, most of the code-reuse of Alacritty should occur through Rust's dependency management instead of copying it source. If code is copied partially, copying the license from the main license file should be just as easy as copying from the top of the file and making some adjustments based on where it is used is likely necessary anyways.
* Extend style guideline documentationChristian Duerr2020-05-05
|
* Fix inconsistent test module namingChristian Duerr2020-01-28
|
* Fix WinPTY freeze on terminationMaciej Makowski2019-11-16
Fixes #2889.