Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-01-06 | Remove need for step_by feature | Manish Goregaokar | |
2017-01-06 | Make plugin feature optional | Manish Goregaokar | |
2017-01-06 | Merge pull request #91 from coder543/master | Joe Wilm | |
Fix crash when exiting `top` | |||
2017-01-06 | Merge pull request #92 from amikhalev/add-desktop-entry | Joe Wilm | |
Added a freedesktop.org desktop entry and instructions for using it to README.md | |||
2017-01-06 | Merge pull request #86 from benmyles/master | Joe Wilm | |
Add README instruction for Fedora | |||
2017-01-06 | Reduced Desktop Entries heading size | Alex Mikhalev | |
2017-01-06 | Added Alacritty.desktop file and instructions to README.md | Alex Mikhalev | |
2017-01-06 | Merge branch 'master' of github.com:coder543/alacritty | Josh Leverette | |
2017-01-06 | Handle invalid gotos more gracefully. | Josh Leverette | |
2017-01-06 | Add README instruction for Fedora | Ben Myles | |
2017-01-06 | Fix panic when closing window | Joe Wilm | |
Resolves #81. | |||
2017-01-06 | Add default macOS config | Joe Wilm | |
Should solve the `monospace` issue people are seeing for now. | |||
2017-01-06 | Write default config when not found | quininer kel | |
2017-01-06 | Add README instruction for macOS config | Joe Wilm | |
2017-01-06 | Emphasize pre-alpha in the README | Joe Wilm | |
2017-01-06 | Add note about this release being pre-alpha | Joe Wilm | |
2017-01-06 | Merge pull request #66 from pengowen123/master | Joe Wilm | |
Add prerequisites for Arch Linux | |||
2017-01-06 | Merge pull request #60 from MagaTailor/master | Joe Wilm | |
Fix compilation on ARM/AARCH64 | |||
2017-01-06 | Handle EINTR in I/O loop | Joe Wilm | |
This fixes an issue where encountering some signals panicked the event loop thread. Resolves #76 | |||
2017-01-06 | Merge pull request #67 from rudism/window-name | Joe Wilm | |
Added --title argument to set window title | |||
2017-01-06 | Added --title argument to set window title | Rudis Muiznieks | |
2017-01-05 | Add prerequisites for Arch Linux | pengowen123 | |
2017-01-05 | Merge pull request #59 from quininer/modsspace | Joe Wilm | |
Allow key_binding mods have space | |||
2017-01-05 | Fix ARM | Taylor Trump | |
2017-01-05 | Fix ARM | Taylor Trump | |
2017-01-05 | Allow key_binding have space | quininer kel | |
2017-01-04 | Merge pull request #56 from durka/patch-1 | Joe Wilm | |
macOS: cmake is not required | |||
2017-01-05 | macOS: cmake is not required | Alex Burka | |
The build Works On My Machine (tm) without cmake. OSX 10.9.5 | |||
2017-01-04 | Draw the screen when Refresh event arrives | Joe Wilm | |
cc #53 | |||
2017-01-04 | Merge pull request #49 from FliegendeWurst/patch-1 | Joe Wilm | |
Fix typo in README | |||
2017-01-04 | Fix typo in README | FliegendeWurst | |
2017-01-04 | Add note about forthcoming blog post | Joe Wilm | |
2017-01-02 | Send correct character sequence with alt key | Joe Wilm | |
Resolves #46. | |||
2017-01-02 | Update README arrow keys FAQ | Joe Wilm | |
2017-01-02 | Have default mouse and key bindings | Joe Wilm | |
This improves the situation where the user has not installed the default configuration file. Resolves #42. | |||
2017-01-02 | Fix scrolling with SGR mode | Joe Wilm | |
Resolves #43. | |||
2017-01-02 | Better error message when xclip is not available | Joe Wilm | |
Resolves #37. | |||
2017-01-02 | Real support for placing config in XDG_CONFIG_HOME | Joe Wilm | |
Resolves #35. | |||
2017-01-02 | Rework font loading | Joe Wilm | |
This work started because we wanted to be able to simply say "monospace" on Linux and have it give us some sort of font. The config format for fonts changed to accomodate this new paradigm. As a result, italic and bold can have different families from the normal (roman) face. The fontconfig based font resolution probably works a lot better than the CoreText version at this point. With CoreText, we simply iterate over fonts and check it they match the requested properties. What's worse is that the CoreText version requires a valid family. With fontconfig, it will just provide the closest matching thing and use it (unless a specific style is requested). | |||
2017-01-02 | Write README.md | Joe Wilm | |
2017-01-01 | Fix rustc-version file | Joe Wilm | |
2017-01-01 | Improve error handling for shader initialization | Joe Wilm | |
Shader initialization errors at startup should print a nice message now. | |||
2017-01-01 | Improve error handling for clipboard actions | Joe Wilm | |
Previously, these could have crashed alacritty. Now, they simply print an error message in Red to stderr. The Red format wrapper was moved to a central location where both main.rs and the alacritty lib can access it. | |||
2017-01-01 | Add support for SGR mouse reporting | Joe Wilm | |
According to: http://invisible-island.net/xterm/ctlseqs/ctlseqs.html#h2-Mouse-Tracking | |||
2016-12-31 | Print nice error messages for font loading errors | Joe Wilm | |
Resolves #22. | |||
2016-12-31 | Propagate font rasterizer errors | Joe Wilm | |
This allows consumers of the font crate to handle errors instead of the library panicking. | |||
2016-12-30 | Add ffi-util crate and use in fontconfig wrapper | Joe Wilm | |
This cleans up and fixes the C-type wrapping for fontconfig. | |||
2016-12-30 | Refactor FontConfig wrappers | Joe Wilm | |
There's now a proper wrapper in place for working with the FontConfig library. This should help significantly with error handling with font loading; at least, the FontConfig code shouldn't panic. The FreeType rasterizer still needs to be updated to handle missing fonts, and a more sensible default font should be specified. | |||
2016-12-29 | Improve RenderableCellsIter performance | Joe Wilm | |
Also adds a benchmark for cell.reset(). | |||
2016-12-29 | Add Default impl for Cell | Joe Wilm | |
Just a bit of cleanup. |