summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2021-01-06 16:28:51 +0100
committeraristocratos <gnmjpl@gmail.com>2021-01-06 16:28:51 +0100
commit173adf8556560d16a5ae3f3534a0994eb78fa3c0 (patch)
tree591ab86e8ecdb675aba63d5fccdfc78478277f3a
parent50ef08ef58bd2c5f8e78d2410f70c874d8bcd9b5 (diff)
v1.0.57 Added support for non-truecolor terminals + bug fixesv1.0.57
-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 ade4e04..c9af05f 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,11 @@
# Changelog
+## v1.0.57
+
+* Fixed: proc_sorting option counter not updating in menu, by @UmarJ
+* Added: Support for non truecolor terminals through 24-bit to 256-color conversion
+ * Activate by setting "truecolor" variable to False or starting with "-lc/--low-color" argument
+
## v1.0.56
* Fixed: units_to_bytes returning 0 if input value <10 and in bits
diff --git a/bpytop.py b/bpytop.py
index cccbdfa..2318804 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.56"
+VERSION: str = "1.0.57"
#? Argument parser ------------------------------------------------------------------------------->
args = argparse.ArgumentParser()
diff --git a/pyproject.toml b/pyproject.toml
index 47d174f..220226b 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bpytop"
-version = "1.0.56"
+version = "1.0.57"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]