mirror of https://github.com/aristocratos/bpytop
parent
50ef08ef58
commit
173adf8556
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# 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
|
## v1.0.56
|
||||||
|
|
||||||
* Fixed: units_to_bytes returning 0 if input value <10 and in bits
|
* Fixed: units_to_bytes returning 0 if input value <10 and in bits
|
||||||
|
|
|
@ -55,7 +55,7 @@ if errors:
|
||||||
print("\nInstall required modules!\n")
|
print("\nInstall required modules!\n")
|
||||||
raise SystemExit(1)
|
raise SystemExit(1)
|
||||||
|
|
||||||
VERSION: str = "1.0.56"
|
VERSION: str = "1.0.57"
|
||||||
|
|
||||||
#? Argument parser ------------------------------------------------------------------------------->
|
#? Argument parser ------------------------------------------------------------------------------->
|
||||||
args = argparse.ArgumentParser()
|
args = argparse.ArgumentParser()
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
[tool.poetry]
|
[tool.poetry]
|
||||||
name = "bpytop"
|
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."
|
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
|
||||||
readme = "README.md"
|
readme = "README.md"
|
||||||
authors = ["Aristocratos <jakob@qvantnet.com>"]
|
authors = ["Aristocratos <jakob@qvantnet.com>"]
|
||||||
|
|
Loading…
Reference in New Issue