v1.0.57 Added support for non-truecolor terminals + bug fixes

pull/236/head v1.0.57
aristocratos 2021-01-06 16:28:51 +01:00
parent 50ef08ef58
commit 173adf8556
3 changed files with 8 additions and 2 deletions

View File

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

View File

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

View File

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