v1.0.37 Bug fixes

pull/135/head v1.0.37
aristocratos 2020-09-22 20:15:43 +02:00
parent c7a1c7cfae
commit c4fa23e890
3 changed files with 7 additions and 2 deletions

View File

@ -1,5 +1,10 @@
# Changelog # Changelog
## v1.0.37
* Fixed: Swap toggle rare crash
* Fixed: Cpu sensor option to trigger temp toggle if check temp is true
## v1.0.36 ## v1.0.36
* Added: Rounding for floating_humanizer() short option * Added: Rounding for floating_humanizer() short option

View File

@ -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.36" VERSION: str = "1.0.37"
#? 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.36" version = "1.0.37"
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>"]