mirror of
https://github.com/ClementTsang/bottom
synced 2024-11-22 12:13:06 +00:00
parent
9a011189f1
commit
36840e5de9
3 changed files with 13 additions and 12 deletions
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
|
@ -74,7 +74,7 @@ body:
|
|||
description: >
|
||||
Please provide which version of `bottom` you're running, which you can find with `btm -V`. If you are using
|
||||
a nightly/non-release version, please also specify that.
|
||||
placeholder: 0.7.1
|
||||
placeholder: 0.8.0
|
||||
|
||||
- type: input
|
||||
id: install
|
||||
|
|
|
@ -5,10 +5,11 @@ 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/),
|
||||
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
|
||||
|
||||
## [0.7.2]/[0.8.0] - ???
|
||||
## [0.8.0] - 2023-01-22
|
||||
|
||||
## Bug Fixes
|
||||
|
||||
- [#950](https://github.com/ClementTsang/bottom/pull/950): Update help menu for disk and temperature widgets with sorting support.
|
||||
- [#994](https://github.com/ClementTsang/bottom/pull/994): Fix time graph labels not being styled.
|
||||
|
||||
## Features
|
||||
|
@ -18,11 +19,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||
## Changes
|
||||
|
||||
- [#974](https://github.com/ClementTsang/bottom/pull/974): Hide battery duration section if the value is unknown. Also update shortened text.
|
||||
- [#975](https://github.com/ClementTsang/bottom/pull/975): Automatically hide the battery widget if no batteries are found.
|
||||
- [#975](https://github.com/ClementTsang/bottom/pull/975): Automatically hide the battery widget if no batteries are found but `--battery` is enabled.
|
||||
|
||||
## Other
|
||||
|
||||
- [#950](https://github.com/ClementTsang/bottom/pull/950): Update help menu for disk and temperature widgets with sorting support.
|
||||
- [#969](https://github.com/ClementTsang/bottom/pull/969): Follow Debian conventions for naming generated `.deb` binaries.
|
||||
|
||||
## [0.7.1] - 2023-01-06
|
||||
|
||||
|
|
16
README.md
16
README.md
|
@ -158,16 +158,16 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa
|
|||
|
||||
```bash
|
||||
# x86-64
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_amd64.deb
|
||||
sudo dpkg -i bottom_0.7.1_amd64.deb
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_amd64.deb
|
||||
sudo dpkg -i bottom_0.8.0_amd64.deb
|
||||
|
||||
# ARM64
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_arm64.deb
|
||||
sudo dpkg -i bottom_0.7.1_arm64.deb
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_arm64.deb
|
||||
sudo dpkg -i bottom_0.8.0_arm64.deb
|
||||
|
||||
# ARM
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.7.1/bottom_0.7.1_armhf.deb
|
||||
sudo dpkg -i bottom_0.7.1_armhf.deb
|
||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.8.0/bottom_0.8.0_armhf.deb
|
||||
sudo dpkg -i bottom_0.8.0_armhf.deb
|
||||
```
|
||||
|
||||
### Snap
|
||||
|
@ -247,7 +247,7 @@ choco install bottom
|
|||
|
||||
# The version number may need to be specified for newer releases for the first
|
||||
# few hours/days during the approval process:
|
||||
choco install bottom --version=0.7.1
|
||||
choco install bottom --version=0.8.0
|
||||
```
|
||||
|
||||
### winget
|
||||
|
@ -279,7 +279,7 @@ rustup update stable
|
|||
|
||||
# Option 1 - Download from releases and install
|
||||
curl -LO https://github.com/ClementTsang/bottom/archive/0.7.0.tar.gz
|
||||
tar -xzvf 0.7.1.tar.gz
|
||||
tar -xzvf 0.8.0.tar.gz
|
||||
cargo install --path .
|
||||
|
||||
# Option 2 - Clone from master and install manually
|
||||
|
|
Loading…
Reference in a new issue