From 935c4e5d4d7180a44a2bdf97e6ee05c4257a644c Mon Sep 17 00:00:00 2001 From: aristocratos Date: Mon, 28 Sep 2020 16:16:43 +0200 Subject: [PATCH] v1.0.40 OsX and BSD crashfix when battery monitoring is enabled --- CHANGELOG.md | 5 +++++ bpytop.py | 2 +- pyproject.toml | 2 +- 3 files changed, 7 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 2e4d0f7..7fb8464 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.0.40 + +* Fixed: Title leading whitespace +* Fixed: Battery meter crash on non Linux systems + ## v1.0.39 * Fixed: Manual sensor selection screen refresh diff --git a/bpytop.py b/bpytop.py index b95f8d4..2469971 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.39" +VERSION: str = "1.0.40" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index 8556bfa..2f60ee0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.39" +version = "1.0.40" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]