From 57778eee034f41b97af09148271db7ebbb77d6d3 Mon Sep 17 00:00:00 2001 From: aristocratos Date: Sun, 14 Feb 2021 11:26:20 +0100 Subject: [PATCH] v1.0.62 Bug fixes and new theme Adapta --- 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 2c201f4..9f4ab9d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v1.0.62 + +* Fixed: Support cpus with non-sequential core ids, patch by @ErwinJunge +* Added: New theme Adapta, by @olokelo +* Changed: Net graphs will now round up any value above 0 to register on graph + ## v1.0.61 * Added: Vim keys (h, j, k, l) for browsing and moved help to shift+h diff --git a/bpytop.py b/bpytop.py index ba38fe0..d935601 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.61" +VERSION: str = "1.0.62" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index 7b45f19..cd3bef1 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.61" +version = "1.0.62" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]