From 3304dacd246b475492eeff55dfb034fdeacfc497 Mon Sep 17 00:00:00 2001 From: aristocratos Date: Tue, 5 May 2020 21:37:55 +0200 Subject: [PATCH] v0.8.25 Fixes cpu temp graphs and backspace not registering --- CHANGELOG.md | 6 ++++++ bashtop | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7104d79..eac20bb 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## v0.8.25 + +* Fixed: Backspace not registering when not set to send ascii delete +* Fixed: Broken cpu temperature graph when is value over cpu high temp +* Added: Possibilty to run date through background fifo for bash <5 + ## v0.8.24 * Fixed: Input error freezes, by changing from using "read" command to using "dd" for reading keyboard input. diff --git a/bashtop b/bashtop index 785c61c..e959d7f 100755 --- a/bashtop +++ b/bashtop @@ -64,7 +64,7 @@ banner=( "██╔══██╗██╔══██║╚════██║██╔══██║ ██║ ██║ ██║██╔═══╝ " "██████╔╝██║ ██║███████║██║ ██║ ██║ ╚██████╔╝██║ " "╚═════╝ ╚═╝ ╚═╝╚══════╝╚═╝ ╚═╝ ╚═╝ ╚═════╝ ╚═╝ ") -declare version="0.8.24" +declare version="0.8.25" declare banner_width=${#banner[0]} banner_colors=("#E62525" "#CD2121" "#B31D1D" "#9A1919" "#801414")