mirror of https://github.com/aristocratos/bpytop
parent
50be6ff7bf
commit
5ec17b0e22
|
@ -1,5 +1,10 @@
|
||||||
# Changelog
|
# 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
|
## v1.0.53
|
||||||
|
|
||||||
* Added: Process update multiplier (only update processes every X times) to reduce cpu usage (set to 2 by default)
|
* Added: Process update multiplier (only update processes every X times) to reduce cpu usage (set to 2 by default)
|
||||||
|
|
|
@ -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.53"
|
VERSION: str = "1.0.54"
|
||||||
|
|
||||||
#? 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.53"
|
version = "1.0.54"
|
||||||
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