forked from alacritty/alacritty
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge upstream: v0.12.0 → v0.12.2 (#2)
* Fix `;` character in URI OSC 8 payload The special character `;` can be not URL-encoded, thus it'll add extra parameter in the payload. Handle it joining extra parameters with the `;` as a separator. * Fix selection rotation on the last line This fixes an issue with terminal resizes when the selection is on the last line. Alacritty would fail to rotate lines and keep the selection in the same line index whenever the terminal line count was grown or shrunk. This issue occurred due to the range passed to the selection's rotate function still being based on the old terminal size, which caused the initial or target state of the rotation to be outside of the terminal bounds. Closes alacritty#6698. * Bump winit to 0.28.4 Fixes alacritty#6817. * Add `ALACRITTY_EXTRA_LOG_TARGETS` env variable This should help with troubleshooting the dependency crates like winit. * Bump winit to 0.28.5 The 0.28.4 was yanked. * Alacritty version 0.12.1-rc1 * Fix very long startup time on some Wayland systems This is not a real fix for the issue given that dbus method sctk-adwaita is using will being called anyway. The proper fix will be available with the winit's 0.29.0 release. Right now the delay reduced from around 20 seconds to 100ms on a systems with broken xdg-desktop-portal setup. * Update glutin to 0.30.8 and winit to 0.28.6 Fixes alacritty#6920. Fixes alacritty#6824. * Alacritty version 0.12.1-rc2 * Bump `actions/checkout` to v3 Fix Node 12 deprecation warnings in action runs. * Fix upload from CI on windows * Alacritty version v0.12.1 * Fix hyperlink preview for 2 lines terminal (alacritty#6953) The intention was to show it, however it was hidden due to wrong comparisson check. * Fix crash on ScaleFactorChange on Windows Windows is known to send zero sizes from winit in Risezed and now in ScaleFactorChanged events. They were handled in Resized, but not in ScaleFactorChanged. Fixes alacritty#6949. * Fix freeze with some drivers when using GLX Fixes alacritty#6972. * Fix the crash when shrinking scrolled terminal display_offset was adjusted unconditionally, thus it could go beyound the history limits, so clamp it to history like we do in grow_colums. Fixes alacritty#6862. * Update wix on the release CI Fixes alacritty#6939. * Alacritty version v0.12.2-rc1 * Alacritty version v0.12.2 --------- Co-authored-by: Kirill Chibisov <[email protected]> Co-authored-by: Christian Duerr <[email protected]> Co-authored-by: K.B.Dharun Krishna <[email protected]>
- Loading branch information
1 parent
f3e1faa
commit 7a92dea
Showing
25 changed files
with
174 additions
and
137 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
[package] | ||
name = "alacritty" | ||
version = "0.12.0" | ||
version = "0.12.2" | ||
authors = ["Christian Duerr <[email protected]>", "Joe Wilm <[email protected]>"] | ||
license = "Apache-2.0" | ||
description = "A fast, cross-platform, OpenGL terminal emulator" | ||
|
@@ -11,7 +11,7 @@ rust-version = "1.60.0" | |
|
||
[dependencies.alacritty_terminal] | ||
path = "../alacritty_terminal" | ||
version = "0.18.0" | ||
version = "0.19.1" | ||
default-features = false | ||
|
||
[dependencies.alacritty_config_derive] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.