diff --git a/CHANGELOG.md b/CHANGELOG.md index 990a8f4..79a35fd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,13 @@ #Changelog +## v1.0.2 + +* Added: IndexError catch for cpu temperature collection +* Fixed: net_io_counters() not iterating over itself +* Fixed: Clear mouse queue to avoid accidental character interpretation +* Added: "/etc/bpytop.conf" as default seed for config file creation if it exists. +* Added: Error handling for exception in psutil.cpu_freq() + ## v1.0.1 * Fixed: Bad assumption of cpu model name string contents. diff --git a/README.md b/README.md index ab78932..09239aa 100644 --- a/README.md +++ b/README.md @@ -5,7 +5,7 @@ ![FreeBSD](https://img.shields.io/badge/-FreeBSD-red?logo=freebsd) ![Usage](https://img.shields.io/badge/Usage-System%20resource%20monitor-blue) ![Python](https://img.shields.io/badge/Python-v3.6%5E-orange?logo=python) -![bashtop_version](https://img.shields.io/github/v/tag/aristocratos/bpytop?label=version) +![bpytop_version](https://img.shields.io/github/v/tag/aristocratos/bpytop?label=version) [![Donate](https://img.shields.io/badge/-Donate-yellow?logo=paypal)](https://paypal.me/aristocratos) [![Sponsor](https://img.shields.io/badge/-Sponsor-red?logo=github)](https://github.com/sponsors/aristocratos) [![Coffee](https://img.shields.io/badge/-Buy%20me%20a%20Coffee-grey?logo=Ko-fi)](https://ko-fi.com/aristocratos) @@ -195,7 +195,9 @@ sudo make uninstall All options changeable from within UI. Config files stored in "$HOME/.config/bpytop" folder -#### bashtop.cfg: (auto generated if not found) +#### bpytop.cfg: (auto generated if not found) + +"/etc/bpytop.conf" will be used as default seed for config file creation if it exists. ```bash #? Config file for bpytop v. 1.0.0 diff --git a/bpytop.py b/bpytop.py index a9401ed..58ff979 100755 --- a/bpytop.py +++ b/bpytop.py @@ -55,7 +55,7 @@ if errors: print("\nInstall required modules!\n") quit(1) -VERSION: str = "1.0.1" +VERSION: str = "1.0.2" #? Argument parser -------------------------------------------------------------------------------> if len(sys.argv) > 1: