mirror of https://github.com/aristocratos/bpytop
parent
b4873584e6
commit
8f9e8e852d
|
@ -1,5 +1,13 @@
|
|||
# Changelog
|
||||
|
||||
## v1.0.32
|
||||
|
||||
* Added: Symbol for battery inactive
|
||||
* Fixed: Cpu model name exception for certain xeon cpus
|
||||
* Fixed: Exception when sending signal using uppercase T, K, I
|
||||
* Fixed: Battery meter placement calculation correction
|
||||
* Added: Support for OSX cpu core temperatures via coretemp program
|
||||
|
||||
## v1.0.31
|
||||
|
||||
* Fixed: Battery meter redraw after terminal resize
|
||||
|
|
|
@ -56,7 +56,7 @@ if errors:
|
|||
print("\nInstall required modules!\n")
|
||||
raise SystemExit(1)
|
||||
|
||||
VERSION: str = "1.0.31"
|
||||
VERSION: str = "1.0.32"
|
||||
|
||||
#? Argument parser ------------------------------------------------------------------------------->
|
||||
args = argparse.ArgumentParser()
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
[tool.poetry]
|
||||
name = "bpytop"
|
||||
version = "1.0.31"
|
||||
version = "1.0.32"
|
||||
description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes."
|
||||
readme = "README.md"
|
||||
authors = ["Aristocratos <jakob@qvantnet.com>"]
|
||||
|
|
Loading…
Reference in New Issue