v1.0.58 IO graphs for disks and dedicated io mode + bug fixes

pull/259/head v1.0.58
aristocratos 2021-01-10 12:52:11 +01:00
parent 159abc377b
commit 655c866285
3 changed files with 12 additions and 2 deletions

View File

@ -1,5 +1,15 @@
# 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
* Fixed: proc_sorting option counter not updating in menu, by @UmarJ

View File

@ -55,7 +55,7 @@ if errors:
print("\nInstall required modules!\n")
raise SystemExit(1)
VERSION: str = "1.0.57"
VERSION: str = "1.0.58"
#? Argument parser ------------------------------------------------------------------------------->
args = argparse.ArgumentParser()

View File

@ -1,6 +1,6 @@
[tool.poetry]
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."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]