summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2020-09-13 10:54:22 +0200
committeraristocratos <gnmjpl@gmail.com>2020-09-13 10:54:22 +0200
commit9244b43b609f14b4aeeadcaec3d1a0c6680c0f53 (patch)
treeee897498c3eb044170757e83c58b71e925787250
parent2f32651a682b9868edfd4ab177718de9723bcc77 (diff)
v1.0.31 Small fixesv1.0.31
-rw-r--r--CHANGELOG.md6
-rwxr-xr-xbpytop.py2
-rw-r--r--pyproject.toml2
3 files changed, 8 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 5531fed..6a4672f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## v1.0.31
+
+* Fixed: Battery meter redraw after terminal resize
+* Fixed: Battery meter additional fixes
+* Fixed: Cpu temp color wrong on small sizes
+
## v1.0.30
* Changed: Argument parsing using argparse
diff --git a/bpytop.py b/bpytop.py
index 6040a7e..8c6d1e4 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.30"
+VERSION: str = "1.0.31"
#? Argument parser ------------------------------------------------------------------------------->
args = argparse.ArgumentParser()
diff --git a/pyproject.toml b/pyproject.toml
index 80e53bc..586bb56 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bpytop"
-version = "1.0.30"
+version = "1.0.31"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]