mirror of
https://github.com/ClementTsang/bottom.git
synced 2026-08-24 20:36:42 +00:00
uptick: 0.14.7 (#2178)
This commit is contained in:
@@ -105,7 +105,7 @@ body:
|
|||||||
see if [the latest
|
see if [the latest
|
||||||
version](https://github.com/ClementTsang/bottom/releases/latest) solves
|
version](https://github.com/ClementTsang/bottom/releases/latest) solves
|
||||||
the issue first.
|
the issue first.
|
||||||
placeholder: 0.14.6
|
placeholder: 0.14.7
|
||||||
|
|
||||||
- type: textarea
|
- type: textarea
|
||||||
id: install
|
id: install
|
||||||
|
|||||||
@@ -104,4 +104,4 @@ body:
|
|||||||
see if [the latest
|
see if [the latest
|
||||||
version](https://github.com/ClementTsang/bottom/releases/latest) solves
|
version](https://github.com/ClementTsang/bottom/releases/latest) solves
|
||||||
the issue first.
|
the issue first.
|
||||||
placeholder: 0.14.6
|
placeholder: 0.14.7
|
||||||
|
|||||||
+2
-1
@@ -20,7 +20,7 @@ That said, these are more guidelines rather than hard rules, though the project
|
|||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
## 0.14.7/0.15.0 - Unreleased
|
## 0.14.7 - 2026-07-27
|
||||||
|
|
||||||
### Features
|
### Features
|
||||||
|
|
||||||
@@ -29,6 +29,7 @@ That said, these are more guidelines rather than hard rules, though the project
|
|||||||
### Other
|
### Other
|
||||||
|
|
||||||
- [#2167](https://github.com/ClementTsang/bottom/pull/2167): Remove filedescriptor hack used to suppress false-positive stderr messages for older versions of FreeBSD.
|
- [#2167](https://github.com/ClementTsang/bottom/pull/2167): Remove filedescriptor hack used to suppress false-positive stderr messages for older versions of FreeBSD.
|
||||||
|
- [#2177](https://github.com/ClementTsang/bottom/pull/2177): Fix `.deb` packaging CI job using a newer version of Ubuntu, breaking backwards compatibility.
|
||||||
|
|
||||||
## 0.14.6 - 2026-07-20
|
## 0.14.6 - 2026-07-20
|
||||||
|
|
||||||
|
|||||||
Generated
+1
-1
@@ -132,7 +132,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bottom"
|
name = "bottom"
|
||||||
version = "0.14.6"
|
version = "0.14.7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"assert_cmd",
|
"assert_cmd",
|
||||||
|
|||||||
+1
-1
@@ -1,6 +1,6 @@
|
|||||||
[package]
|
[package]
|
||||||
name = "bottom"
|
name = "bottom"
|
||||||
version = "0.14.6"
|
version = "0.14.7"
|
||||||
repository = "https://github.com/ClementTsang/bottom"
|
repository = "https://github.com/ClementTsang/bottom"
|
||||||
license = "MIT"
|
license = "MIT"
|
||||||
description = "A customizable cross-platform graphical process/system monitor for the terminal. Supports Linux, macOS, and Windows."
|
description = "A customizable cross-platform graphical process/system monitor for the terminal. Supports Linux, macOS, and Windows."
|
||||||
|
|||||||
@@ -166,8 +166,8 @@ Alternatively, you can use `cargo install` using the repo as the source.
|
|||||||
rustup update stable
|
rustup update stable
|
||||||
|
|
||||||
# Option 1 - Download an archive from releases and install
|
# Option 1 - Download an archive from releases and install
|
||||||
curl -LO https://github.com/ClementTsang/bottom/archive/0.14.6.tar.gz
|
curl -LO https://github.com/ClementTsang/bottom/archive/0.14.7.tar.gz
|
||||||
tar -xzvf 0.14.6.tar.gz
|
tar -xzvf 0.14.7.tar.gz
|
||||||
cargo install --path . --locked
|
cargo install --path . --locked
|
||||||
|
|
||||||
# Option 2 - Manually clone the repo and install
|
# Option 2 - Manually clone the repo and install
|
||||||
@@ -219,20 +219,20 @@ Some examples of installing it this way:
|
|||||||
|
|
||||||
```bash
|
```bash
|
||||||
# x86-64
|
# x86-64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.6/bottom_0.14.6-1_amd64.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.7/bottom_0.14.7-1_amd64.deb
|
||||||
sudo dpkg -i bottom_0.14.6-1_amd64.deb
|
sudo dpkg -i bottom_0.14.7-1_amd64.deb
|
||||||
|
|
||||||
# ARM64
|
# ARM64
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.6/bottom_0.14.6-1_arm64.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.7/bottom_0.14.7-1_arm64.deb
|
||||||
sudo dpkg -i bottom_0.14.6-1_arm64.deb
|
sudo dpkg -i bottom_0.14.7-1_arm64.deb
|
||||||
|
|
||||||
# ARM
|
# ARM
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.6/bottom_0.14.6-1_armhf.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.7/bottom_0.14.7-1_armhf.deb
|
||||||
sudo dpkg -i bottom_0.14.6-1_armhf.deb
|
sudo dpkg -i bottom_0.14.7-1_armhf.deb
|
||||||
|
|
||||||
# musl-based
|
# musl-based
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.6/bottom-musl_0.14.6-1_amd64.deb
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.7/bottom-musl_0.14.7-1_amd64.deb
|
||||||
sudo dpkg -i bottom-musl_0.14.6-1_amd64.deb
|
sudo dpkg -i bottom-musl_0.14.7-1_amd64.deb
|
||||||
```
|
```
|
||||||
|
|
||||||
### Exherbo Linux
|
### Exherbo Linux
|
||||||
@@ -274,8 +274,8 @@ sudo dnf install bottom
|
|||||||
For example:
|
For example:
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.6/bottom-0.14.6-1.x86_64.rpm
|
curl -LO https://github.com/ClementTsang/bottom/releases/download/0.14.7/bottom-0.14.7-1.x86_64.rpm
|
||||||
sudo dnf install ./bottom-0.14.6-1.x86_64.rpm
|
sudo dnf install ./bottom-0.14.7-1.x86_64.rpm
|
||||||
```
|
```
|
||||||
|
|
||||||
### Gentoo
|
### Gentoo
|
||||||
|
|||||||
File diff suppressed because it is too large
Load Diff
@@ -5,4 +5,5 @@ set -e
|
|||||||
cd "$(dirname "$0")";
|
cd "$(dirname "$0")";
|
||||||
cd ../..
|
cd ../..
|
||||||
|
|
||||||
|
mkdir -p schema/v$1
|
||||||
cargo run --manifest-path tools/schema_gen/Cargo.toml -- $1 > schema/v$1/bottom.json
|
cargo run --manifest-path tools/schema_gen/Cargo.toml -- $1 > schema/v$1/bottom.json
|
||||||
|
|||||||
Generated
+1
-1
@@ -111,7 +111,7 @@ dependencies = [
|
|||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "bottom"
|
name = "bottom"
|
||||||
version = "0.14.6"
|
version = "0.14.7"
|
||||||
dependencies = [
|
dependencies = [
|
||||||
"anyhow",
|
"anyhow",
|
||||||
"clap",
|
"clap",
|
||||||
|
|||||||
Reference in New Issue
Block a user