mirror of
https://github.com/ClementTsang/bottom.git
synced 2025-07-29 16:44:54 +02:00
uptick: 0.9.7 (#1505)
* docs: update changelog with 0.9.7 hotfix * Update bottom.desktop * uptick: 0.9.7
This commit is contained in:
parent
e37b159fae
commit
c2d3ab5591
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
2
.github/ISSUE_TEMPLATE/bug_report.yml
vendored
@ -79,7 +79,7 @@ body:
|
|||||||
|
|
||||||
It would also be helpful if you are not running [the latest version](https://github.com/ClementTsang/bottom/releases/latest)
|
It would also be helpful if you are not running [the latest version](https://github.com/ClementTsang/bottom/releases/latest)
|
||||||
to try that as well to see if the issue has already been resolved.
|
to try that as well to see if the issue has already been resolved.
|
||||||
placeholder: 0.9.6
|
placeholder: 0.9.7
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: install
|
id: install
|
||||||
|
@ -40,6 +40,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|||||||
- [#1355](https://github.com/ClementTsang/bottom/pull/1355): Reduce chances of non-D0 devices waking up due to temperature checks on Linux.
|
- [#1355](https://github.com/ClementTsang/bottom/pull/1355): Reduce chances of non-D0 devices waking up due to temperature checks on Linux.
|
||||||
- [#1410](https://github.com/ClementTsang/bottom/pull/1410): Fix uptime calculation for Linux.
|
- [#1410](https://github.com/ClementTsang/bottom/pull/1410): Fix uptime calculation for Linux.
|
||||||
|
|
||||||
|
## [0.9.7] - 2023-08-26
|
||||||
|
|
||||||
|
## Other
|
||||||
|
|
||||||
|
- [#1500](https://github.com/ClementTsang/bottom/issues/1500): Fix builds for Rust 1.80.
|
||||||
|
|
||||||
## [0.9.6] - 2023-08-26
|
## [0.9.6] - 2023-08-26
|
||||||
|
|
||||||
### Other
|
### Other
|
||||||
|
24
README.md
24
README.md
@ -175,16 +175,16 @@ A `.deb` file is provided on each [stable release](https://github.com/ClementTsa
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# x86-64
|
# x86-64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_amd64.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.7/bottom_0.9.7_amd64.deb
|
||||||
sudo dpkg -i bottom_0.9.6_amd64.deb
|
sudo dpkg -i bottom_0.9.7_amd64.deb
|
||||||
|
|
||||||
# ARM64
|
# ARM64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_arm64.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.7/bottom_0.9.7_arm64.deb
|
||||||
sudo dpkg -i bottom_0.9.6_arm64.deb
|
sudo dpkg -i bottom_0.9.7_arm64.deb
|
||||||
|
|
||||||
# ARM
|
# ARM
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom_0.9.6_armhf.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.7/bottom_0.9.7_armhf.deb
|
||||||
sudo dpkg -i bottom_0.9.6_armhf.deb
|
sudo dpkg -i bottom_0.9.7_armhf.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
### Exherbo Linux
|
### Exherbo Linux
|
||||||
@ -210,12 +210,12 @@ something like:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# x86-64
|
# x86-64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.6/bottom-0.9.6-1.x86_64.rpm
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.9.7/bottom-0.9.7-1.x86_64.rpm
|
||||||
sudo rpm -i bottom-0.9.6-1.x86_64.rpm
|
sudo rpm -i bottom-0.9.7-1.x86_64.rpm
|
||||||
|
|
||||||
# Nightly x86-64
|
# Nightly x86-64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.9.6-1.x86_64.rpm
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/nightly/bottom-0.9.7-1.x86_64.rpm
|
||||||
sudo rpm -i bottom-0.9.6-1.x86_64.rpm
|
sudo rpm -i bottom-0.9.7-1.x86_64.rpm
|
||||||
```
|
```
|
||||||
|
|
||||||
### Gentoo
|
### Gentoo
|
||||||
@ -326,8 +326,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.9.6.tar.gz
|
curl -LO https://github.com/ClementTsang/bottom/archive/0.9.7.tar.gz
|
||||||
tar -xzvf 0.9.6.tar.gz
|
tar -xzvf 0.9.7.tar.gz
|
||||||
cargo install --path . --locked
|
cargo install --path . --locked
|
||||||
|
|
||||||
# Option 2 - Clone the repo and install manually
|
# Option 2 - Clone the repo and install manually
|
||||||
|
@ -1,6 +1,6 @@
|
|||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=bottom
|
Name=bottom
|
||||||
Version=0.9.6
|
Version=0.10.0
|
||||||
GenericName=System Monitor
|
GenericName=System Monitor
|
||||||
Comment=A customizable cross-platform graphical process/system monitor for the terminal.
|
Comment=A customizable cross-platform graphical process/system monitor for the terminal.
|
||||||
Exec=btm
|
Exec=btm
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{
|
{
|
||||||
"$schema": "http://json-schema.org/draft-07/schema#",
|
"$schema": "http://json-schema.org/draft-07/schema#",
|
||||||
"$id": "https://github.com/ClementTsang/bottom/blob/main/schema/v1.0/bottom.json",
|
"$id": "https://github.com/ClementTsang/bottom/blob/main/schema/v1.0/bottom.json",
|
||||||
"$comment": "https://clementtsang.github.io/bottom/0.9.6/configuration/config-file",
|
"$comment": "https://clementtsang.github.io/bottom/0.9.6/configuration/config-file/default-config/",
|
||||||
"title": "Schema for bottom's configs (v1.0)",
|
"title": "Schema for bottom's configs (v1.0)",
|
||||||
"type": "object",
|
"type": "object",
|
||||||
"definitions": {
|
"definitions": {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user