v1.0.30 Battery stat fix and argument parsing optimization

pull/122/head v1.0.30
aristocratos 2020-09-12 15:10:39 +02:00
parent 9b05d987ce
commit 96ffae4310
3 changed files with 7 additions and 2 deletions

View File

@ -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

View File

@ -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()

View File

@ -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 <jakob@qvantnet.com>"]