diff --git a/CHANGELOG.md b/CHANGELOG.md index 8c5b1bd..990a8f4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ #Changelog +## v1.0.1 + +* Fixed: Bad assumption of cpu model name string contents. +* Added: Exception catch for psutil io_counters error caused by psutil < 5.7.0 and Linux kernel >= 5 +* Added: Error handling for psutil.net_io_counters() errors. + ## v1.0.0 * First release diff --git a/bpytop.py b/bpytop.py index 32d1a04..845e4ae 100755 --- a/bpytop.py +++ b/bpytop.py @@ -55,7 +55,7 @@ if errors: print("\nInstall required modules!\n") quit(1) -VERSION: str = "1.0.0" +VERSION: str = "1.0.1" #? Argument parser -------------------------------------------------------------------------------> if len(sys.argv) > 1: @@ -3435,6 +3435,8 @@ class Menu: 'The init screen is purely cosmetical and', 'slows down start to show status messages.'], "update_check" : [ + 'Not implemented yet!' + '', 'Check for updates at start.', '', 'Checks for latest version from:',