summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authoraristocratos <gnmjpl@gmail.com>2020-09-05 17:56:43 +0200
committeraristocratos <gnmjpl@gmail.com>2020-09-05 17:56:43 +0200
commitdee2951e3a49db124846466d627523f02777b368 (patch)
tree6c1ecb51830b525f4d710ae3c7d4bc7145680387
parentd9ac68b9b268e14e29d778f3eb4e9077c84093d4 (diff)
v1.0.23 New features and some fixesv1.0.23
-rw-r--r--CHANGELOG.md9
-rwxr-xr-xbpytop.py2
-rw-r--r--pyproject.toml2
3 files changed, 11 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 1208f16..7a05856 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -1,5 +1,14 @@
# Changelog
+## v1.0.23
+
+* Added: View mode toggle with 3 presets, "full", "proc" and "stat"
+* Added: Rescaling of net stat box width on smaller terminal sizes
+* Changed: Net box height slight increase, mem/disks box height slight decrease
+* Fixed: Some element placement fixes by @RedBearAK
+* Fixed: "delete" and "filter" mouse click area misaligned
+* Added: Option to sync network scaling between download and upload
+
## v1.0.22
* Some refactoring and cleanup
diff --git a/bpytop.py b/bpytop.py
index f531dfb..de53131 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.22"
+VERSION: str = "1.0.23"
#? Argument parser ------------------------------------------------------------------------------->
if len(sys.argv) > 1:
diff --git a/pyproject.toml b/pyproject.toml
index b5685b4..577d2e9 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -1,6 +1,6 @@
[tool.poetry]
name = "bpytop"
-version = "1.0.22"
+version = "1.0.23"
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
readme = "README.md"
authors = ["Aristocratos <jakob@qvantnet.com>"]