include missing mboxscan.h;
[monky] / ChangeLog
1 # $Id$
2
3 2007-02-14
4         * Include missing mboxscan.h in conky.h.
5         * Fixed signedness warnings in conky.c.
6
7 2007-02-11
8         * Added buffer_text_size option to change the size of the buffer for
9         things like $exec, $tail, et cetera
10         * Added $mboxscan which lets you display the Subject and From fields
11         from recent email in an mbox file
12         * Disambiguated (is that a word?) $cpu docs
13
14 2007-01-14
15         * Fallback to gettimeofday() when clock_gettime () not available (mac os).
16
17 2007-01-09
18         * API change (timing in milliseconds) for dexter_timedsampler_new ().
19
20 2007-01-07
21         * Add config.rpath (created by gettextize -copy) to distribution
22           to satisfy AM_ICONV.
23         * Clean up some warnings; remove ftp.[ch] from src/Makefile.am.
24
25 2006-12-29
26         * Update svn ebuild to new sourceforge url scheme.
27                 - requires deletion of existing wc: rm -rf /usr/portage/distfile/svn-src/conky/
28         * Added head/tail rewrite patch (thanks Ryan Twitchell)
29         * Added diskio read/write sf.net patch 1542880 (thanks Blondak)
30
31 2006-12-26
32         * Clear conky vars on disconnect/failure to open files.
33
34 2006-12-23
35         * Updated to libmpdclient 0.12.0
36
37 2006-12-22
38         * client/server infrastructure and prototype for linux only (so far):
39                 - requires libdexter (http://sourceforge.net/projects/libdexter)
40                 and the dxt-sysinfo plugin (svn only at the moment).
41         * new config items:
42                 - dexter_client yes/no
43                 - dexter_server yes/no
44                 - dexter_config /path/to/libdexter/config (default: $HOME/.dexterrc)
45                 - own_window_class <WM Class Name> (default: Conky)
46                         - replaces wm_class_name
47                 - own_window_title <Window Title> (default: <hostname> - conky)
48         * removed config items:
49                 - wm_class_name (use own_window_class, same function)
50         * configure changes:
51           --disable-network (default=yes) with auto-detection for libdexter.
52                 - remove useless --enable-proc-uptime (PROC_UPTIME never referenced).  
53                         HAVE_SYSINFO and others determine if /proc/uptime is used.
54                 - silently disable xft, double-buffer and xdamage if no x11.
55                 - change enable/disable labels to reflect defaults accurately.
56                 - simplified compile-based checks for sysinfo/getloadavg and by moving
57                   them into AC_CHECK_FUNCS.
58         * allow decorated, own_window=yes windows to be given input focus by WM:
59                 - do not pass button clicks through to desktop in this scenario as conky
60                   immediately loses focus.  
61
62 2006-12-13
63         * Clarify LGPL license on timed_thread modules.
64         * Update NEWS files.
65
66 2006-12-12
67         * Split battery variable into two:
68                 battery, e.g. "charging 75%" and
69                 battery_time, e.g. "3h 15m".
70         * Conky 1.4.5 released.
71
72 2006-12-11
73         * Close pop3/imap sockets.
74         * Fix outstanding battery issues.
75
76 2006-12-10
77         * Fix peek table bug with new portmon code.
78
79 2006-12-09
80         * Replaced hash module used by libtcp-portmon with GLib's GHashTable,
81         due to licensing issue noted by Fedora Core packagers.
82         * Eliminated config items: 
83                 min_port_monitors,
84                 min_port_monitor_connections
85         * Added config item:
86                 max_port_monitor_connections
87
88 2006-11-30
89         * Added $entropy_avail, $entropy_poolsize and $entropy_bar
90         for the crypto freaks.  Idea suggested by Perttu Luukko
91         <nuteater@users.sourceforge.net> in feature request 1497050.
92         * Added max length specifier to audacious_title.  Closes
93         feature request #1600631.
94
95 2006-11-28
96         * Rearrange retry attempts in pop3 and imap code, removing sleep() 
97         calls which cause the whole process to sleep, not just the thread.
98
99 2006-11-22
100         * Added max_specials config item with default 512.  This should
101         close bug #1574523 for real this time.  Thanks to John Harrigan
102         <jfharrigan@fedex.com> for this one.
103
104 2006-11-21
105         * Changed autotools for subversion versioning.
106         * Updated svn ebuild for gentoo.
107         * Documentation updates for clarity, i.e. close bug #1599041.
108
109 2006-11-20
110         * fix compile error with --disable-xdamage when Xdamage.h not present.
111
112 2006-11-18
113         * fix bug where present rate var was not being read from acpi battery
114         state file: /proc/acpi/battery/%s/state.
115
116 2006-11-15
117         * Change linkstatus display for use_spacer.  Closes bug #1577580.
118
119 2006-11-14
120         * Fix compile error with --disable-x11.
121         * Add new timed thread abstraction routines.
122         * Convert thread activity to timed threads, including
123         texeci, imap, pop3, audacious.
124         * Change memory vars from unsigned long to unsigned long long
125         to fix reported overflow, e.g. swapmax >= 4Gb.
126
127 2006-11-13
128         * Use pthread_cond_timedwait() instead of sleep() in audacious
129         thread.  Will convert all worker threads to this timing method.  
130
131 2006-11-12
132         * Fix freebsd build error.
133         * Minor changes to syntax files.
134         * Conky 1.4.4 released.
135
136 2006-11-11
137         * Add max_user_text to documentation.
138         * Fixed BadWindow bugs (#1568366, #1588384).
139
140 2006-11-10
141         * Remove on_bottom and xmms_player completely.
142         * Closed ibm_temps bug #1591609.
143         * Conky 1.4.3 released.
144
145 2006-11-09
146         * Updated vim and nano syntax coloring scripts.
147         * Added extras/ dir with syntax stuff to distribution tarball.
148
149 2006-11-08
150         * Added new config item 'max_user_text' with default 16384,
151         twice as large as previous hard-coded default of 8192 bytes.
152         Increase as needed to accomodate large config files with a
153         great deal of text.  This closes SF bug #1574523.
154
155 2006-11-07
156         * Changes to configure.ac for pkg-config on x11/xext/xdamage,
157         with fallback to conventional checks.
158         * Fixed segmentation fault on SUGUSR1 bug.
159         * Commented out Imlib2 from configure.ac since it's only partially
160         implemented.
161
162 2006-11-04
163         * Removed broken mldonkey and seti support.
164         * Added Hellf[i]re's nano syntax coloring script to svn.
165
166 2006-11-03
167         * Removed support for Xmms, BMP and Infopipe from conky.  
168         The Xmms and Bmp players are projects are dead and distros such 
169         as Gentoo are slating them for removal.  
170         * Added support for Audacious using new audacious vars.
171
172 2006-10-18
173         * Implement WiFi signal level detection on FreeBSD (patch
174         by Stepan Zastupov)
175
176 2006-10-04
177         * Fix buffer overflow in parsing LC_ALL, LC_CTYPE and LANG
178         environment variables and fix crash for users with locale
179         name longer than 10 chars (repored by Michael Schwendt)
180
181 2006-09-30
182         * --enable-debug added.
183         * prevent libtool from adding its default CFLAGS
184
185 2006-09-28
186         * Use pkg-config instead of xft-config.
187         * Fix last line bug which had required padding text with extra blank line 
188         to see text on last line.
189
190 2006-09-01
191         * Fix type-punning and "differ in signedness" warnings seen with
192         gcc-4.1 -O2.
193
194 2006-08-27
195         * Fix compilation errors when building with --diable-x11; bug #1547164
196
197 2006-08-12
198         * Make configure script print summary info
199         * Make `conky -v` show compiled-in features
200
201 2006-08-10
202         * Added Spock's patches, adding hddtemp, goto and tab variables.
203
204 2006-07-13
205         * Added tztime patch to show time in arbitrary time zones (thanks Ram
206         Yalamanchili)
207
208 2006-06-07
209         * Small battery fix (thanks Nexox, sf.net patch 1500014)
210         * Fixed order of variables/objects in docs (thanks Peter Tarjan)
211
212 2006-05-27
213         * Fixed a bug with $font
214
215 2006-05-24
216         * Xdamage support for composite and pals
217
218 2006-05-23
219         * CPU voltage support via $voltage_mv and $voltage_v (thanks to Peter
220         Tarjan for the patch)
221
222 2006-05-21
223         * SMP support for $freq and $freq_g (thanks to Peter Tarjan for the
224         patch)
225
226 2006-05-17
227         * Fixed issue with graphs not reaching all the way to the borders
228         (sf.net bug 1470480)
229         * Cleaned up units
230
231 2006-05-15
232         * Conky 1.4.2 released
233
234 2006-05-13
235         * GNU Iconv support added, new objects $iconv_start and $iconv_stop
236         * Added some safety to the threading code
237
238 2006-05-09
239         * Changed $font behavior so that the font persists past the next
240         newline.  It can be set back to the default with $font with no args.
241         (closes bug 1478676 on sf.net)
242
243 2006-05-08
244         * Added simple POP3/IMAP mail clients
245
246 2006-04-23
247         * Added support for PowerBook batteries
248         * Fixed broken $if/$else stuff
249
250 2006-04-15
251         * Added patch from Peter Tarjan to add support for IBM ACPI
252         * Added xmms2 patch from Lassi Selander (sf.net patch 1469523)
253
254 2006-04-11
255         * Removed sa_restorer crap (may fix some compile errors for some
256         people)
257
258 2006-04-07
259         * Added patch for adt746x fan/cpu speed for kernel >=2.6.12
260
261 2006-03-30
262         * Added patch to support new port monitor REMOTESERVICE peekable.
263
264 2006-03-29
265         * Scan port numbers as short.  Fixes debian bug# 359974.
266
267 2006-03-25
268         * Added XMMS2 patch 1456203 from Lassi Selander
269         * Added FreeBSD battery patch 1456008 from Petr Holub
270
271 2006-03-21
272         * Fixed ${top(_mem)} related code on FreeBSD (with help of Petr
273         Holub <hopet@users.sourceforge.net>)
274
275 2006-03-15
276         * Removed bmp-infopipe dependency from 1.4.1 and 1.9999 ebuilds for Gentoo 
277         (Gentoo bug# 125226).
278         * Fixed subversion ebuild for conky1 (1.9999) so it pulls the new trunk
279         path for conky1.
280
281 2006-03-12
282         * FreeBSD cpu info patch
283         * Conky 1.4.1 released
284
285 2006-03-07
286         * Fixed issue where some WM's don't control conky own_window windows.
287         * Added newly-updated vim file detection and syntax hilighting files to svn.
288         * Fixed issue with graphs resetting colours (sf.net bug #1420473)
289
290 2006-03-06
291         * Fixed battery problems when charged
292         * MPD code handles broken pipe now, instead of just killing conky
293         * Switch from CVS to SVN.  Thanks SourceForge.
294
295 2006-03-05
296         * Added patch to make $cpu stuff work on alpha (thanks Thomas Cort)
297         http://bugs.gentoo.org/show_bug.cgi?id=122637#c3
298         * Stop using override_redirect true -- conky back under WM control
299         when using 'own_window yes'.
300         * Fixed texeci breakage when forking to background is on
301
302 2006-02-14
303         * Drastically simplified own_window=yes window creation code.
304         * on_bottom and wm_class_name deprecated (they do nothing)
305
306 2006-02-13
307         * Fixed typo bug in portmon code that caused incorrect monitor data 
308         to be displayed.
309
310 2006-02-12
311         * Conky 1.4.0 released
312
313 2006-01-27
314         * Cleaned up texeci code
315
316 2006-01-26
317         * Added freedesktop.org extended window manager hints (EWMH)
318         for window type NORMAL and state's STICKY/SKIP_PAGER/SKIP_TASKBAR.
319         Fixes stacking order issues with freedesktop-compliant wm's,
320         such as XFCE4+. 
321
322 2006-01-25
323         * Fixed stupid graph code (it still sucks) sf.net bug 1372962
324         * Fixed $if_* stuff, sf.net bug 1401338 and 1400854
325         * Fixed xmms.c code to load glib 1.2 shared object lib.
326
327 2006-01-11
328         * Added xmms version 1 support.
329         * Added bmp through 0.9.7.1 support.
330         * Added config item xmms_player: none, xmms, bmp, audacious or
331         infopipe.
332
333 2006-01-07
334         * Added Audacious media player support.
335
336 2006-01-06
337         * Fixed infopipe bug (select() affects timer as a side effect on
338         Linux!)
339
340 2006-01-05
341         * Added draw_graph_borders option
342         * Added XMMS/BMP InfoPipe plugin support
343
344 2006-01-01
345         * Conky 1.3.5 released
346
347 2005-12-31
348         * Fixed bug with use_xft causing ignorance of font selection (sf.net
349         bug 1387564)
350         * Fixed issue with parsing of hex values for colours
351
352 2005-12-30
353         * Added BMPx (http://beep-media-player.org/) support
354
355 2005-12-14
356         * Fixed issues with execi stuff
357
358 2005-12-10
359         * Added sf.net patch 1374576
360
361 2005-12-05
362         * Fixed sf.net bug 1367745
363
364 2005-11-30
365         * Fixed sf.net bugs 1369607, 1367735 and gentoo bug 113921, 
366           all variations of the same array out of bounds issue.
367         * "Fixed" code in fs.c and conky.c to make fs stats match those displayed by df (affects reporting against ext3 filesystems only)
368
369 2005-11-27 
370         * new code in linux.c and top.c to calculate CPU % correctly on 2.6 kernels.
371
372 2005-11-24
373         * Fixed gentoo bug# 113219
374
375 2005-11-23
376         * Added #define/#undef SIGNAL_BLOCKING in conky.c for experimenting
377         with synchronous signal processing. set to #undef for previous behavior.
378         * Use POSIX signal api's, not the ANSI signal().
379
380 2005-11-22
381         * Fixed IP address bug (sf.net bug 1359055)
382
383 2005-11-16
384         * Conky 1.3.4 released
385
386 2005-11-12
387         * Replaced bitwise copy of tcp_connection_t with function
388         copy_tcp_connection().
389         * Changed call interfaces for get_acpi_fan(), get_acpi_ac_adapter(),   
390         get_freq(), get_freq_dynamic(), get_adt746x_cpu(), get_adt746x_fan(),
391         eliminating all mallocs.  pkovacs.  See bug 1355470.
392
393 2005-11-11
394         * moved hash sizing code into portmon lib, where it belongs
395         * More mem leaks fixed.
396
397 2005-11-10
398         * Added config items min_port_monitors / min_port_monitor_connections
399
400 2005-11-09
401         * Cleaned up top code, bug fixes
402         * Fixed some memory leaks
403
404 2005-11-08
405         * Fix bug# 1351686.  Patch by boojit.
406         * Fixed 1331576 (I think) with bad cpu usage reporting
407
408 2005-11-01
409         * Documentation updates for compiling and port monitoring
410         * Removed cairo stuff (it's useless)
411
412 2005-10-31
413         * Added statfs sf.net patch 1344493
414
415 2005-10-30
416         * Added tcp port monitor support (pkovacs)
417
418 2005-10-28
419         * Added WM_CLASS patch from sf.net patch 1340825
420
421 2005-10-21
422         * acpi segfault should be fixed (sf.net bug 1330893)
423         * SIGUSR1 bug fixed? (sf.net bug 1330914)
424
425 2005-10-17
426         * Ugly MPD mem leak fixed
427         * Other mem leaks fixed
428         * Fixed thing where conky exits if LC_ALL and friends isn't set
429         * Conky 1.3.3 released
430
431 2005-10-13
432         * Conky 1.3.2 released
433
434 2005-10-10
435         * More MPD objects (sf.net patch 1319461)
436
437 2005-10-07
438         * fixed mldonkey bug? sf.net bug 1316531
439
440 2005-09-30
441         * Linkstatus patch from btlee on f.g.o (see
442         http://forums.gentoo.org/viewtopic-p-2765647.html#2765647)
443
444 2005-09-29
445         * Fixed build on FreeBSD for non-i386
446         * Made it so top_mem doesn't show all the forks of one process
447
448 2005-09-27
449         * Fixed small bug in config parsing (thanks robgrady, bug 1306032)
450
451 2005-09-24
452         * Fixed bug where graphs/bars don't show when maximum_width is enabled
453
454 2005-09-15
455         * Fixed right-alignment bug thanks to Pascal Eberhard
456         * Applied patch 1291420 from sf.net
457         * Fixed issue with whack graph data
458         * Fixed issue with Conky quitting when a file fails to load
459
460 2005-09-11
461         * Fixed bug with xft and double buffer in own window
462         * 1.3.1 released
463
464 2005-09-04
465         * Misc small bug fixes
466
467 2005-09-03
468         * MPD patch (sf.net patch 1281108)
469         * Fixed graph width bug
470
471 2005-08-31
472         * FreeBSD support was added
473         * 1.3.0 released
474
475 2005-08-27
476         * added threaded execi, $texeci
477         * feature freeze
478
479 2005-08-26
480         * Fixed slight vertical misalignment of bars/graphs (sf.net 1273994)
481         * Diskio fixes (sf.net 1274140)
482         * $alignr and $alignc now have 25% more goodness! (sf.net bug 1273905)
483         * Far better SMP support
484         * Added support for i8k kernel driver, parsing information for dell inspiron laptops found in /proc/i8k (sf.net request 1256058)
485
486 2005-08-25
487         * More own_window fixes
488         * applied disk io patch (sf.net patch 1271691)
489         * applied $freq fixes patch, adds new $freq_dyn (sf.net patch 1271633)
490         * removed units from $freq* output
491         * fix for graph config parsing
492         * Added $head, fixed mem leak with $tail
493
494 2005-08-24
495         * More configure and makefile updates
496         * Added scale arg for net graphs
497         * Fixed bug in own_window stuff--amazing fake transparency now works
498         properly
499         * added own_window_colour, own_window_transparent
500
501 2005-08-23
502         * Added maximum_width
503
504 2005-08-22
505         * Added $execibar and $execigraph
506
507 2005-08-21
508         * Moved source into src/, moved docs into doc/
509         * Updated makefiles
510
511 2005-08-20
512         * Applied patch from zimba-tm, closes patch 1260225
513         * Fixed ugly gradient bug.  closes bug 1255608
514         * Added $voffset
515         * Removed metar code.  It sucked.
516         * Added $acpitempf for amooricans
517         * $tail fixes
518
519 2005-08-12
520         * Multiple unit additions and modifications
521
522 2005-08-07
523         * mpd password patch from Joshua Gerrish
524         * conky can run without X now, use --disable-x11 when configuring
525 =========================================================================
526 =========================================================================
527 2005-08-06
528         * Conky 1.2 released
529
530 2005-08-05
531         * small fixes
532         * added CVS ebuild, huge thanks to Hopeless for this
533
534 2005-08-04
535         * special thanks to Citizen_X and his patience
536         * Citizen_X pwns
537         * keep shakin' those big 'ol titties
538         * Citizen_X
539         * Citizen_X
540         * Citizen_X
541         * Citizen_X
542
543 2005-08-03
544         * many small fixes, thanks to those who reported problems
545
546 2005-08-02
547         * dramatically improved how conky handles fonts
548         * fixed issues with graph args
549         * fixed shades and outlines
550
551 2005-08-01
552         * stabilized code
553         * added gradients to graphs (very pretty)
554         * things
555         * added $font, yay
556         * feature freeze; only bugfixes now
557
558 2005-07-30
559         * finalized graphing code, see $cpugraph, $memgraph, $execgraph,
560         $downspeedgraph, and $upspeedgraph
561         * added override_utf8_locale option
562         * poop
563         * $tab patch from jack_mort on f.g.o
564
565 2005-07-28
566         * Added new graphing code, such as $cpugraph
567         * small fixes all round
568         * stuff
569         * things
570         * added more mpd objects
571
572 2005-07-24
573         * Conky now has UTF-8 support
574         * Fixed $freq for those with CPU scaling
575         * Fixed the problem with total_run_times
576         * Fixed alignment of bars and lines and stuff
577         * Reduced conky's memory usage (yay!)
578         * Removed top_sort_cpu, added top_mem which sorts by mem usage instead
579         of cpu
580
581 2005-07-17
582         * Fixed a pile of bugs in configure script
583         * Added proper checking for headers in configure script
584         * Made METAR shit threaded so it would stop being retarded, also made
585         it try more then once to update
586         * Added $metar_tempf and ${i2c tempf} for americans
587
588 2005-07-16
589         * Added option for Conky to update N times and quit, see
590         total_run_times in conkyrc.sample
591         * Added metar code for weather info, thanks to somebody on sf.net
592         * Added $alignr and $alignc for right and centre alignment
593         * Added wireless info and IP addr patch, thanks Bobby Beckmann,
594         options $addr and $linkstatus (please test!), as well as fixed a mem
595         leak in this patch
596         * adt746x fix, thanks to dan-h on sf.net
597         * Added mldonkey support patch, thanks Lucas Brutschy on sf.net 
598         * Added patch to allow hex colour values, thanks roiban adi on sf.net
599         * Added if constructs patch, thanks Lucas Brutschy on sf.net
600         * Fixed bug in tab code (hopefully for the last time)
601         * Added option to sort by cpu or memory for top, see top_sort_cpu
602
603 2005-07-12
604         * Added fix for battery charged state (thanks to Lukas Zapletal
605         <lzap@seznam.cz>)
606
607 =========================================================================
608 =========================================================================
609         
610 2005-07-05
611         * Conky 1.1 released
612
613 2005-07-03
614         * Added $mpd_bar and $mpd_bitrate
615         * Some minor code cleanups prior to release
616         * Fixed problem with Conky not compiling when XFT disabled
617         * Fixed configure.in problems with Xdbe
618
619 2005-07-01
620         * Fixed memory leak in MPD code
621         * Added new $tail object (see conkyrc.sample) which loves to suck CPU
622         and memory
623         * Fixed more mem leaks
624
625 2005-06-30
626         * Added use_spacer to config
627         * Added $mpd_status
628         * Added small fix for i2c from Filedil on forums.gentoo.org
629
630 2005-06-28
631         * Made it possible to use tabs to right-justify (just add a bunch)
632         * Added ${execbar} (see conkyrc.sample)
633
634 2005-06-26
635         * Added memory % to top output
636         * Added initial cairo backend (it's really quite useless at this stage actually, and I'm not sure if there is even any point to it)
637
638 2005-06-25
639         * Conky now recognizes the tab character correctly
640         * Added simple config option to print to stdout (out_to_console
641         <yes/no>)
642
643 2005-06-23
644         * Added top output.  Check the sample config.
645         * Cleaned up code.
646
647 2005-06-22
648         * Finished MPD support ($mpd_title, $mpd_artist, $mpd_album, $mpd_vol)
649         * Removed NVCtrl code
650         * Added noswap and i2c patches
651
652 =========================================================================
653 =========================================================================
654         
655 2005-06-21
656         * Version 1.0. Conky is born from the ashes of torsmo. Main site:
657         http://conky.sf.net/
658         * Added xwin patch
659         * Added new feature for sample averaging of CPU and net info
660
661 2004-12-22
662         * Version 0.18 released
663
664 2004-12-21
665         * Fixed some double buffer + Xft stuff
666         * Applied X-Mozilla-Status patch (thanks affinity)
667         * Applied NVCtrl patch and modified it a bit (temperature monitoring
668           for nvdia-based graphics cards) (I couldn't test this so it may or
669           may not work or even compile) (thanks Dennis Frommknecht)
670         * Applied fs_used_perc and fs_bar_free patch (thanks killfire [send me
671           mail, I didn't catch your name from sourceforge])
672         * Applied patch that supports mailbox that is in some 'maildir' format
673           (thanks jolapache [send mail, I didn't catch your name from
674           sourceforge])
675         * min -> m
676         * Applied pad_percents patch (thanks JL Farinacci)
677         * Fixed some stuff in acpi fan and acpi ac adapter
678         * Optional XFT even when compiled in
679
680 2004-11-30
681         * Applied utime patch (UTC time) (thanks David McCabe)
682
683 2004-11-29
684         * Applied Xdbe patch, this includes double_buffer configuration and
685           -b command line option (thanks Bruce Merry)
686         * Applied some other seti patch, not tested (thanks William DiPlacido)
687
688 2004-08-25
689         * Applied netbsd patch (thanks Rui Paulo)
690         * Applied cpu frequency patch (thanks William DiPlacido)
691         * Applied adt746x patch (thanks Dennis Kaandorp)
692         * Applied some other FreeBSD patch by the same guy
693
694 2004-07-31
695         * Applied FreeBSD patch (thanks Roman Bogorodskiy)
696
697 2004-07-25
698         * Xft support and xftfont configuration
699         * rewrote some stuff, there might be some new bugs in old places
700
701 2004-07-24
702         * I2C divisor from a file (thanks Falk Feuersenger)
703
704 2004-07-20
705         * changed battery thing to ${battery <filename in
706           /proc/acpi/battery/>}
707         * SETI@Home stuff (thanks Jarski)
708
709 2004-07-05
710         * changed signal for config file reloading to SIGUSR1
711         * mixer stuff, $mixer, $mixerl, $mixerr, $mixerbar, $mixerlbar,
712           $mixerrbar
713
714 2004-06-03
715         * maybe fixed acpi battery thing when "present rate" isn't known
716
717 2004-06-01
718         * fixed width for all bars, use like ${cpubar 4,50}
719
720 2004-05-25
721         * Version 0.17 released
722
723 2004-05-23
724         * battery number for ACPI battery (thanks Leszek Krupiñski)
725         * default battery is now BAT0 instead of BAT1, set ${battery 1} if
726           the old battery thing worked
727         * bug fix on load average reporting (thanks Leszek Krupiñski)
728         * outlines to text, draw_outline and default_outline_color
729           configurations and $outlinecolor (thanks adi)
730         * $acpifan, $acpiacadapter, $uptime_short (thanks adi)
731
732 2004-05-19
733         * fixed a bug when starting after Opera (and some other programs)
734         * sticky window
735         * minimum_size
736
737 2004-05-18
738         * added border_width configuration
739
740 2004-05-16
741         * fixed zero length bar bug
742
743 2004-05-15
744         * file system stats, $fs_bar, $fs_free, $fs_free_perc, $fs_size,
745           $fs_used
746         * leaves ACPI temperature file open (faster)
747         * -a option to change alignment on command line
748
749 2004-05-14
750         * fixed ACPI temperature bug
751         * border_margin configuration
752         * ${execi <interval> <command>}, execute with specific interval
753         * added possibility to manually set the position (-x and -y options)
754           (thanks to Gwenhael LE MOINE)
755         * $buffers and $cached (thanks to Jeremy Burch)
756         * WM_CLASS when drawing to own window (thanks to Gwenhael LE MOINE)
757
758 2004-05-14
759         * Version 0.16 released
760
761 2004-05-13
762         * $pre_exec, execute a shell command one time
763         * preparsing of text (faster but more memory usage)
764         * less system calls (faster)
765         * APM things to $battery (untested)
766
767 2004-05-12
768         * added $new_mails changed $mails to tell total mail count
769
770 2004-05-11
771         * transparent window, own_window configuration, -o cmdline option
772         * $exec, execute a shell command
773         * $acpitemp, $battery - acpi stuff (not really tested)
774
775 2004-05-10
776         * $loadavg, load average
777         * $mails, unread local mails, mail_spool configuration
778
779 2004-05-09
780         * Version 0.15 released
781
782 2004-05-06
783         * SIGHUP reloads config file (thanks Jørgen P. Tjernø)
784         * Some other stuff