v1.0.43 Bug fixes

pull/151/head v1.0.43
aristocratos 2020-10-18 15:49:53 +02:00
parent 85d7049d1c
commit 504a0ed337
3 changed files with 9 additions and 2 deletions

View File

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

View File

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

View File

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