mirror of https://github.com/aristocratos/bpytop
parent
159abc377b
commit
655c866285
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.0.58
|
||||||
|
|
||||||
|
* Added: Disks io stat graphs and a dedicated io mode for disks box
|
||||||
|
* Fixed: Better detection for disk io stats including multiple disks for OsX
|
||||||
|
* Changed: Terminate, Kill, Interrupt shortcuts now only uses uppercase T, K, I
|
||||||
|
* Changed: Process filtering changed to non case-sensitive, patch by @UmarJ
|
||||||
|
* Case-sensitive proc filtering using uppercase F
|
||||||
|
* Changed: Get CPU load average from psutil module instead of os module, patch by @araczkowski
|
||||||
|
* Fixed: Misc bugs
|
||||||
|
|
||||||
## v1.0.57
|
## v1.0.57
|
||||||
|
|
||||||
* Fixed: proc_sorting option counter not updating in menu, by @UmarJ
|
* Fixed: proc_sorting option counter not updating in menu, by @UmarJ
|
||||||
|
|
|
@ -55,7 +55,7 @@ if errors:
|
||||||
print("\nInstall required modules!\n")
|
print("\nInstall required modules!\n")
|
||||||
raise SystemExit(1)
|
raise SystemExit(1)
|
||||||
|
|
||||||
VERSION: str = "1.0.57"
|
VERSION: str = "1.0.58"
|
||||||
|
|
||||||
#? Argument parser ------------------------------------------------------------------------------->
|
#? Argument parser ------------------------------------------------------------------------------->
|
||||||
args = argparse.ArgumentParser()
|
args = argparse.ArgumentParser()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "bpytop"
|
name = "bpytop"
|
||||||
version = "1.0.57"
|
version = "1.0.58"
|
||||||
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
|
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = ["Aristocratos <jakob@qvantnet.com>"]
|
authors = ["Aristocratos <jakob@qvantnet.com>"]
|
||||||
|
|
Loading…
Reference in New Issue