mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-25 14:44:39 +02:00
uptick: 0.5.2
This commit is contained in:
parent
a634934e3d
commit
781691d3c9
@ -5,6 +5,12 @@ All notable changes to this project will be documented in this file.
|
|||||||
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
|
||||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||||
|
|
||||||
|
## [0.5.2] - 2020-11-25
|
||||||
|
|
||||||
|
## Bug Fixes
|
||||||
|
|
||||||
|
- [#327](https://github.com/ClementTsang/bottom/pull/327): Fixes `hide_avg_cpu` being inverted in config files.
|
||||||
|
|
||||||
## [0.5.1] - 2020-11-22
|
## [0.5.1] - 2020-11-22
|
||||||
|
|
||||||
## Bug Fixes
|
## Bug Fixes
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -108,7 +108,7 @@ checksum = "cf1de2fe8c75bc145a2f577add951f8134889b4795d47466a54a5c846d691693"
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bottom"
|
name = "bottom"
|
||||||
version = "0.5.1"
|
version = "0.5.2"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bottom"
|
name = "bottom"
|
||||||
version = "0.5.1"
|
version = "0.5.2"
|
||||||
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
|
authors = ["Clement Tsang <cjhtsang@uwaterloo.ca>"]
|
||||||
edition = "2018"
|
edition = "2018"
|
||||||
repository = "https://github.com/ClementTsang/bottom"
|
repository = "https://github.com/ClementTsang/bottom"
|
||||||
|
12
README.md
12
README.md
@ -5,7 +5,7 @@
|
|||||||
|
|
||||||
A cross-platform graphical process/system monitor with a customizable interface and a multitude of features. Supports Linux, macOS, and Windows. Inspired by both [gtop](https://github.com/aksakalli/gtop) and [gotop](https://github.com/cjbassi/gotop).
|
A cross-platform graphical process/system monitor with a customizable interface and a multitude of features. Supports Linux, macOS, and Windows. Inspired by both [gtop](https://github.com/aksakalli/gtop) and [gotop](https://github.com/cjbassi/gotop).
|
||||||
|
|
||||||
 _Theme based on [gruvbox](https://github.com/morhetz/gruvbox)_ (`--color gruvbox`). _Font is [IBM Plex Mono](https://www.ibm.com/plex/), terminal is [Kitty](https://sw.kovidgoyal.net/kitty/). Recorded on version **0.5.1**._
|
 _Theme based on [gruvbox](https://github.com/morhetz/gruvbox)_ (`--color gruvbox`). _Font is [IBM Plex Mono](https://www.ibm.com/plex/), terminal is [Kitty](https://sw.kovidgoyal.net/kitty/)._
|
||||||
|
|
||||||
**Note**: If you are reading this on the master branch, then it may refer to in-development or un-released features/changes. Please refer to [release branch](https://github.com/ClementTsang/bottom/tree/release/README.md) or [crates.io](https://crates.io/crates/bottom) for the most up-to-date _release_ documentation.
|
**Note**: If you are reading this on the master branch, then it may refer to in-development or un-released features/changes. Please refer to [release branch](https://github.com/ClementTsang/bottom/tree/release/README.md) or [crates.io](https://crates.io/crates/bottom) for the most up-to-date _release_ documentation.
|
||||||
|
|
||||||
@ -86,8 +86,8 @@ 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/archive/0.5.1.tar.gz
|
curl -LO https://github.com/ClementTsang/bottom/archive/0.5.2.tar.gz
|
||||||
tar -xzvf 0.5.1.tar.gz
|
tar -xzvf 0.5.2.tar.gz
|
||||||
cargo install --path .
|
cargo install --path .
|
||||||
```
|
```
|
||||||
|
|
||||||
@ -119,8 +119,8 @@ yay -S 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.5.1/bottom_0.5.1_amd64.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.5.2/bottom_0.5.2_amd64.deb
|
||||||
sudo dpkg -i bottom_0.5.1_amd64.deb
|
sudo dpkg -i bottom_0.5.2_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
### Fedora/CentOS
|
### Fedora/CentOS
|
||||||
@ -174,7 +174,7 @@ to appear.
|
|||||||
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.5.1
|
choco install bottom --version=0.5.2
|
||||||
```
|
```
|
||||||
|
|
||||||
### winget
|
### winget
|
||||||
|
Loading…
x
Reference in New Issue
Block a user