From 079b8e7135ff61061cf1befd7e5235448d9835dc Mon Sep 17 00:00:00 2001 From: aristocratos Date: Thu, 8 Oct 2020 17:43:04 +0200 Subject: [PATCH] v1.0.41 Small fixes --- CHANGELOG.md | 6 ++++++ bpytop.py | 2 +- pyproject.toml | 2 +- 3 files changed, 8 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7fb8464..4000f40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.0.41 + +* Fixed: Battery status not using same sensors as psutil +* Added: Stripping of .local from /host clock format +* Fixed: Battery clear if removed + ## v1.0.40 * Fixed: Title leading whitespace diff --git a/bpytop.py b/bpytop.py index dbb3a15..a79b1be 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.40" +VERSION: str = "1.0.41" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index 2f60ee0..8bc3798 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.40" +version = "1.0.41" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]