v1.0.29 Battery stats fixes

pull/122/head v1.0.29
aristocratos 2020-09-12 14:27:41 +02:00
parent 8f589f1931
commit 95183128e6
3 changed files with 6 additions and 2 deletions

View File

@ -1,5 +1,9 @@
# Changelog # Changelog
## v1.0.29
* Fixed: Battery percent converted to integer and battery time hidden at 100% level
## v1.0.28 ## v1.0.28
* Fixed: Battery meter causing crash when connecting/disconnecting battery * Fixed: Battery meter causing crash when connecting/disconnecting battery

View File

@ -56,7 +56,7 @@ if errors:
print("\nInstall required modules!\n") print("\nInstall required modules!\n")
raise SystemExit(1) raise SystemExit(1)
VERSION: str = "1.0.28" VERSION: str = "1.0.29"
#? Argument parser -------------------------------------------------------------------------------> #? Argument parser ------------------------------------------------------------------------------->
if len(sys.argv) > 1: if len(sys.argv) > 1:

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "bpytop" name = "bpytop"
version = "1.0.28" version = "1.0.29"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md" readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"] authors = ["Aristocratos <jakob@qvantnet.com>"]