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