v0.8.19 New feature: disks io stats + fixes

pull/85/head v0.8.19
aristocratos 2020-05-02 00:17:44 +02:00
parent f1588c4c12
commit 533d1948f7
2 changed files with 9 additions and 1 deletions

View File

@ -1,6 +1,14 @@
# Changelog # Changelog
## v0.8.19
* Added: Disks read and write stats, requires new optional dependency "iostat (part of sysstat)"
* Fixed: Ctrl-C not working when showing resize error message
* Fixed: Network download/upload offset auto switched off if /proc/net/dev resets
* Fixed: Removed trailing whitespace in script
## v0.8.18 ## v0.8.18
* Added: Pagination for help and options windows if items don't fit * Added: Pagination for help and options windows if items don't fit
* Added: Option to turn off color gradient in process list * Added: Option to turn off color gradient in process list
* Changed: bash version check to use $BASH_VERSINFO array * Changed: bash version check to use $BASH_VERSINFO array

View File

@ -64,7 +64,7 @@ banner=(
"██╔══██╗██╔══██║╚════██║██╔══██║ ██║ ██║ ██║██╔═══╝ " "██╔══██╗██╔══██║╚════██║██╔══██║ ██║ ██║ ██║██╔═══╝ "
"██████╔╝██║ ██║███████║██║ ██║ ██║ ╚██████╔╝██║ " "██████╔╝██║ ██║███████║██║ ██║ ██║ ╚██████╔╝██║ "
"╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ") "╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ")
declare version="0.8.18" declare version="0.8.19"
declare banner_width=${#banner[0]} declare banner_width=${#banner[0]}
banner_colors=("#E62525" "#CD2121" "#B31D1D" "#9A1919" "#801414") banner_colors=("#E62525" "#CD2121" "#B31D1D" "#9A1919" "#801414")