v1.0.45 Fixes, changes and new features

pull/165/head v1.0.45
aristocratos 2020-10-25 01:33:42 +02:00
parent 87af2875f9
commit 925e39cd84
3 changed files with 9 additions and 2 deletions

View File

@ -1,5 +1,12 @@
# Changelog # Changelog
## v1.0.45
* Fixed: Missing temps if high or crit is None, by @TheComputerGuy96
* Changed: Some refactoring by @dpshelio
* Added: Proper mapping for correct coretemp display and added toggle for coretemp
* Fixed: Cleanup of escaped characters in process argument string
## v1.0.44 ## v1.0.44
* Added: Spread CPUs accross columns evenly if possible, by @ErwinJunge * Added: Spread CPUs accross columns evenly if possible, by @ErwinJunge

View File

@ -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.44" VERSION: str = "1.0.45"
#? Argument parser -------------------------------------------------------------------------------> #? Argument parser ------------------------------------------------------------------------------->
args = argparse.ArgumentParser() args = argparse.ArgumentParser()

View File

@ -1,6 +1,6 @@
[tool.poetry] [tool.poetry]
name = "bpytop" name = "bpytop"
version = "1.0.44" version = "1.0.45"
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>"]