mirror of https://github.com/aristocratos/bpytop
parent
86baed548c
commit
db17e13eb0
10
CHANGELOG.md
10
CHANGELOG.md
|
@ -1,5 +1,15 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.0.53
|
||||||
|
|
||||||
|
* Added: Process update multiplier (only update processes every X times) to reduce cpu usage (set to 2 by default)
|
||||||
|
* Changed: Patch for faster loading of config file, by @rohithill
|
||||||
|
* Added: Network interface list now updates automatically, by @UmarJ
|
||||||
|
* Notice: Bumped minimum python version to 3.7 because of unicode issues in 3.6
|
||||||
|
* Added: pylint disable=unsubscriptable-object because of python 3.9 issue
|
||||||
|
* Changed: Default theme now has a black background
|
||||||
|
* Fixed: Crash if bpytop.conf exists but don't have update_ms variable set
|
||||||
|
|
||||||
## v1.0.52
|
## v1.0.52
|
||||||
|
|
||||||
* Fixed: Removed "/sys/class/power_supply" check for FreeBSD and OsX
|
* Fixed: Removed "/sys/class/power_supply" check for FreeBSD and OsX
|
||||||
|
|
|
@ -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.52"
|
VERSION: str = "1.0.53"
|
||||||
|
|
||||||
#? 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.52"
|
version = "1.0.53"
|
||||||
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