v1.0.56 New features and some bug fixes

pull/233/head v1.0.56
aristocratos 2021-01-05 03:10:03 +01:00
parent 1f183d97da
commit eb3f7e2ec3
3 changed files with 5 additions and 2 deletions

View File

@ -4,6 +4,9 @@
* Fixed: units_to_bytes returning 0 if input value <10 and in bits
* Added: Testing for some functions and classes
* Added: net_iface variable to set startup network interface, by @raTmole
* Added: use_fstab variable to get the disk list from /etc/fstab, by @BrHal
* Added: Categories in Options menu and only_physical option for disks
## v1.0.55

View File

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

View File

@ -1,6 +1,6 @@
[tool.poetry]
name = "bpytop"
version = "1.0.55"
version = "1.0.56"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]