Merging @theminor's changes from PR #204

This commit is contained in:
Ben Hilburn 2016-02-05 10:59:33 -08:00
commit 4bbff138fb
3 changed files with 33 additions and 5 deletions

View file

@ -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