mirror of https://github.com/aristocratos/bashtop
parent
f1588c4c12
commit
533d1948f7
|
@ -1,6 +1,14 @@
|
|||
# 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
|
||||
|
||||
* Added: Pagination for help and options windows if items don't fit
|
||||
* Added: Option to turn off color gradient in process list
|
||||
* Changed: bash version check to use $BASH_VERSINFO array
|
||||
|
|
2
bashtop
2
bashtop
|
@ -64,7 +64,7 @@ banner=(
|
|||
"██╔══██╗██╔══██║╚════██║██╔══██║ ██║ ██║ ██║██╔═══╝ "
|
||||
"██████╔╝██║ ██║███████║██║ ██║ ██║ ╚██████╔╝██║ "
|
||||
"╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ")
|
||||
declare version="0.8.18"
|
||||
declare version="0.8.19"
|
||||
declare banner_width=${#banner[0]}
|
||||
banner_colors=("#E62525" "#CD2121" "#B31D1D" "#9A1919" "#801414")
|
||||
|
||||
|
|
Loading…
Reference in New Issue