From: Hugo Villeneuve Date: Sat, 25 May 2013 23:19:43 +0000 (-0400) Subject: wmnotify 1.0.0 X-Git-Tag: v1.0.0^0 X-Git-Url: http://gitweb.hugovil.com/?a=commitdiff_plain;h=b9b08bebf4bf20ad57ffb908b6d9843a4352dc91;p=dockapps%2Fwmnotify.git wmnotify 1.0.0 Preparation of v1.0.0 for Ubuntu PPA package --- diff --git a/ChangeLog b/ChangeLog index 09ad6ce..1a37bcf 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,6 +1,18 @@ +2011-03-16 Hugo Villeneuve + * Prepared package for Ubuntu PPA. + +2010-09-07 Hugo Villeneuve + * Added SSLv3 and TLSv1 methods in addition to SSLv2. + * Added optional IMAP folder. + * Removed custom Makefile rule for silent compilation and now using + AM_SILENT_RULES. + +2009-10-21 Hugo Villeneuve + * Do not permit to enable use_ssl=1 in configuration file if SSL + support is not compiled in. 2009-01-03 Hugo Villeneuve - Fixes a problem when receiving more than 1024 bytes + * Fixed a problem when receiving more than 1024 bytes from IMAP4 server (increased buffer from 1024 to 10240 bytes). 2006-02-19 Bobby @@ -14,7 +26,7 @@ 2005-09-27 Hugo Villeneuve * Fixed a bug which closed the application if there was a network problem in the WmnotifyGetResponse() function. - + 2005-06-22 Hugo Villeneuve * Now using the same Tx and Rx buffers for POP3 and IMAP4. * Removed autogenerated files from subversion repository. @@ -23,47 +35,47 @@ * Added support for IMAP4 commands that may span multiple packets by calling recv() until full IMAP4 response is received. Based on comments/patches by Joffrey Pannequin and Randy. - + 2004-02-24 Hugo Villeneuve * Added error checking for IMAP4 responses. * Changed default check delay to 5 minutes. * Added command line option to display debug messages (-d) - + 2004-02-01 Hugo Villeneuve * Put common code for POP3 and IMAP4 into "network.c". * Added SSL support via configuration file option and autoconf. * SSL is now transparent for POP3 and IMAP4. * Cleaned-up error messages. - + 2004-01-18 Hugo Villeneuve * Changed 'AF_INET' to 'PF_INET' in socket function call (pops.c). * Added IMAP4 basic support over SSL. - * Added 'network.c' file, which contains common routines for POP3 and IMAP4 - protocols. - + * Added 'network.c' file, which contains common routines for POP3 and + IMAP4 protocols. + 2004-01-17 Hugo Villeneuve * Added project to subversion repository. * Added 'doc' subdirectory and updated autoconf files accordingly. * Added the 'bootstrap' script to the distribution tarball to be able to regenerate the autoconf output files. - * Added section in README to explain how to use eSound (ESD) when multiple - applications try to use the sound card at the same time. + * Added section in README to explain how to use eSound (ESD) when + multiple applications try to use the sound card at the same time. * Added the Adobe Illustrator source image to the dist-tarball. - + 2003-04-04 Hugo Villeneuve - * Fixed a bug which caused compilation errors when 'libsndfile' was not present. - The problem was caused by 'configure.in' defining the macro 'HAVE_SNDFILE' - to '0' instead of putting it into comments when 'libsndfile' was not detected. - Since '#if defined(HAVE_SNDFILE)' was used in 'sound.c', this always evaluated to - 'TRUE'. - + * Fixed a bug which caused compilation errors when 'libsndfile' was not + present. The problem was caused by 'configure.in' defining the macro + 'HAVE_SNDFILE' to '0' instead of putting it into comments when + 'libsndfile' was not detected. Since '#if defined(HAVE_SNDFILE)' was + used in 'sound.c', this always evaluated to 'TRUE'. + 2003-04-01 Hugo Villeneuve - * Added a new rule to src/Makefile.am in order to enhance the readability of the - output generated by Make when compiling (removed the display of source, depfile, - depmod, etc). - + * Added a new rule to src/Makefile.am in order to enhance the + readability of the output generated by Make when compiling (removed the + display of source, depfile, depmod, etc). + 2003-03-25 Hugo Villeneuve * Fixed a bug with prevented the new mail animation to run when the @@ -74,7 +86,7 @@ -The user manually check for new E-mail -The audio notification sound is played, but no animation image is displayed. - + 2003-03-24 Hugo Villeneuve * Fixed a bug with the audible notification which was always enabled, @@ -84,7 +96,7 @@ AU (*.au) WAV (*.wav) The OSS and ALSA architectures are supported. - + 2003-03-10 Hugo Villeneuve * Added xmalloc function for locally handling errors. @@ -100,7 +112,7 @@ * Removed the thread to detect double-click events in xevents.c (this is now han dled in ProcessXlibEvents() function) * Corrected some warnings found by splint. - + 2003-02-06 Hugo Villeneuve * Added option '--enable-debug' to the configure script for having diff --git a/NEWS b/NEWS index 771d838..eb2c15f 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,10 @@ +2011-03-16: wmnotify-1.0.0 has been released. + Fixes bug when receiving more than 1024 bytes from IMAP server. + Added SSLv3 and TLSv1 methods in addition to SSLv2. + Added optional IMAP folder. + See the file 'ChangeLog' for further details. + 2006-02-19: wmnotify-0.3.2 has been released. Fixes a problem when compiling wmnotify with openssl-0.9.8. diff --git a/configure.ac b/configure.ac index 123d85c..140a624 100644 --- a/configure.ac +++ b/configure.ac @@ -1,7 +1,7 @@ # configure.ac -- Process this file with autoconf to produce configure. dnl Initialization stuff. -AC_INIT(wmnotify, 0.3.2) +AC_INIT(wmnotify, 1.0.0) AC_CONFIG_AUX_DIR(config) AC_CONFIG_SRCDIR(src/wmnotify.c) AM_CONFIG_HEADER(config.h:config-h.in)