From 8f9e8e852d3553393a0201afa6ee989a83051d36 Mon Sep 17 00:00:00 2001 From: aristocratos Date: Mon, 14 Sep 2020 18:12:23 +0200 Subject: [PATCH] v1.0.32 Bug fixes and new features --- CHANGELOG.md | 8 ++++++++ bpytop.py | 2 +- pyproject.toml | 2 +- 3 files changed, 10 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6a4672f..353c6d0 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ # Changelog +## v1.0.32 + +* Added: Symbol for battery inactive +* Fixed: Cpu model name exception for certain xeon cpus +* Fixed: Exception when sending signal using uppercase T, K, I +* Fixed: Battery meter placement calculation correction +* Added: Support for OSX cpu core temperatures via coretemp program + ## v1.0.31 * Fixed: Battery meter redraw after terminal resize diff --git a/bpytop.py b/bpytop.py index 5174273..aceaa99 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.31" +VERSION: str = "1.0.32" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index 586bb56..fb7f4fc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.31" +version = "1.0.32" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]