change: add '/s' to network usage legend (#557)
Adds "/s" to the the network usage graph legend.
This commit is contained in:
parent
a7464d25af
commit
bacaca5548
|
@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
||||||
|
|
||||||
## [0.6.4]/[0.7.0] - Unreleased
|
## [0.6.4]/[0.7.0] - Unreleased
|
||||||
|
|
||||||
|
## Changes
|
||||||
|
|
||||||
|
- [#557](https://github.com/ClementTsang/bottom/pull/557): Add '/s' to network usage legend.
|
||||||
|
|
||||||
## Internal Changes
|
## Internal Changes
|
||||||
|
|
||||||
- [#551](https://github.com/ClementTsang/bottom/pull/551): Disable AUR package generation in release pipeline since it's now in community.
|
- [#551](https://github.com/ClementTsang/bottom/pull/551): Disable AUR package generation in release pipeline since it's now in community.
|
||||||
|
|
Binary file not shown.
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 33 KiB |
Binary file not shown.
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 118 KiB |
|
@ -435,8 +435,8 @@ pub fn convert_network_data_points(
|
||||||
);
|
);
|
||||||
|
|
||||||
let unit = match network_unit_type {
|
let unit = match network_unit_type {
|
||||||
DataUnit::Byte => "B",
|
DataUnit::Byte => "B/s",
|
||||||
DataUnit::Bit => "b",
|
DataUnit::Bit => "b/s",
|
||||||
};
|
};
|
||||||
|
|
||||||
let (rx_data, tx_data, total_rx_data, total_tx_data) = match network_unit_type {
|
let (rx_data, tx_data, total_rx_data, total_tx_data) = match network_unit_type {
|
||||||
|
@ -501,7 +501,7 @@ pub fn convert_network_data_points(
|
||||||
}
|
}
|
||||||
} else {
|
} else {
|
||||||
let rx_display = format!(
|
let rx_display = format!(
|
||||||
"RX: {:<8} All: {}",
|
"RX: {:<10} All: {}",
|
||||||
if network_use_binary_prefix {
|
if network_use_binary_prefix {
|
||||||
format!("{:.1}{:3}", rx_converted_result.0, rx_converted_result.1)
|
format!("{:.1}{:3}", rx_converted_result.0, rx_converted_result.1)
|
||||||
} else {
|
} else {
|
||||||
|
@ -520,7 +520,7 @@ pub fn convert_network_data_points(
|
||||||
}
|
}
|
||||||
);
|
);
|
||||||
let tx_display = format!(
|
let tx_display = format!(
|
||||||
"TX: {:<8} All: {}",
|
"TX: {:<10} All: {}",
|
||||||
if network_use_binary_prefix {
|
if network_use_binary_prefix {
|
||||||
format!("{:.1}{:3}", tx_converted_result.0, tx_converted_result.1)
|
format!("{:.1}{:3}", tx_converted_result.0, tx_converted_result.1)
|
||||||
} else {
|
} else {
|
||||||
|
|
Loading…
Reference in New Issue