v1.0.32 Bug fixes and new features

pull/122/head v1.0.32
aristocratos 2020-09-14 18:12:23 +02:00
parent b4873584e6
commit 8f9e8e852d
3 changed files with 10 additions and 2 deletions

View File

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

View File

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

View File

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