Browse Source

v1.0.56 New features and some bug fixes

pull/233/head v1.0.56
aristocratos 4 years ago
parent
commit
eb3f7e2ec3
  1. 3
      CHANGELOG.md
  2. 2
      bpytop.py
  3. 2
      pyproject.toml

3
CHANGELOG.md

@ -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

2
bpytop.py

@ -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()

2
pyproject.toml

@ -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>"]

Loading…
Cancel
Save