summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2021-01-11 21:53:15 +0100
committeraristocratos <gnmjpl@gmail.com>2021-01-11 21:53:15 +0100
commitcc9c7dcc297e9e2fe1f8da54087e9dd46e150754 (patch)
tree519be9b014372ed76e957e14ab5fe40667c7ec30
parent877d774c96251c382c6dcddcac8c5b7c81cbba0a (diff)
v1.0.59 Bug fixesv1.0.59
-rw-r--r--CHANGELOG.md5
-rwxr-xr-xbpytop.py2
-rw-r--r--pyproject.toml2
3 files changed, 7 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index d1310ae..f83af2a 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,10 @@
# Changelog
+## v1.0.59
+
+* Fixed: Crash on missing disks
+* Fixed: IO stats text transparency
+
## v1.0.58
* Added: Disks io stat graphs and a dedicated io mode for disks box
diff --git a/bpytop.py b/bpytop.py
index 57fa77b..2cd1ab2 100755
--- a/bpytop.py
+++ b/bpytop.py
@@ -55,7 +55,7 @@ if errors:
print("\nInstall required modules!\n")
raise SystemExit(1)
-VERSION: str = "1.0.58"
+VERSION: str = "1.0.59"
#? Argument parser ------------------------------------------------------------------------------->
args = argparse.ArgumentParser()
diff --git a/pyproject.toml b/pyproject.toml
index 76899ce..bf312a2 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bpytop"
-version = "1.0.58"
+version = "1.0.59"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]