aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
| * Add g++ dependency to Debian install docsFinn27082024-10-24
| |
| * Do not pull serde without serde featureYizhePKU2024-10-21
| | | | | | | | alacritty_terminal was pulling `serde` via vte even though serde feature was disabled.
| * Bump development version to 0.15.0-devChristian Duerr2024-10-18
| | | | | | | | This is only an update to the development version and does not represent a stable release.
| * Revert "Add unicode 16 support"Christian Duerr2024-10-18
| | | | | | This reverts commit 5dca7a85e7d8e98f8e770c17af8efb442c2277d0.
| * Fix pipe FD leak on X11Kirill Chibisov2024-10-17
| | | | | | | | | | The pipe was not using O_CLOEXEC, so it was leaked into the child. Fixes #8249.
| * Remove dbg! in migration commandNathan Lilienthal2024-10-15
| |
| * Add headless modeChristian Duerr2024-10-15
| | | | | | | | | | | | | | | | This patch adds a daemon mode to Alacritty which allows starting the Alacritty process without spawning an initial window. While this does not provide any significant advantage over the existing behavior of always spawning a window, it does integrate nicer with some setups and is a pretty trivial addition.
| * Add IME support to inline searchChristian Duerr2024-10-15
| | | | | | | | | | | | | | | | | | | | | | This changes the behavior of inline search from only accepting direct key inputs, to also accepting IME and paste. The additional characters are still being discarded, matching the existing behavior. This also fixes an issue where inline search wouldn't work for characters requiring modifiers, since the modifier press was interpreted as the search target instead. Closes #8208.
| * Implement multi-char cursor highlightKirill Chibisov2024-10-15
| | | | | | | | | | | | | | | | Use `end` of the cursor to draw a `HollowBlock` from `start` to `end`. When cursor covers only a single character, use `Beam` cursor instead of `HollowBlock`. Fixes #8238. Fixes #7849.
* | Use the GitHub CLI client to upload release assets.Ayose2024-10-24
| | | | | | | | | | | | | | The binary for Linux is also added to the release. The `contents: write` permission is needed to create releases and upload the assets.
* | Merge remote-tracking branch 'vendor/v0.14' into graphicsAyose2024-10-24
|\ \
| * | Alacritty version 0.14.0Christian Duerr2024-10-22
| | |
| * | Do not pull serde without serde featureYizhePKU2024-10-22
| | | | | | | | | | | | alacritty_terminal was pulling `serde` via vte even though serde feature was disabled.
| * | Revert "Add unicode 16 support"Christian Duerr2024-10-22
| | | | | | | | | This reverts commit 5dca7a85e7d8e98f8e770c17af8efb442c2277d0.
| * | Fix pipe FD leak on X11Kirill Chibisov2024-10-22
| | | | | | | | | | | | | | | The pipe was not using O_CLOEXEC, so it was leaked into the child. Fixes #8249.
| * | Alacritty version 0.14.0-rc2Christian Duerr2024-10-15
| | |
| * | Remove dbg! in migration commandNathan Lilienthal2024-10-15
| | |
| * | Add headless modeChristian Duerr2024-10-15
| | | | | | | | | | | | | | | | | | | | | | | | This patch adds a daemon mode to Alacritty which allows starting the Alacritty process without spawning an initial window. While this does not provide any significant advantage over the existing behavior of always spawning a window, it does integrate nicer with some setups and is a pretty trivial addition.
| * | Add IME support to inline searchChristian Duerr2024-10-15
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This changes the behavior of inline search from only accepting direct key inputs, to also accepting IME and paste. The additional characters are still being discarded, matching the existing behavior. This also fixes an issue where inline search wouldn't work for characters requiring modifiers, since the modifier press was interpreted as the search target instead. Closes #8208.
| * | Implement multi-char cursor highlightKirill Chibisov2024-10-15
| | | | | | | | | | | | | | | | | | | | | | | | Use `end` of the cursor to draw a `HollowBlock` from `start` to `end`. When cursor covers only a single character, use `Beam` cursor instead of `HollowBlock`. Fixes #8238. Fixes #7849.
| * | Alacritty version 0.14.0-rc1Christian Duerr2024-10-11
| |/
* | Merge remote-tracking branch 'vendor/master' into graphicsAyose2024-10-13
|\|
| * Fix panic on missing general config sectionKirill Chibisov2024-10-10
| | | | | | Fixes #8230.
| * Add unicode 16 supportChristian Duerr2024-10-10
| | | | | | | | | | | | | | | | This fixes issues in width calculation for symbols added in Unicode version 16. Since the upstream unicode-width crate has not been updated yet, this makes use of the temporary unicode-width-16 version to support Unicode 16 with Alacritty 0.14.0.
| * Change ctrl+shift+u to ctrl+shift+oKirill Chibisov2024-10-10
| | | | | | | | | | Avoid collisions with IMEs by using ctrl+shift+o. ctrl+shift+u is bound to open unicode input in a lot of IMEs by default meaning that users won't ever see the url hints UI.
| * Fix highlight invalidation on grid scrollChristian Duerr2024-10-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This fixes an issue where hints highlighted by vi or mouse cursor would produce an underline on the incorrect line since the highlights only store the initial match boundaries without accounting for new content scrolling the terminal. To accurately invalidate the hint highlights, we use existing damage information of the current frame. The existing logic to damage hints for the next frame to account for removal has been changed, since the hints would otherwise be cleared immediately. Instead we now mark the terminal as fully damaged for the upcoming frame whenever the hints are cleared. Closes #7737.
| * Remove unused `Clone` requirementsChristian Duerr2024-10-07
| |
| * Remove startup notify variables only for shellKirill Chibisov2024-10-03
| | | | | | | | | | | | This will prevent issues when `setup_env` from `alacritty_terminal` will remove potentially useful variables for users of the library. Fixes #8202.
| * Restructure message bar log messageKirill Chibisov2024-10-02
| | | | | | | | The first line is not really useful for the user, so move it to the bottom.
| * Add migration support for TOML config changesChristian Duerr2024-10-02
| | | | | | | | | | | | | | | | | | | | | | | | | | | | This patch allows running `alacritty migrate` to automatically apply configuration changes made to the TOML format, like moving `ipc_socket` to `general.ipc_socket`. This should reduce the friction of moving around individual options significantly, while also persisting the format of the existing TOML file thanks to `toml_edit`. The YAML migration has been simplified significantly to only switch the format of the file from YAML to TOML. The new TOML features are used for everything else.
| * Move root config fields to `[general]` sectionChristian Duerr2024-10-02
| | | | | | | | | | | | | | | | | | | | | | Some users struggle with TOML, since root options must always be at the top of the file, since they're otherwise associated with the last table. To avoid misunderstandings, all root-level fields have been removed. A new `general` section was added to allow housing configuration options that do not fit into any more specific groups. Closes #7906.
| * Fix app icon in alt+tab view on WindowsNeil Stewart2024-09-30
| |
| * Fix fullwidth semantic escape charactersChristian Duerr2024-09-22
| | | | | | | | | | | | | | | | | | | | Semantic escape characters occupying two two grid cells were always skipped over, making it impossible to have functional fullwidth characters as part of semantic escape characters. This patch fixes this by only skipping over fullwidth spacer cells, rather than skipping those cells entirely. Closes #8188.
| * Ignore cursor color request with default colorsChristian Duerr2024-09-22
| | | | | | | | | | | | | | | | | | | | | | | | Currently when the cursor colors are requested for the default cursor color, Alacritty always responds with #000000. Since this is most likely incorrect, this response is misleading. Realistically there's very little reason why any application would need to know the color of the (often dynamically changing) default cursor. So instead of always reporting an incorrect black value, this patch just stops reporting values unless the cursor color was explicitly changed. Closes #8169.
| * Make alacritty(1) config paths resemble alacritty(5)Kirill Chibisov2024-09-10
| | | | | | This also fixes the escaping in alacritty(5) page.
| * Improve TermMode bitflags initializationDimitri Sabadie2024-09-07
| |
| * Update checkout CI actionHamir Mahal2024-08-31
| |
| * Remove duplicate clip-path from logophilomathic_life2024-08-18
| |
| * Make `ConPty` creation fallible张小白2024-08-16
| |
| * Fix description in alacritty-bindings(5)Kirill Chibisov2024-08-11
| | | | | | | | Man pages use the man page name as the first word in description. This also aligns with other man pages we have.
* | Merge remote-tracking branch 'vendor/master' into graphicsAyose2024-07-29
|\|
| * Unify string formattingHamir Mahal2024-07-24
| |
| * Restart config monitor on import changeChristian Duerr2024-07-21
| | | | | | | | | | | | | | This patch checks the hash of the import paths on every config change and restarts the config monitor whenever the current monitor's hash diverges from the updated config's list of imports. Closes #7981.
| * Document options which are not working everywhere yetKirill Chibisov2024-07-18
| | | | | | This includes `window.position` and `window.resize_increments`.
| * Bump dependenciesKirill Chibisov2024-07-17
| | | | | | | | Update winit and clap to latest versions.
| * Bump MSRV to 1.74.0Kirill Chibisov2024-07-17
| |
| * Fix search bug with wrapline on first characterChristian Duerr2024-07-05
| | | | | | | | | | | | | | | | This fixes an issue where an inline search in the left direction would incorrectly assume that the first cell searched would not contain the `WRAPLINE` flag, causing the second search for the match end to terminate prematurely. Fixes #8060.
| * Support relative imports in config fileJoshua Cao2024-07-02
| | | | | | Co-authored-by: Christian Duerr <contact@christianduerr.com>
| * Use latest macOS image on CI (#8072)Kirill Chibisov2024-07-02
| | | | | | | | | | | | | | Old macOS images are deprecated resulting in often failures, thus use latest macOS images available. Also given that macOS is arm64 by default check x86_64 as extra job and not arm64.
| * Bump winit to 0.30.3Kirill Chibisov2024-06-23
| | | | | | Fixes #8046.