mirror of https://github.com/aristocratos/bpytop
parent
85d7049d1c
commit
504a0ed337
|
@ -1,5 +1,12 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.0.43
|
||||||
|
|
||||||
|
* Fixed: Battery meter not clearing properly when disabled
|
||||||
|
* Fixed: Correction for broken cpu high and cpu critical temps
|
||||||
|
* Fixed: get_cpu_name() function for some Xeon cpus
|
||||||
|
* Fixed: Additional error handling to prevent crashes from graph and swap toggles
|
||||||
|
|
||||||
## v1.0.42
|
## v1.0.42
|
||||||
|
|
||||||
* Fixed: Battery status not using same sensors as psutil
|
* Fixed: Battery status not using same sensors as psutil
|
||||||
|
|
|
@ -56,7 +56,7 @@ if errors:
|
||||||
print("\nInstall required modules!\n")
|
print("\nInstall required modules!\n")
|
||||||
raise SystemExit(1)
|
raise SystemExit(1)
|
||||||
|
|
||||||
VERSION: str = "1.0.42"
|
VERSION: str = "1.0.43"
|
||||||
|
|
||||||
#? 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.42"
|
version = "1.0.43"
|
||||||
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