From e49030f9e5cf7ae00f71d7e0d26851ee8f3803d7 Mon Sep 17 00:00:00 2001 From: aristocratos Date: Sun, 6 Sep 2020 21:36:53 +0200 Subject: [PATCH] v1.0.25 Added more adaptation for small terminal sizes --- 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 2ea1c7b..cba9a26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.0.25 + +* Added: More sizing adaptation for processes +* Fixed: Clock centering + ## v1.0.24 * Fixed: "view_mode" option entry format diff --git a/bpytop.py b/bpytop.py index b6de90f..c10c761 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.24" +VERSION: str = "1.0.25" #? Argument parser -------------------------------------------------------------------------------> if len(sys.argv) > 1: diff --git a/pyproject.toml b/pyproject.toml index 2f8c7aa..fee574e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.24" +version = "1.0.25" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]