aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-01-20Bump bumpalo from 3.11.0 to 3.12.0dependabot/cargo/bumpalo-3.12.0dependabot[bot]
Bumps [bumpalo](https://github.com/fitzgen/bumpalo) from 3.11.0 to 3.12.0. - [Release notes](https://github.com/fitzgen/bumpalo/releases) - [Changelog](https://github.com/fitzgen/bumpalo/blob/main/CHANGELOG.md) - [Commits](https://github.com/fitzgen/bumpalo/compare/3.11.0...3.12.0) --- updated-dependencies: - dependency-name: bumpalo dependency-type: indirect ... Signed-off-by: dependabot[bot] <support@github.com>
2023-01-16Add support for horizontal scrollingKirill Chibisov
This adds support for horizontal mouse scrolling in mouse mode and alternative scrolling modes. Fixes #2185.
2023-01-15Preserve last column with erase in line rightChristian Duerr
When the erase in line escape sequence with a parameter of 0 (right) is passed while the wrapline flag is already set, it will no longer clear the last column and instead ignore the operation. The behavior of `\e[1K` and `\e[2K` is unchanged and both will clear the entire first line without clearing the wrapline flag. Closes #6159.
2023-01-07Use sRGB color space for NSWindow on macOSNaru
Co-authored-by: Christian Duerr <contact@christianduerr.com>
2022-12-30User timer based rendering instead of vsyncKirill Chibisov
Fixes #824.
2022-12-30Fix crash when one dimension of the window is zeroKirill Chibisov
This fixes a crash on Windows when the user resizes the window to the point that it has the height of zero. The crash was introduced by the glutin update, since it requires non-zero sizes for the resize.
2022-12-29Disable depth and stencil buffersChristian Duerr
This patch reduces the active GPU memory consumption by disabling the depth and stencil buffers. During original testing it reduced GPU memory usage on Linux by almost a third. This is a reintroduction of previously reverted patch 3475e44. Closes #2881.
2022-12-25Apply 'font.glyph_offset.y' for underline/strikeoutKirill Chibisov
Fixes #6561.
2022-12-14Fix multi-line bracket selectionChristian Duerr
This fixes a bug where semantic selection for bracket characters wasn't working properly over multiple lines since start and end of the selection were swapped. Closes #6567.
2022-12-11Add changelog to alacritty crateJames McCoy
Shipping the changelog as part of the Alacritty crate allows packagers to use it for their packages.
2022-12-11Add -T short form for --titleJames McCoy
Debian-based distributions provide a standard interface to launch a terminal via the x-terminal-emulator name. In order for a terminal emualtor to satisfy that interface, it must * Be VT100 compatiable * Support the "-e <command> <args>" CLI option * Support the "-T <title>" CLI option Adjust the short form of --title accordingly, providing -t as an alias to avoid breaking any existing usage.
2022-12-09Fix damage computation on boundariesKirill Chibisov
Given that the Rect started to use signed integers saturating_sub became irrelevant and no clamp to zero were performed. This commit uses max instead to fix it.
2022-12-06Fix crash while typing on WaylandKirill Chibisov
Fixes #6487.
2022-12-02Fix VirtualKeyCode config documentationPhilip Taron
The `winit` crate was split off of the `glutin` crate. This patch fixes the config link to correctly point to the winit enum instead of the old glutin reexport.
2022-12-02Ignore errors from swap_buffersKirill Chibisov
Most of them are innocent and require just swap again. It was like that before anyway due to old glutin bug in the error handling implementation where errors won't pulled on swap buffers, but old observed error was used. Fixes #6538.
2022-12-02Bump glutin to 0.30.2Kirill Chibisov
Fixes #6498.
2022-11-28Add 'debug.renderer' config optionKirill Chibisov
This should help trouble shooting the renderer being created and different renderer options to determine when something like dual-source rendering isn't working.
2022-11-28Fix padding update not updating rendererChristian Duerr
This fixes an issue where it was possible to update the padding of the terminal without actually queueing an update for the renderer projection, leading to a blurry projection. Closes #6502.
2022-11-15Update to notify v5 via notify_debouncer_miniJames McCoy
Notify v5 moved the debounced API into the notify_debouncer_mini crate. The debounced API doesn't provide details on the type of event that happened, just that a list of events or errors happened. Therefore, reload is triggered on any event for a matching path. Co-authored-by: Christian Duerr <contact@christianduerr.com>
2022-11-11Fix cursor visibility with focus change on macOSChris Copeland
Fixes #6452.
2022-11-03Update glutin to 0.30.0Kirill Chibisov
The glutin 0.30.0 update decouples glutin from winit which provides us with basis for a multithreaded renderer. This also improves robustness of our configuration picking, context creation, and surface handling. As an example we're now able to start on systems without a vsync, we don't try to build lots of contexts to check if some config works, and so on. That also brings us possibility to handle context losses, but that's a future work. Fixes #1268.
2022-10-26Update winit to 0.27.5Kirill Chibisov
Fixes #6396.
2022-10-26Bump crossfont and sctk-adwaitaKirill Chibisov
Fixes #6432. Fixes #6414. Fixes #6400. Fixes #6338.
2022-10-22Fix startup failure on macOS with dash as /bin/shKirill Chibisov
The dash's exec doesn't have `-a` argument we rely on when running login shell, so use zsh instead. Fixes #6426.
2022-10-21Fix crash with very low font sizesKirill Chibisov
Fixes #6432.
2022-10-21Fix cursor and underlines always being blackKirill Chibisov
Some old hardware doesn't like universal shader approach for all the rectangle kinds leading to ALU instruction limits. This commit fixes it by splitting the shader per rectangle kind. Fixes #6417.
2022-10-18Fix `--help` output for `--class` to match man pagesAndrzej Grzeslak
The output of --help did not match the man pages with regards to the ordering of arguments for the --class flag. This has now been fixed. Fixes #6413.
2022-10-14Fix changelog versioningChristian Duerr
2022-10-14Fix Windows release buildChristian Duerr
Closes #6392.
2022-10-12Fix clippy warningsChristian Duerr
This patch applies all clippy lints currently present on the latest clippy master than are compatible with our oldstable clippy (only exception is the `_else(||` stuff).
2022-10-09Bump winit to 0.27.4Kirill Chibisov
Fixes #6370. Fixes #6356.
2022-10-07Add RHEL8 instructions to INSTALL.mdNathaniel Graham
Co-authored-by: Christian Duerr <contact@christianduerr.com>
2022-10-05Fix icon decoding on X11Hugal31
Glutin is waiting for an RGBA buffer with 8-bit depth, but our icon is 16-bit depth. So we need to normalize the color data when decoding the icon.
2022-09-30Migrate from winapi to windows-syskillian
2022-09-17Fix IPC config overriding previous valuesChristian Duerr
Before this patch whenever changing the IPC configuration, all previous configuration options would be discarded. This was the case even when the new option was invalid. This patch ensures that the IPC config is only ever cleared when the `--reset` flag is passed. Invalid IPC config options are logged and discarded. Additionally whenever a new IPC config message is sent, all previous IPC error messages are cleared. Closes #6330.
2022-09-17Update unicode-width to Unicode 15Christian Duerr
This applies all not-breaking dependency changes, including an update to unicode-width. This brings support for Unicode 15 with its new widths table so new glyphs and Emojis are shown correctly.
2022-09-15Bump winit to 0.27.3Kirill Chibisov
Fixes #6324. Fixes #6313.
2022-09-14Avoid text cursor location for hyperlink previewKirill Chibisov
Fixes #6325.
2022-09-12Update Cargo.lock for new `-dev` bumpKirill Chibisov
2022-09-11Don't enable multisamplingKirill Chibisov
It never worked in the first place, because we were never requesting it in glutin, and it provides no value given that textures are already antialiased.
2022-09-05Add licenses to `alacritty_config`Christian Duerr
2022-09-03Bump development version to 0.12.0-devChristian Duerr
This is only an update to the development version and does not represent a stable release.
2022-09-01Add IPC config subcommandChristian Duerr
This patch adds a new mechanism for changing configuration options without editing the configuration file, by sending options to running instances through `alacritty msg`. Each window will load Alacritty's configuration file by default and then accept IPC messages for config updates using the `alacritty msg config` subcommand. By default all windows will be updated, individual windows can be addressed using `alacritty msg config --window-id "$ALACRITTY_WINDOW_ID"`. Each option will replace the config's current value and cannot be reset until Alacritty is restarted or the option is overwritten with a new value. Configuration options are passed in the format `field.subfield=value`, where `value` is interpreted as yaml. Closes #472.
2022-08-29Add inline input method supportKirill Chibisov
This commit adds support for inline IME handling. It also makes the search bar use underline cursor instead of using '_' character. Fixes #1613.
2022-08-25Rework `--class` CLI optionKirill Chibisov
This commit swaps the order of `general` and `instance` arguments and also sets `instance` to `general` when only one argument was provided. This should make this option behave like in other terminals on X11, since they set either both or general by default, but not instance like Alacritty. Fixes #6279.
2022-08-24Include extra directory in crateChristian Duerr
Instead of having the extra symlink in the root, this puts the symlink in the alacritty crate. Since we build the package on Linux this is not a problem and even allows us to get rid of the `alacritty.png` symlink. To avoid having complicated symlinks with regards to the windows build assets directory, it has just been removed from the `extra` directory completely. Since we only need it for building, it doesn't matter where it's located and users will never have to interact with it manually anyway. Closes #6242.
2022-08-20Fix general and instance class set on window (#6276)Ulrik de Muelenaere
This fixes a regression introduced in 7d708d5, which caused the general and instance class to be swapped.
2022-08-13Bump winit to 0.27.2Kirill Chibisov
2022-08-11Use `WindowEvent::Occluded` to hint renderingtrimental
This should prevent rendering on macOS and X11 to invisible windows.
2022-08-10Bump glutin to 0.29.1Kirill Chibisov
Fixes #6239. Fixes #5975. Fixes #5876. Fixes #5767. Fixes #4484. Fixes #3139.