mirror of https://github.com/aristocratos/bpytop
parent
e4f65e7ef3
commit
6a7cd064af
|
@ -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
|
||||
|
|
|
@ -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:',
|
||||
|
|
Loading…
Reference in New Issue