From 925e39cd84be0f9c26d8fefdc3e30ecf21390ce9 Mon Sep 17 00:00:00 2001 From: aristocratos Date: Sun, 25 Oct 2020 01:33:42 +0200 Subject: [PATCH] v1.0.45 Fixes, changes and new features --- 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 ad6d9d4..c0b6f1c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v1.0.45 + +* Fixed: Missing temps if high or crit is None, by @TheComputerGuy96 +* Changed: Some refactoring by @dpshelio +* Added: Proper mapping for correct coretemp display and added toggle for coretemp +* Fixed: Cleanup of escaped characters in process argument string + ## v1.0.44 * Added: Spread CPUs accross columns evenly if possible, by @ErwinJunge diff --git a/bpytop.py b/bpytop.py index 0bd79ea..c4a8cce 100755 --- a/bpytop.py +++ b/bpytop.py @@ -55,7 +55,7 @@ if errors: print("\nInstall required modules!\n") raise SystemExit(1) -VERSION: str = "1.0.44" +VERSION: str = "1.0.45" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index 9d16699..132f035 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.44" +version = "1.0.45" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]