diff options
author | Christian Duerr <chrisduerr@users.noreply.github.com> | 2019-02-03 16:44:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-02-03 16:44:39 +0000 |
commit | 20f319860908c2fa86bba25bb1e7bf8ba1a464e1 (patch) | |
tree | 3ea38a62a60692d5329d1e53d573928390d57a73 /CHANGELOG.md | |
parent | 53e491709d75477f8efe181315fe9301c6e845ba (diff) | |
download | alacritty-20f319860908c2fa86bba25bb1e7bf8ba1a464e1.tar.gz alacritty-20f319860908c2fa86bba25bb1e7bf8ba1a464e1.zip |
Fix regression in the URL launcher config
Due to the merging of configuration files on all platforms, it has been
made impossible to completely disable URL launching without still
executing some kind of program like `true`.
Setting the launcher to `None` in the config, will now disable it
completely.
This fixes #2058.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 3d2a4e65..731a60e4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -8,7 +8,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 ### Changed -- Smoother scrolling for touchpads (also affects scrolling with some mice that send fractional scrolling values) +- Improve scrolling accuracy with devices sending fractional updates (like touchpads) - `scrolling.multiplier` now affects normal scrolling with touchpads ### Fixed @@ -17,6 +17,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0 - Excessive polling every 100ms with `live_config_reload` enabled - Unicode characters at the beginning of URLs are now properly ignored - Remove error message when reloading an empty config +- Allow disabling URL launching by setting the value of `mouse.url.launcher` to `None` ## Version 0.2.7 |