aboutsummaryrefslogtreecommitdiff
path: root/extra
Commit message (Collapse)AuthorAge
...
* Invert windows asset symlinksChristian Duerr2021-07-18
| | | | | | | | | | | This commit swaps source and target for the windows asset symlinks, since creation of a symlink is not possible on Windows systems without administrator permissions. By making the files inside the source folder the source instead of the destination, a build is still possible without requiring elevated privileges. Fixes #5338.
* Bump development version to 0.10.0-devChristian Duerr2021-07-18
| | | | This is only an update to the development version and does not represent a stable release.
* Remove optional releases section from appdata.xmlChristian Duerr2021-07-18
| | | | This removes the releases section to make the creation of new releases a bit simpler.
* Remove blink capability from terminfoNick Black2021-06-26
|
* Add sync update terminfo and docsChristian Duerr2021-02-24
| | | | | | | | | This adds documentation stating that Alacritty supports the synchronized update escape, which was implemented in 9575aed. Since tmux does check terminfo for this feature, the `Sync` capability has also been added. Tmux's implementation can be found here: https://github.com/tmux/tmux/blob/f5b7ebc540fe3db5c3a5fe97d01de44551e76058/tty-features.c#L185
* Remove --dimensions/-d from bash completionsBen Denhartog2021-01-29
|
* Update shell completionsJason2021-01-17
| | | | | This fixes the shell completion by removing the flags removed from the CLI in 0768428 and adding the new options flag.
* Bump development version to 0.8.0-devChristian Duerr2021-01-04
| | | | This is only an update to the development version and does not represent a stable release.
* Update Alacritty's descriptionChristian Duerr2020-12-29
| | | | | | Alacritty's description in the readme and manpage has always been a bit overly aggressive in its marketing. This new updated text should more accurately describe Alacritty's current state without pointlessly agitating people.
* Fix embedded _NET_WM_ICON on X11Christian Duerr2020-12-20
| | | | | | | | | | Previously the _NET_WM_ICON would use the .ico which was also used for the Windows icon. This icon used the dimensions 256x256, but the maximum supported image size is 192x192, so a new image with the dimensions 64x64 has been added. Since we know the image format anyways, the `image` dependency could also be easily replaced with `png`, which cuts out a few extra unused dependencies.
* Remove alacritty.specChristian Duerr2020-12-08
| | | | Since Alacritty is now officially packaged by Fedora, it is no longer necessary to provide this in the official repository.
* Remove redundant CLI flagsChristian Duerr2020-11-26
| | | | | | | | | | | | | This removes some of Alacritty's CLI flags since the same functionality is provided by the '--option' flag now. The removed flags are: * '--persistent-logging' * '--live-config-reload' * '--no-live-config-reload' * '--dimensions' * '--position' Fixes #4246.
* Bump development version to 0.7.0-devChristian Duerr2020-11-15
| | | | This is only an update to the development version and does not represent a stable release.
* Migrate from Travis CI to GitHub ActionsChristian Duerr2020-11-06
| | | | | | | | | | | | | | | This removes all CI builds from travis-ci, due to their recent changes in policy and harsh limitations on builds. With build times over 2 hours, it was a significant hindrance to development. Instead of Travis CI, the CI is now split on Sourcehut and GitHub. Since Sourcehut only supports Linux/BSD, all builds on those operating systems are executed there. The GitHub Actions CI is used to build for Windows/macOS, which are not available on Sourcehut. Since asset deployment for releases requires builds on all platforms, this is also done on GitHub actions. Though the new `upload_asset.sh` script makes sure that migration in the future is fairly simple and we do not tie ourselves to the overly complicated GitHub Actions ecosystem.
* Improve example for the -o CLI flagNathan Lilienthal2020-09-13
| | | Co-authored-by: Christian Duerr <contact@christianduerr.com>
* Add CLI parameter to override config optionsChristian Duerr2020-08-22
| | | | | | | | This uses the facilities added in 3c3e6870dedad56b270f5b65ea57d5a6e46b1de6 to allow overriding individual configuration file options dynamically from the CLI using the --options/-o parameter. Fixes #1258.
* Update spec filegrumpey2020-08-15
|
* Add support for double underlinesChristian Duerr2020-08-12
| | | | | | | | | | | | | This adds support for double underlines using the colon separated escape sequence `CSI 4 : 2 m`. Alacritty will now also always fallback to the normal underline in case any of the other underlines like the undercurl are specified. The escape sequence `CSI 4 : 0 m` can now be used to clear all underlines. Some terminals support `CSI 21 m` for double underline, but since Alacritty already uses that as cancel bold which is a little more consistent, that behavior has not changed. So the colon separated variant must be used.
* Add support for colon separated SGR parametersChristian Duerr2020-08-07
| | | | | This implements the colon separated form of SGR 38 and 48. Fixes #1485.
* Remove snap packaging configChristian Duerr2020-07-30
| | | | | Since Alacritty should not be responsible for packaging and the maintainers of the snap package have not kept it up to date, this removes its configuration file.
* Bump version to 0.6.0-devChristian Duerr2020-07-19
|
* Update --help for class option to match manpageJeff Windsor2020-07-04
|
* Remove prebuilt linux binariesChristian Duerr2020-05-12
| | | Fixes #3628.
* Bump minimum supported Rust version to 1.41.0Christian Duerr2020-04-23
|
* Add modal keyboard motion modeChristian Duerr2020-03-18
| | | | | | | | | | | | | | | | | | | This implements a basic mode for navigating inside of Alacritty's history with keyboard bindings. They're bound by default to vi's motion shortcuts but are fully customizable. Since this relies on key bindings only single key bindings are currently supported (so no `ge`, or repetition). Other than navigating the history and moving the viewport, this mode should enable making use of all available selection modes to copy content to the clipboard and launch URLs below the cursor. This also changes the rendering of the block cursor at the side of selections, since previously it could be inverted to be completely invisible. Since that would have caused some troubles with this keyboard selection mode, the block cursor now is no longer inverted when it is at the edges of a selection. Fixes #262.
* Bump version to 0.5.0-devChristian Duerr2020-03-14
| | | | This is a bump of the development version and does not represent a stable release.
* Capitalized the .desktop Filename (#3425)Nathan Lilienthal2020-03-13
| | | Follow free desktop file naming conventions.
* Bump minimum Rust version to 1.37.0Christian Duerr2020-01-19
|
* Change Alacritty .ico to use higher resolutionMichael Fresco2020-01-17
| | | Fixes #2651.
* Move Alacritty to organizationChristian Duerr2020-01-11
| | | | | | | | 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.
* Fix incorrect config path in --help and manpageChristian Duerr2020-01-06
| | | Fixes #3154.
* Bump version to 0.4.2-devKirill Chibisov2020-01-05
|
* Add prerendered PNG and simplified SVG logojansol2019-11-28
| | | | | This should help with compatibility problems with some platforms like KDE, that do not support all the features necessary for rendering the default Alacritty logo.
* Bump master to 0.4.1-devChristian Duerr2019-11-19
| | | | | | | | | | | | | | 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.
* Add --hold CLI flagValentin Ignatev2019-10-09
| | | | | | This implements --hold flag which keeps Alacritty open after its child process exits. Fixes #1165.
* Add Xembed supportmkosem2019-09-24
| | | | Fixes #631.
* Bump minimum Rust version to 1.36.0Christian Duerr2019-09-09
|
* Follow zsh conventions in zsh completionOliver Kiddle2019-08-25
| | | | | | | | | | | | | 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.
* Bump minimum supported Rust version to 1.34.0Christian Duerr2019-07-30
|
* Add class and short title completionsKirill Chibisov2019-07-08
| | | Fixes #2612.
* Allow setting gtk variant and general class on X11Brian Koropoff2019-07-06
|
* Bump appdata to v0.3.3Eric Engestrom2019-06-19
|
* Bump version to 0.3.3Christian Duerr2019-06-16
|
* Bump version to 0.3.3-rc2Christian Duerr2019-06-15
|
* Bump version to 0.3.3-rc1Christian Duerr2019-06-09
|
* Add RPM spec for building in COPRPaul Schyska2019-06-09
|
* Fix ncurses backspace keyChristian Duerr2019-06-07
| | | | | | | | | 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.
* Reenable macOS automatic graphics switchingChristian Duerr2019-05-14
| | | | | | This issue has been resolved upstream by a macOS update, fixing all crashing issues when switching between integrated and dedicated GPUs. Fixes #2221.
* Add linux Appstream packaging dataderpmatt2019-05-11
|
* Add NSSystemAdministrationUsageDescription to macOS manifestijl2019-05-07
| | | | | | | | | 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.