From 96ffae4310c618836c31a887b9481e231786cb8d Mon Sep 17 00:00:00 2001 From: aristocratos Date: Sat, 12 Sep 2020 15:10:39 +0200 Subject: [PATCH] v1.0.30 Battery stat fix and argument parsing optimization --- 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 8255e12..5531fed 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,10 @@ # Changelog +## v1.0.30 + +* Changed: Argument parsing using argparse +* Fixed: Hide battery time when not known + ## v1.0.29 * Fixed: Battery percent converted to integer and battery time hidden at 100% level diff --git a/bpytop.py b/bpytop.py index bcec4e3..1a00bff 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.29" +VERSION: str = "1.0.30" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index d144c7f..80e53bc 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.29" +version = "1.0.30" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]