v1.0.1 Bug fixes

pull/27/head v1.0.1
aristocratos 2020-08-03 18:29:52 +02:00
parent e4f65e7ef3
commit 6a7cd064af
2 changed files with 9 additions and 1 deletions

View File

@ -1,5 +1,11 @@
#Changelog #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 ## v1.0.0
* First release * First release

View File

@ -55,7 +55,7 @@ if errors:
print("\nInstall required modules!\n") print("\nInstall required modules!\n")
quit(1) quit(1)
VERSION: str = "1.0.0" VERSION: str = "1.0.1"
#? Argument parser -------------------------------------------------------------------------------> #? Argument parser ------------------------------------------------------------------------------->
if len(sys.argv) > 1: if len(sys.argv) > 1:
@ -3435,6 +3435,8 @@ class Menu:
'The init screen is purely cosmetical and', 'The init screen is purely cosmetical and',
'slows down start to show status messages.'], 'slows down start to show status messages.'],
"update_check" : [ "update_check" : [
'Not implemented yet!'
'',
'Check for updates at start.', 'Check for updates at start.',
'', '',
'Checks for latest version from:', 'Checks for latest version from:',