v1.0.54 Bug fixes

pull/227/head v1.0.54
aristocratos 2020-12-31 20:00:31 +01:00
parent 50be6ff7bf
commit 5ec17b0e22
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog
## v1.0.54
* Fixed: Added nullfs filesystem to auto exclude from disks list
* Fixed: Process box not updating on window resize
## v1.0.53
* Added: Process update multiplier (only update processes every X times) to reduce cpu usage (set to 2 by default)

View File

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

View File

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