From 6a7cd064afc30cc0819c9f6f37b70857d9df70e3 Mon Sep 17 00:00:00 2001 From: aristocratos Date: Mon, 3 Aug 2020 18:29:52 +0200 Subject: [PATCH] v1.0.1 Bug fixes --- CHANGELOG.md | 6 ++++++ bpytop.py | 4 +++- 2 files changed, 9 insertions(+), 1 deletion(-) 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:',