summaryrefslogtreecommitdiff
path: root/CHANGELOG.md
diff options
context:
space:
mode:
authorJohn Minor <theminor@gmail.com>2016-01-31 13:08:09 +0300
committerJohn Minor <theminor@gmail.com>2016-01-31 13:08:09 +0300
commit177bfc96021d101ff0caa4a1ac55d8fb0f117ba7 (patch)
treeff689b0d12f7e04b8f8203115b26f6467ca14811 /CHANGELOG.md
parentd7c26513c8b2c45cbd95fda4d3289e33ffaf8369 (diff)
update CHANGELOG re new UNTRACKED state in vcs segment
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r--CHANGELOG.md19
1 files changed, 19 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 816a0dc0..7075219d 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,3 +1,22 @@
+## v0.3.2
+
+### `vcs` changes
+
+A new state `UNTRACKED` was added to the `vcs` segment. So we now
+have 3 states for repositories: `UNTRACKED`, `MODIFIED`, and the
+default state. The `UNTRACKED` state is active when there are files
+in the repository directory which have not been added to the repo
+(the same as when the `+` icon appears). The default color for the
+`UNTRACKED` state is now yellow, and the default color for the
+`MODIFIED` state is now read, but those colors can be changed by
+setting these variables, for example:
+```zsh
+POWERLEVEL9K_VCS_MODIFIED_FOREGROUND='black'
+POWERLEVEL9K_VCS_MODIFIED_BACKGROUND='white'
+POWERLEVEL9K_VCS_UNTRACKED_FOREGROUND='green'
+POWERLEVEL9K_VCS_UNTRACKED_BACKGROUND='blue'
+```
+
## v0.3.1
### `dir` changes