docs: update for 0.4.4

This commit is contained in:
ClementTsang 2020-07-06 01:09:01 -04:00
parent 3ffa437af3
commit 3564f00f39
2 changed files with 8 additions and 6 deletions

View File

@ -7,6 +7,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [0.5.0] - Unreleased ## [0.5.0] - Unreleased
## [0.4.4] - 2020-07-06
### Features ### Features
- [#114](https://github.com/ClementTsang/bottom/pull/114): Show process state per process (originally in 0.4.0, moved to later). This only - [#114](https://github.com/ClementTsang/bottom/pull/114): Show process state per process (originally in 0.4.0, moved to later). This only
@ -30,7 +32,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- [#165](https://github.com/ClementTsang/bottom/issues/165) - Fixed a bug where OR operations in the process query wouldn't properly for some cases. - [#165](https://github.com/ClementTsang/bottom/issues/165) - Fixed a bug where OR operations in the process query wouldn't properly for some cases.
- The process query should hopefully be a bit more usable now. There were issues with how spaces (which are treated as an AND if it was between keywords, so something like `btm cpu > 0 mem > 0` would look for a process named `btm` with cpu usage > 0 and mem usage > 0). This has been hopefully improved. - The process query should hopefully be a bit more usable now. There were issues with how spaces (which are treated as an AND if it was between keywords, so something like `btm cpu > 0 mem > 0` would look for a process named `btm` with cpu usage > 0 and mem usage > 0). This has been hopefully improved.
## [0.4.3] - 2020-05-15 ## [0.4.3] - 2020-05-15

View File

@ -56,7 +56,7 @@ Note that bottom is:
- Built on the stable version of Rust - Built on the stable version of Rust
- Tested and released for only 64-bit - Tested and released for only 64-bit
- Developed mainly for macOS, Windows, and Linux - Developed mainly for macOS, Windows, and Linux
As such, support beyond that is not guaranteed. As such, support beyond that is not guaranteed.
### Manual ### Manual
@ -76,7 +76,7 @@ cd bottom
cargo install --path . cargo install --path .
# Download from releases and install # Download from releases and install
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.4.3/bottom_source_code.tar.gz curl -LO https://github.com/ClementTsang/bottom/releases/download/0.4.4/bottom_source_code.tar.gz
tar -xzvf bottom_source_code.tar.gz tar -xzvf bottom_source_code.tar.gz
cargo install --path . cargo install --path .
``` ```
@ -101,8 +101,8 @@ yay bottom-bin
A `.deb` file is provided on each [release](https://github.com/ClementTsang/bottom/releases/latest): A `.deb` file is provided on each [release](https://github.com/ClementTsang/bottom/releases/latest):
```bash ```bash
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.4.3/bottom_0.4.3_amd64.deb curl -LO https://github.com/ClementTsang/bottom/releases/download/0.4.4/bottom_0.4.4_amd64.deb
sudo dpkg -i bottom_0.4.3_amd64.deb sudo dpkg -i bottom_0.4.4_amd64.deb
``` ```
### Homebrew ### Homebrew
@ -129,7 +129,7 @@ Choco package located [here](https://chocolatey.org/packages/bottom).
choco install bottom choco install bottom
# Version number may be required for newer releases, if available: # Version number may be required for newer releases, if available:
choco install bottom --version=0.4.3 choco install bottom --version=0.4.4
``` ```
## Usage ## Usage