mirror of https://github.com/aristocratos/bpytop
parent
da5dfe85e4
commit
d132889159
|
@ -1,5 +1,11 @@
|
||||||
# Changelog
|
# Changelog
|
||||||
|
|
||||||
|
## v1.0.36
|
||||||
|
|
||||||
|
* Added: Rounding for floating_humanizer() short option
|
||||||
|
* Fixed: Cpu temp not showing when manually selected and not auto detected
|
||||||
|
* Fixed Crash during theme change
|
||||||
|
|
||||||
## v1.0.35
|
## v1.0.35
|
||||||
|
|
||||||
* Fixed: Decimal placement in floating_humanizer() function
|
* Fixed: Decimal placement in floating_humanizer() function
|
||||||
|
|
|
@ -56,7 +56,7 @@ if errors:
|
||||||
print("\nInstall required modules!\n")
|
print("\nInstall required modules!\n")
|
||||||
raise SystemExit(1)
|
raise SystemExit(1)
|
||||||
|
|
||||||
VERSION: str = "1.0.35"
|
VERSION: str = "1.0.36"
|
||||||
|
|
||||||
#? 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.35"
|
version = "1.0.36"
|
||||||
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