Browse Source

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

pull/236/head v1.0.57
aristocratos 4 years ago
parent
commit
173adf8556
  1. 6
      CHANGELOG.md
  2. 2
      bpytop.py
  3. 2
      pyproject.toml

6
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

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

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

Loading…
Cancel
Save