aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Fix config reload updating incorrect gridChristian Duerr2020-02-23
|
* Fix Fontconfig's font size queryKirill Chibisov2020-02-23
| | | Previously we were rounding pattern's `pixelsize` before `fc_sort`, however we were using not rounded one in `get_glyph`, so bitmap fonts could look a bit smaller when used in a mix with scalable fonts.
* Fix block selection including last columnChristian Duerr2020-02-22
| | | | | | | | The block selection will now only insert extra newline characters after each line if the last line isn't already included. This resolves an issue with duplicate newlines, since newlines are automatically appended when the last column is part of a selection. Fixes #3304.
* Fix discarding of FreeType loading flagsKirill Chibisov2020-02-20
| | | | | | Fixes regression introduced in 6b327b6f8f0f308ff8f46cdf551ce0d0f3eda60b. Fixes #3355.
* Add Alpine Linux installation instructionsbgkillas2020-02-18
|
* Extract winpty crateChristian Duerr2020-02-17
| | | | | The winpty crate and its winpty-sys depedency have been moved to https://github.com/alacritty/winpty.
* Fix parser stopping at unknown modesChristian Duerr2020-02-15
| | | | | | | This resolves an issue in the parser where it would stop as soon as the first unknown value is encountered in private mode/sgr attribute escapes. Fixes #3339.
* Add custom merge strategy for CHANGELOG.mdChristian Duerr2020-02-15
| | | | | The merge strategy `union` should hopefully reduce the number of conflicts when trying to rebase the configuration file, since most of the changes are simple additions anyways.
* Add seconds and nanoseconds to log outputChristian Duerr2020-02-14
|
* Increase Beam, Underline and Box cursors' line widthKirill Chibisov2020-02-13
|
* Fix incorrect display offset after rotationKirill Chibisov2020-02-12
| | | | Regression was introduced in 4cc6421daa4ff5976ab43c67110a7a80a36541e5, however it was working before only due to grid.len() bug.
* Bump vte and urlocatorChristian Duerr2020-02-11
| | | Fixes #3247.
* Revert "Fix backspace deleting chars when IME is open"Christian Duerr2020-02-10
| | | | | | | | | | | This reverts commit 7f4dce2ee04859fb0b48f15cf808b60065778703. Originally it was assumed that macOS always sends the \x7f on backspace anyways, however this is not true. It seems like the character on backspace can change even within the same terminal session, so we need to have our own binding to reliably set the correct binding. A solution for #1606 should be implemented in cooperation with winit.
* Document that Alacritty does not create configKirill Chibisov2020-02-07
|
* Update glutin to v0.23.0Kirill Chibisov2020-02-07
| | | | | | | Fixes #3191. Fixes #3150. Fixes #1465. Fixes #1359.
* Fix selection expansion across full-width glyphsChristian Duerr2020-02-07
| | | | | | | | | | | Instead of trying to expand the start and end of a selection across full-width glyphs, the selection should now only go from its origin to the end without any kind of expansion. Instead, the expansion is now done where the cells are actually checked for their selection status, expanding across the entire full-width glyph whenever any part of it is selected. Fixes #3106.
* Add docs about multiple bindings on same triggerBrainFace2020-02-05
|
* Start window invisible on WindowsKirill Chibisov2020-02-04
|
* Remove unsetting of dirty flag on key pressChristian Duerr2020-02-03
| | | | | | There's no reason why we should ever manually set the terminal to not be dirty, since this can lead to a lot of other logic being affected. This also does not have any benefit and was likely added in the event loop rework as a bug (probably should have been dirty = true).
* Fix non-scalable font resize issueKirill Chibisov2020-02-03
| | | Fixes resize regression from 15cc07c069b09f109ed18fb94e02e9650be7fa33.
* Fix handling of OpenType variable fontsKirill Chibisov2020-01-31
| | | | Fixes #3257.
* Mirror OSC query terminatorChristian Duerr2020-01-31
| | | Fixes #3091.
* Fix backspace deleting chars when IME is openChristian Duerr2020-01-30
| | | Fixes #1606.
* Fix inconsistent test module namingChristian Duerr2020-01-28
|
* Rework Fontconfig fallback to use cached list from font_sortKirill Chibisov2020-01-27
| | | | | | | | | | | | | | | | | | | | | | | | | | | | Previous implementation was querying Fontconfig using `charset` in a pattern, which was leading to unpredictable fallbacks in some cases, since Fontconfig was picking the font with the most coverage for a given charset, regardless of user configuration. Moreover all fallback was based on font_match which is extremely slow for such performance sensitive task as a fallback, so alacritty had a hard times on vtebench's unicode-random-write. The new approach is to use some internal fallback list from font_sort and iterate over it to get a proper fallback font, since it matches the following example query from `fc-match`: `fc-match -s "monospace:pixelsize=X:style=Y" That being said it's more intuitive for users to setup their system Fontconfig fallback, and also most applications are doing similar things. Moreover the new implementation uses internal caches over Fontconfig API when possible and performs font matches only once during load of requested font with font_sort, which leads to dramatically improved performance on already mentioned vtebench's unicode-random-write. Fixes #3176. Fixes #3134. Fixes #2657. Fixes #1560. Fixes #965. Fixes #511.
* Switch to flamegraph-rs scriptChristian Duerr2020-01-27
| | | | | | | This cleans up the Alacritty scripts a bit by removing some of them which are not recommended to be used anymore and switching from the official FlameGraph tool to the more specialized Rust FlameGraph implementation.
* Fix incorrect grid.len() and grid.history_size()Kirill Chibisov2020-01-26
|
* Add font metric cachingKirill Chibisov2020-01-25
|
* Fix selection rotating outside of scrolling regionChristian Duerr2020-01-24
| | | | Fixes #2983.
* Fix build error on OpenBSDeau2020-01-24
|
* Add debug log for missing configChristian Duerr2020-01-22
| | | | | | | | | | We currently log whenever we fall back to the default config because of an error in the config itself. We also log when the config was successfully loaded and where it was loaded from. The only scenario where no config related message is logged is when there is no configuration file present. Logging this case should make it easier to debug issues like #3240, without requiring any knowledge from maintainers about this edgecase.
* Fix underline position for bitmap fontsKirill Chibisov2020-01-22
| | | | Fixes #3235.
* Fix stack overflow when printing shader errorKirill Chibisov2020-01-21
| | | Fixes #3238.
* Fix oob error during selectionKirill Chibisov2020-01-21
| | | Fixes #3233.
* Fix first cell when selection is off screenChristian Duerr2020-01-21
| | | | | | | | | | | Since the expansion of the selection was done after clamping it to the grid, the selection would incorrectly move the clamped start over by one cell when the start was to the right of the original column. By resetting the side of the start point to `Left` before expanding, this can be circumvented. This also resolves a regression which broke backwards bracket selection. Fixes #3223.
* Disable drawing bold text bright by defaultKirill Chibisov2020-01-20
| | | | | | | | | | | | | Since the assumption is usually that bold text is drawn in bright colors, this might break some applications. However some other terminals have already taken this leap, which should lessen the impact for Alacritty. Since this might still be desired and necessary for certain applications, the config option is just switched to draw with normal colors by default, however the old behavior can still be restored. Fixes #2779.
* Remove scrolling.auto_scroll featureKirill Chibisov2020-01-20
| | | Fixes: #1873
* Bump minimum Rust version to 1.37.0Christian Duerr2020-01-19
|
* Force application symlink on macOS make buildJosh Comer2020-01-18
|
* Change Alacritty .ico to use higher resolutionMichael Fresco2020-01-17
| | | Fixes #2651.
* Replace `.nth(0)` with `.next()`Cole Helbling2020-01-17
| | | | | Clippy[1] says that `.next()` is more readable than `.nth(0)`. [1]: https://rust-lang.github.io/rust-clippy/master/index.html#iter_nth_zero
* Fix reset CLI parameters on config reload (#3216)Christian Duerr2020-01-17
| | | | | | Fix reset CLI parameters on config reload Fixes #3197.
* Update font crate to 2018 editionDavid Hewitt2020-01-15
|
* Expand line selection across wrapped linesChristian Duerr2020-01-15
|
* Remove Windows working directory canonicalizationDavid Hewitt2020-01-15
| | | Fixes #3198.
* Remove synthetic keyboard event handlingChristian Duerr2020-01-14
| | | Fixes #3109.
* Bump VTE to 0.5.0Christian Duerr2020-01-12
| | | | | | | | | | This change includes dynamic escape buffer support in VTE, which allows us to have arbitrary escape sizes. Since tmux could potentially use very long escapes for the clipboard escape, this allows copying more text. Fixes #1002.
* Fix crash with invalid working directoryChristian Duerr2020-01-12
|
* Fix font size reset when moving between screensChristian Duerr2020-01-11
| | | Fixes #3183.
* 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.