diff options
author | aristocratos <gnmjpl@gmail.com> | 2020-10-18 15:49:53 +0200 |
---|---|---|
committer | aristocratos <gnmjpl@gmail.com> | 2020-10-18 15:49:53 +0200 |
commit | 504a0ed3374ab9c91095df69d9f08dcb04454824 (patch) | |
tree | 8ce6b347fa9ade9d4ac7008fd53bf3e1b404f08b | |
parent | 85d7049d1cc68d8ad4deef3fbdd5d2627237a5b8 (diff) |
v1.0.43 Bug fixesv1.0.43
-rw-r--r-- | CHANGELOG.md | 7 | ||||
-rwxr-xr-x | bpytop.py | 2 | ||||
-rw-r--r-- | pyproject.toml | 2 |
3 files changed, 9 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index 4929f87..e3a3cf8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # 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 * Fixed: Battery status not using same sensors as psutil @@ -56,7 +56,7 @@ if errors: print("\nInstall required modules!\n") raise SystemExit(1) -VERSION: str = "1.0.42" +VERSION: str = "1.0.43" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index f9a7daa..c1f68be 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] 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." readme = "README.md" authors = ["Aristocratos <jakob@qvantnet.com>"] |