summaryrefslogtreecommitdiffstats
path: root/extra
AgeCommit message (Collapse)Author
2019-10-09Add --hold CLI flagValentin Ignatev
This implements --hold flag which keeps Alacritty open after its child process exits. Fixes #1165.
2019-09-24Add Xembed supportmkosem
Fixes #631.
2019-09-09Bump minimum Rust version to 1.36.0Christian Duerr
2019-08-25Follow zsh conventions in zsh completionOliver Kiddle
Declaring curcontext etc local is superfluous as _arguments states are not used. It is also superfluous to include an outer function definition syntax in zsh autoloadable functions. Zsh convention is not to capitalize descriptions. It is also better to use the imperative mood verb form for descriptions as this allows them to start with the shortest form of the verb - e.g. "reduce" instead of "reduces" and results in better grammar in the absence of a sentence subject. I'd recommend this in the --help output too. Using _guard for the position and dimensions was unnecessary given that the values are not mixed with other matches.
2019-07-30Bump minimum supported Rust version to 1.34.0Christian Duerr
2019-07-08Add class and short title completionsKirill Chibisov
Fixes #2612.
2019-07-06Allow setting gtk variant and general class on X11Brian Koropoff
2019-06-19Bump appdata to v0.3.3Eric Engestrom
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-09Bump version to 0.3.3-rc1v0.3.3-rc1Christian Duerr
2019-06-09Add RPM spec for building in COPRPaul Schyska
2019-06-07Fix ncurses backspace keyChristian Duerr
Ncurses does some special handling for backspace, normally comparing it to the KEY_BACKSPACE constant. However to make this work, the right backspace escape sequence needs to be set in the terminfo. XTerm has this set to ^H, but it always sends ^H. Since Alacritty usually sends ^? instead, this needs to be specified to allow correct interpretation for ncurses.
2019-05-14Reenable macOS automatic graphics switchingChristian Duerr
This issue has been resolved upstream by a macOS update, fixing all crashing issues when switching between integrated and dedicated GPUs. Fixes #2221.
2019-05-11Add linux Appstream packaging dataderpmatt
2019-05-07Add NSSystemAdministrationUsageDescription to macOS manifestijl
This resolves permission failures when modifying root-owned files and such, e.g., modifying /etc/hosts. It had been possible to work around this by adding alacritty to the set of applications with "Full Disk Access" in System Preferences. macOS now opens a prompt to confirm permission with a new installation. This fixes #2337.
2019-04-28Switch from copypasta to rust-clipboardChristian Duerr
This switches our own `copypasta` crate with the more standardized `clipboard` library, which allows us to get rid of the `xclip` dependency on X11. Additionally, this lays the foundation for native Wayland clipboard support once the clipboard crate is updated (or a fork is created). Fixes #5.
2019-04-22Bump version to 0.3.2v0.3.2Christian Duerr
2019-04-22Bump version to 0.3.1v0.3.1Christian Duerr
2019-04-10Fix Alacritty icon background on WindowsChristian Duerr
This fixes #2285.
2019-04-08Bump version to 0.3.0v0.3.0Christian Duerr
2019-04-07Add new icon to macOS binaryChristian Duerr
This adds the new Alacritty icon to the macOS binary available in the github releases. On sizes 128x128 and up the image with scanlines is included. The ci deployment process should now also offer the svg file for download so the .desktop file can be used without having to look through the repos for the icon.
2019-04-04Disable automatic graphics switching on macOSChristian Duerr
Temporarily disabled automatic graphics switching due to a bug in macOS which leads to crashing. See #2221.
2019-04-04Fix .desktop path in snapcraft.ymlChristian Duerr
2019-04-04Add icon to Linux .desktop fileKirill Chibisov
2019-04-02Fix Windows deploymentChristian Duerr
2019-04-01Add official logov0.3.0-rc2Christian Duerr