mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-25 22:55:06 +02:00
parent
b59e34f159
commit
8587af6936
12
CHANGELOG.md
12
CHANGELOG.md
@ -5,18 +5,24 @@ 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.6.8] / [0.7.0] - Unreleased
|
## [0.6.9] / [0.7.0] - Unreleased
|
||||||
|
|
||||||
## [0.6.7] - 2022-01-31
|
## [0.6.8] - 2022-02-01
|
||||||
|
|
||||||
## Bug Fixes
|
## Bug Fixes
|
||||||
|
|
||||||
- [#655](https://github.com/ClementTsang/bottom/pull/665): Fix bug where the program would stall in an infinite loop if the width of the terminal was too small.
|
- [#655](https://github.com/ClementTsang/bottom/pull/669): Fix a bug where the number of CPUs is never refreshed.
|
||||||
|
|
||||||
|
## [0.6.7] - 2022-01-31
|
||||||
|
|
||||||
## Features
|
## Features
|
||||||
|
|
||||||
- [#646](https://github.com/ClementTsang/bottom/pull/646): Add `PgUp`/`PgDown` keybind support to scroll up and down a page in a table.
|
- [#646](https://github.com/ClementTsang/bottom/pull/646): Add `PgUp`/`PgDown` keybind support to scroll up and down a page in a table.
|
||||||
|
|
||||||
|
## Bug Fixes
|
||||||
|
|
||||||
|
- [#655](https://github.com/ClementTsang/bottom/pull/665): Fix bug where the program would stall in an infinite loop if the width of the terminal was too small.
|
||||||
|
|
||||||
## Internal Changes
|
## Internal Changes
|
||||||
|
|
||||||
- [#658](https://github.com/ClementTsang/bottom/pull/658): Update sysinfo.
|
- [#658](https://github.com/ClementTsang/bottom/pull/658): Update sysinfo.
|
||||||
|
2
Cargo.lock
generated
2
Cargo.lock
generated
@ -230,7 +230,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bottom"
|
name = "bottom"
|
||||||
version = "0.6.7"
|
version = "0.6.8"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bottom"
|
name = "bottom"
|
||||||
version = "0.6.7"
|
version = "0.6.8"
|
||||||
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"
|
||||||
|
10
README.md
10
README.md
@ -103,8 +103,8 @@ sudo pacman -Syu bottom
|
|||||||
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.6.7/bottom_0.6.7_amd64.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.6.8/bottom_0.6.8_amd64.deb
|
||||||
sudo dpkg -i bottom_0.6.7_amd64.deb
|
sudo dpkg -i bottom_0.6.8_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
### Fedora/CentOS
|
### Fedora/CentOS
|
||||||
@ -175,7 +175,7 @@ Since validation of the package takes time, it may take a while to become availa
|
|||||||
choco install bottom
|
choco install bottom
|
||||||
|
|
||||||
# The version number may be required for newer releases during the approval process:
|
# The version number may be required for newer releases during the approval process:
|
||||||
choco install bottom --version=0.6.7
|
choco install bottom --version=0.6.8
|
||||||
```
|
```
|
||||||
|
|
||||||
### winget
|
### winget
|
||||||
@ -205,8 +205,8 @@ to do so using the most recent version of stable Rust, which is how the binaries
|
|||||||
rustup update stable
|
rustup update stable
|
||||||
|
|
||||||
# Option 1 - Download from releases and install
|
# Option 1 - Download from releases and install
|
||||||
curl -LO https://github.com/ClementTsang/bottom/archive/0.6.7.tar.gz
|
curl -LO https://github.com/ClementTsang/bottom/archive/0.6.8.tar.gz
|
||||||
tar -xzvf 0.6.7.tar.gz
|
tar -xzvf 0.6.8.tar.gz
|
||||||
cargo install --path .
|
cargo install --path .
|
||||||
|
|
||||||
# Option 2 - Clone from master and install manually
|
# Option 2 - Clone from master and install manually
|
||||||
|
Loading…
x
Reference in New Issue
Block a user