aboutsummaryrefslogtreecommitdiff
path: root/INSTALL.md
Commit message (Collapse)AuthorAge
* Fixed typo in INSTALL.mdEverlastinggit2020-11-24
|
* Remove copr from installation instructionsEverlastinggit2020-11-24
| | | | Since Fedora now provides Alacritty in the default repository, that should be used instead of the copr repository.
* Add Alpine Linux build dependenciesChandler Swift2020-11-16
|
* Add g++ to Fedora build dependency documentationMatthew Neal2020-11-10
| | | Fixes #4400.
* Add additional CentOS/RHEL build dependenciesChristian Duerr2020-09-30
| | | Fixes #4271.
* Rework installation instructionsCanh Dinh2020-08-07
| | | | | | | | | | | | | | Since users should be capable of finding packages for their distributions, this removes all instructions that point users directly at specific packages. The third party repositories like COPR have been kept, since those are more difficult to find. The structure of the installation instructions has also been reworked to adjust for this and the post build instructions should be a bit cleaner now. Co-authored-by: Christian Duerr <contact@christianduerr.com>
* Remove outdated sections from READMEChristian Duerr2020-07-24
|
* Remove prebuilt linux binariesChristian Duerr2020-05-12
| | | Fixes #3628.
* Fix INSTALL.md platform orderingChristian Duerr2020-05-07
|
* Add fontconfig to Clear Linux install requirementsPierre Massat2020-05-07
|
* Capitalized the .desktop Filename (#3425)Nathan Lilienthal2020-03-13
| | | Follow free desktop file naming conventions.
* Add GNU Guix installation instructionsValentin Ignatev2020-03-01
|
* 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.
* Simplify `cargo deb` usagePen Tree2019-11-26
|
* Suggest installing fish completions per-userFabian Homborg2019-06-30
| | | | | This uses $fish_complete_path[1], which should be in the user's home directory, so `sudo` is no longer needed.
* Fix dependencies for Archlinux in INSTALL.mdBenjamin Bauer2019-06-25
|
* Update manual install instructions for Void LinuxGabriel Silva Simões2019-06-23
|
* Fix ubuntu deploymentChristian Duerr2019-06-17
|
* Add INSTALL.md note about OpenBSD user datasize limitspwrdwnsys2019-06-15
|
* Add python 3 to OpenBSD dependenciespwrdwnsys2019-06-13
|
* Fix INSTALL.md relative windows/linux build linkAndy2019-06-03
|
* Add Gentoo install dependenciesChristian Duerr2019-06-03
| | | | | | | | | While Gentoo was listed in the table of contents of the INSTALL.md, the instructions to install the build dependencies were missing. This adds the emerge command necessary to install all dependencies of Alacritty (other than Rust) so building from source without the overlay is possible.
* Fix INSTALL.md .deb instruction linkKurgol2019-06-03
|
* Add build instructions for Clear LinuxRon Waldon2019-05-25
|
* Update Fedora and Ubuntu/Debian dependenciesKiril Videlov2019-05-01
|
* Add libxcb-devel dependency to INSTALL.md for openSUSEChris Coutinho2019-04-30
|
* Switch from copypasta to rust-clipboardChristian Duerr2019-04-28
| | | | | | | | | | | 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.
* Split alacritty into a separate cratesTheodore Dubois2019-04-28
| | | | | The crate containing the entry point is called alacritty, and the crate containing everything else is called alacritty_terminal.
* Document EGL driver dependency on WaylandChristian Duerr2019-04-09
| | | This fixes #1497.
* Add icon to Linux .desktop fileKirill Chibisov2019-04-04
|
* Add official logoChristian Duerr2019-04-01
|
* Fix terminfo support for extended capabilitiesChristian Duerr2019-03-03
| | | | | | | | | | To make sure all extended capabilities can be queried correctly, it is necessary to compile the terminfo file using the `-x` flag. Since Alacritty specified support for the XTerm mouse mode (XM/xm), using the `-x` flag was not possible until now without breaking programs like `htop`. By removing this flag, these issues should be resolved. This fixes https://github.com/jwilm/alacritty/issues/2131.
* Update fish completion installationChristian Duerr2019-02-13
|
* Document that alacritty requires winpty-agent on windows Zac Pullar-Strecker2019-02-02
| | | | | | | | | To make things easier to understand for Windows users, the relationship between Alacritty and the WinPTY agent has been clarified in the documentation. This also bundles the windows agent and exe together in a zip file to make distribution for windows easier on the user.
* Add pkg-config to Debian dependenciesF. Eugene Aumson2019-01-28
|
* Changed path to standard /usr/bin/..., registered as an x-terminal-emulator ↵Ilya Epifanov2018-11-19
| | | | | | alternative
* Move .deb building instructions to INSTALL.mdHellsenberg2018-11-14
| | | This fixes #1541.
* Move gentoo install instructions, add windows to table of contentsZac Pullar-Strecker2018-10-27
|
* Add support for Windows (#1374)Zac Pullar-Strecker2018-10-16
| | | | | | | | | | | | | | | Initial support for Windows is implemented using the winpty translation layer. Clipboard support for Windows is provided through the `clipboard` crate, and font rasterization is provided by RustType. The tty.rs file has been split into OS-specific files to separate standard pty handling from the winpty implementation. Several binary components are fetched via build script on windows including libclang and winpty. These could be integrated more directly in the future either by building those dependencies as part of the Alacritty build process or by leveraging git lfs to store the artifacts. Fixes #28.
* Extract manual installation instructionsChristian Duerr2018-10-14
Alacritty's manual installation instructions take up a lot of space in the README and they are hard to navigate because there's a lot of information for specific distros which are irrelevant to most users. To improve this situation, the manual installation section has been moved to the `INSTALL.md` file. This allows keeping the readme to a minimum which just includes the straight-forward instructions required to install it on systems which provide packages for it. Having a separate file also makes it possible to add a full index just for the installation instructions, which makes it possible to skip sections which are irrelevant.