From 504a0ed3374ab9c91095df69d9f08dcb04454824 Mon Sep 17 00:00:00 2001 From: aristocratos Date: Sun, 18 Oct 2020 15:49:53 +0200 Subject: [PATCH] v1.0.43 Bug fixes --- CHANGELOG.md | 7 +++++++ bpytop.py | 2 +- 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 diff --git a/bpytop.py b/bpytop.py index 7ab3d3d..1c36b89 100755 --- a/bpytop.py +++ b/bpytop.py @@ -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 "]