aboutsummaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJoe Moon <joe@xoxomoon.com>2018-09-20 08:24:26 -0700
committerJoe Wilm <jwilm@users.noreply.github.com>2018-09-20 08:24:26 -0700
commit3b46859eceea39afb8bbc760235cc15de78d3ff3 (patch)
treef17d8b715a9ebb50dac94069f9647c5f09b34840 /CHANGELOG.md
parent641f3291eb918afdc513daa89dbcabfcc202e077 (diff)
downloadalacritty-3b46859eceea39afb8bbc760235cc15de78d3ff3.tar.gz
alacritty-3b46859eceea39afb8bbc760235cc15de78d3ff3.zip
Improve window.decorations options: (#1241)
The decorations config was changed from a bool to an enum. `full` has taken the place of `true`, and `none`, has replaced `false`. On macOS, there are now options for `transparent` and `buttonless`. These options are explained in both the CHANGELOG and in the configuration files.
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md9
1 files changed, 9 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 8c42ccec..adcc849c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Implement the `hidden` escape sequence (`echo -e "\e[8mTEST"`)
- Add support for macOS systemwide dark mode
- Set the environment variable `COLORTERM="truecolor"` to advertise 24-bit color support
+- On macOS, there are two new values for the config option `window.decorations`:
+ - `transparent` - This makes the title bar transparent and allows the
+ viewport to extend to the top of the window.
+ - `buttonless` - Similar to transparent but also removed the buttons.
### Changed
@@ -23,6 +27,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Windows started as unfocused now show the hollow cursor if the setting is enabled
- Bracketed paste mode now filters escape sequences beginning with \x1b
+### Deprecated
+
+- The config option `window.decorations` should now use `full` or `none` instead
+ of `true` or `false`, respectively.
+
## Version 0.2.0
### Added