summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPaul Buetow (mars.fritz.box) <paul@buetow.org>2011-11-19 12:04:29 +0100
committerPaul Buetow (mars.fritz.box) <paul@buetow.org>2011-11-19 12:04:29 +0100
commitb6668e0d62823fbefd8770128f5d5a3055813f2d (patch)
treeb4075080508c9840d6e7eaf6d06383ca48d3bcd6
parent50266f273c81f1d46b3025fed4dfbbb71f04f9e5 (diff)
Release v0.2.2
-rw-r--r--CHANGELOG8
-rwxr-xr-xloadbars.pl4
2 files changed, 10 insertions, 2 deletions
diff --git a/CHANGELOG b/CHANGELOG
index cd10155..ba1ffff 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -1,3 +1,11 @@
+Sat Nov 19 11:54:51 CET 2011
+* Released v0.2.2
+* Added a 1px horizontal line to each bar which represent the max. peak
+ of user and system cpu load of the last N samples (max. of the last 15
+ samples by default, it can be configured using --average)
+* Default value for --average has been decreased from 30 to 15 sample
+ values
+
Fr 12. Aug 21:41:46 CEST 2011
* Released v0.2.1
diff --git a/loadbars.pl b/loadbars.pl
index ad7bb45..9136911 100755
--- a/loadbars.pl
+++ b/loadbars.pl
@@ -26,7 +26,7 @@ use threads::shared;
use constant {
DEPTH => 8,
- VERSION => 'loadbars v0.2.2-devel',
+ VERSION => 'loadbars v0.2.2',
Copyright => '2010-2011 (c) Paul Buetow <loadbars@mx.buetow.org>',
BLACK => SDL::Color->new(-r => 0x00, -g => 0x00, -b => 0x00),
BLUE => SDL::Color->new(-r => 0x00, -g => 0x00, -b => 0xff),
@@ -555,7 +555,7 @@ END
togglecpu => { menupos => 1, help => 'Toggle CPUs (0 or 1)', mode => 7, type => 'i' },
togglecpu_hot => { menupos => 2, cmd => '1', help => 'Toggle CPUs', mode => 1 },
- average => { menupos => 3, help => 'Set number of samples for calculating avg.', mode => 6, type => 'i' },
+ average => { menupos => 3, help => 'Num of samples for avg. (more fluent animations)', mode => 6, type => 'i' },
average_hot_up => { menupos => 4, cmd => 'a', help => 'Increases number of samples for calculating avg. by 1', mode => 1 },
average_hot_dn => { menupos => 5, cmd => 'y', help => 'Decreases number of samples for calculating avg. by 1', mode => 1 },