v1.0.23 New features and some fixes

pull/108/head v1.0.23
aristocratos 2020-09-05 17:56:43 +02:00
parent d9ac68b9b2
commit dee2951e3a
3 changed files with 11 additions and 2 deletions

View File

@ -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

View File

@ -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:

View File

@ -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>"]