diff options
author | Ben Hilburn <bhilburn@gmail.com> | 2016-02-05 21:59:33 +0300 |
---|---|---|
committer | Ben Hilburn <bhilburn@gmail.com> | 2016-02-05 21:59:33 +0300 |
commit | 4bbff138fbad9724cc04d164af30d08aea716e1d (patch) | |
tree | 1064665a3bb627944f1951875f1a09b6fe511a2c /CHANGELOG.md | |
parent | 4897c795faf557c16d0d337f5e493ba1e4071aa0 (diff) | |
parent | 177bfc96021d101ff0caa4a1ac55d8fb0f117ba7 (diff) |
Merging @theminor's changes from PR #204
Diffstat (limited to 'CHANGELOG.md')
-rw-r--r-- | CHANGELOG.md | 24 |
1 files changed, 22 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index aa1b3aef..728f3578 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,13 +1,33 @@ ## v0.4.0 (next) +### `aws_eb_env` added + +This segment displays the current Elastic Beanstalk environment. + ### `ram` changes The `ram` segment was split up into `ram` and `swap`. The `POWERLEVEL9K_RAM_ELEMENTS` variable is void. -### New segment `aws_eb_env` added +## v0.3.2 -This segment displays the current Elastic Beanstalk environment. +### `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 |