summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2020-10-18 15:49:53 +0200
committeraristocratos <gnmjpl@gmail.com>2020-10-18 15:49:53 +0200
commit504a0ed3374ab9c91095df69d9f08dcb04454824 (patch)
tree8ce6b347fa9ade9d4ac7008fd53bf3e1b404f08b
parent85d7049d1cc68d8ad4deef3fbdd5d2627237a5b8 (diff)
v1.0.43 Bug fixesv1.0.43
-rw-r--r--CHANGELOG.md7
-rwxr-xr-xbpytop.py2
-rw-r--r--pyproject.toml2
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 <jakob@qvantnet.com>"]