summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2020-09-12 14:27:41 +0200
committeraristocratos <gnmjpl@gmail.com>2020-09-12 14:27:41 +0200
commit95183128e6a825f5007a65ef559be835b10eb784 (patch)
treea2bc4448c56c316fe2c49eb7876efaa2731df7f8
parent8f589f1931b8cba9f835db46d64907023b9e188e (diff)
v1.0.29 Battery stats fixesv1.0.29
-rw-r--r--CHANGELOG.md4
-rwxr-xr-xbpytop.py2
-rw-r--r--pyproject.toml2
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index b6f06e4..8255e12 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,9 @@
# Changelog
+## v1.0.29
+
+* Fixed: Battery percent converted to integer and battery time hidden at 100% level
+
## v1.0.28
* Fixed: Battery meter causing crash when connecting/disconnecting battery
diff --git a/bpytop.py b/bpytop.py
index e63ba20..9eeae12 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.28"
+VERSION: str = "1.0.29"
#? Argument parser ------------------------------------------------------------------------------->
if len(sys.argv) > 1:
diff --git a/pyproject.toml b/pyproject.toml
index 7e838d7..d144c7f 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
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."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]