wmtime - Fix compiler and linker flags in Makefile.
[dockapps.git] / wmnotify / ChangeLog
blob1a37bcfd13b76a4a087ac1f5079c286d223f995c
1 2011-03-16  Hugo Villeneuve  <hugo@hugovil.com>
2         * Prepared package for Ubuntu PPA.
4 2010-09-07  Hugo Villeneuve  <hugo@hugovil.com>
5         * Added SSLv3 and TLSv1 methods in addition to SSLv2.
6         * Added optional IMAP folder.
7         * Removed custom Makefile rule for silent compilation and now using
8         AM_SILENT_RULES.
10 2009-10-21  Hugo Villeneuve  <hugo@hugovil.com>
11         * Do not permit to enable use_ssl=1 in configuration file if SSL
12         support is not compiled in.
14 2009-01-03  Hugo Villeneuve  <hugo@hugovil.com>
15         * Fixed a problem when receiving more than 1024 bytes
16         from IMAP4 server (increased buffer from 1024 to 10240 bytes).
18 2006-02-19  Bobby  <jborgdor at cs dot uu dot nl>
19         * Replaced deprecated function OpenSSL_add_all_algorithms() with
20         SSL_library_init(), because OpenSSL_add_all_algorithms() is no
21         longer present in openssl-0.9.8.
23 2005-10-25  Hugo Villeneuve  <hugo@hugovil.com>
24         * Added a visual notification that a double-click has been detected.
26 2005-09-27  Hugo Villeneuve  <hugo@hugovil.com>
27         * Fixed a bug which closed the application if there was a network
28         problem in the WmnotifyGetResponse() function.
30 2005-06-22  Hugo Villeneuve  <hugo@hugovil.com>
31         * Now using the same Tx and Rx buffers for POP3 and IMAP4.
32         * Removed autogenerated files from subversion repository.
34 2005-06-22  Hugo Villeneuve  <hugo@hugovil.com>
35         * Added support for IMAP4 commands that may span multiple
36         packets by calling recv() until full IMAP4 response is received.
37         Based on comments/patches by Joffrey Pannequin and Randy.
39 2004-02-24  Hugo Villeneuve  <hugo@hugovil.com>
40         * Added error checking for IMAP4 responses.
41         * Changed default check delay to 5 minutes.
42         * Added command line option to display debug messages (-d)
44 2004-02-01  Hugo Villeneuve  <hugo@hugovil.com>
45         * Put common code for POP3 and IMAP4 into "network.c".
46         * Added SSL support via configuration file option and autoconf.
47         * SSL is now transparent for POP3 and IMAP4.
48         * Cleaned-up error messages.
50 2004-01-18  Hugo Villeneuve  <hugo@hugovil.com>
51         * Changed 'AF_INET' to 'PF_INET' in socket function call (pops.c).
52         * Added IMAP4 basic support over SSL.
53         * Added 'network.c' file, which contains common routines for POP3 and
54         IMAP4 protocols.
56 2004-01-17  Hugo Villeneuve  <hugo@hugovil.com>
57         * Added project to subversion repository.
58         * Added 'doc' subdirectory and updated autoconf files accordingly.
59         * Added the 'bootstrap' script to the distribution tarball to be
60         able to regenerate the autoconf output files.
61         * Added section in README to explain how to use eSound (ESD) when
62         multiple applications try to use the sound card at the same time.
63         * Added the Adobe Illustrator source image to the dist-tarball.
65 2003-04-04  Hugo Villeneuve  <hugo@hugovil.com>
67         * Fixed a bug which caused compilation errors when 'libsndfile' was not
68         present. The problem was caused by 'configure.in' defining the macro
69         'HAVE_SNDFILE' to '0' instead of putting it into comments when
70         'libsndfile' was not detected. Since '#if defined(HAVE_SNDFILE)' was
71         used in 'sound.c', this always evaluated to 'TRUE'.
73 2003-04-01  Hugo Villeneuve  <hugo@hugovil.com>
75         * Added a new rule to src/Makefile.am in order to enhance the
76         readability of the output generated by Make when compiling (removed the
77         display of source, depfile, depmod, etc).
79 2003-03-25  Hugo Villeneuve  <hugo@hugovil.com>
81         * Fixed a bug with prevented the new mail animation to run when the
82           following sequence was encountered:
83             -The user double-clicked to start the external mail client
84             -A new E-mail is received shortly after that
85             -The user exit the external mail client
86             -The user manually check for new E-mail
87             -The audio notification sound is played, but no animation image is
88              displayed.
90 2003-03-24  Hugo Villeneuve  <hugo@hugovil.com>
92         * Fixed a bug with the audible notification which was always enabled,
93           even when this feature was disabled in the configuration file.
94         * Added support for audio notification using the following sound file
95           formats:
96             AU (*.au)
97             WAV (*.wav)
98           The OSS and ALSA architectures are supported.
100 2003-03-10  Hugo Villeneuve  <hugo@hugovil.com>
102         * Added xmalloc function for locally handling errors.
103         * Renamed src/wmgeneral.x to src/dockapp.x
104         * Removed src/misc.c
105         * Added src/common.h
106         * Added src/options.x
107         * Added src/configfile.x
108         * Moved src/config.h to ./config.h
109         * Added some comments for splint code checker
110         * Changed background color from yellow to grey (transparent)
111         * Removed the thread for animating the mailbox (moved to TimerThread)
112         * Removed the thread to detect double-click events in xevents.c (this is
113           now han dled in ProcessXlibEvents() function)
114         * Corrected some warnings found by splint.
116 2003-02-06  Hugo Villeneuve  <hugo@hugovil.com>
118         * Added option '--enable-debug' to the configure script for having
119           verbose debugging messages on the console.
120         * Added M4 macros source files to the distribution tarball.
121         * Added the name of the program 'wmnotify: ' before debug messages.
122         * Now handling '-ERR' response from POP3 server.
123         * Change the case of the POP3 command 'quit' to 'QUIT'.
124         * Added error handling macro 'WMNOTIFY_ERR( message )'.
126 2003-02-05  Hugo Villeneuve  <hugo@hugovil.com>
128         * Added some comments to 'wmgeneral.c' and removed unused functions.