diff --git a/CHANGELOG.md b/CHANGELOG.md index 88ff254..bcca370 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## v1.0.48 + +* Added: Sync clock to timer if timer = 1000ms +* Fixed: Wrong coretemp mapping when missing package id 0 +* Fixed: Sizing when coretemp is hidden +* Added: Link to Terminess Powerline with included braille symbols in README.md + ## v1.0.47 * Added: Testing, by @ErwinJunge diff --git a/bpytop.py b/bpytop.py index 2dc4313..7ea70b8 100755 --- a/bpytop.py +++ b/bpytop.py @@ -55,7 +55,7 @@ if errors: print("\nInstall required modules!\n") raise SystemExit(1) -VERSION: str = "1.0.47" +VERSION: str = "1.0.48" #? Argument parser -------------------------------------------------------------------------------> args = argparse.ArgumentParser() diff --git a/pyproject.toml b/pyproject.toml index beac80c..e9cf5c7 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "bpytop" -version = "1.0.47" +version = "1.0.48" description = "Resource monitor that shows usage and stats for processor, memory, disks, network and processes." readme = "README.md" authors = ["Aristocratos "]