diff options
author | Eduardo Chappa <chappa@washington.edu> | 2015-01-25 18:52:13 -0700 |
---|---|---|
committer | Eduardo Chappa <chappa@washington.edu> | 2015-01-25 18:52:13 -0700 |
commit | 4db5ba9a511564e4a3cb3d2b67bce4bb171eae4f (patch) | |
tree | 8ff91f6581acb023e7a3d989414cc925927b49b3 /mapi | |
parent | 2ea73d14866f5eb39bc6a9aab36312abd6fa525c (diff) | |
download | alpine-4db5ba9a511564e4a3cb3d2b67bce4bb171eae4f.tar.xz |
* new version 2.20.1
* Ignore message from smtp server after a successful authentication
challenge.
* Alpine would not set include and lib paths for OpenSSL if this was
installed in /usr/local/ssl.
* If the .pinerc file is a symbolic link, Alpine might not write its
contents when saving its configuration.
* The _INIT_ token does not skip over non-alpha numeric characters in
the name. Reported by Andreas Fehr.
* If SSLDIR is defined somehow, do not disable S/MIME if the
SSLCERTSDIR is not found.
* Mismatch in size of UCS and CELL caused a corruption in the
content of a pointer, which made the speller in PC-Alpine get
the content of a word incorrectly.
* Update splash screen to version 2.20 in main repository.
* Skip testing openssl compatibility version when cross-compilation is
detected. Fix contributed by Antti Seppälä.
Diffstat (limited to 'mapi')
-rw-r--r-- | mapi/pmapi.c | 2 | ||||
-rw-r--r-- | mapi/pmapi.rc | 8 |
2 files changed, 5 insertions, 5 deletions
diff --git a/mapi/pmapi.c b/mapi/pmapi.c index 1d8d4ecd..6b050415 100644 --- a/mapi/pmapi.c +++ b/mapi/pmapi.c @@ -1952,7 +1952,7 @@ BOOL APIENTRY DllMain( now = time((time_t *)0); tm_now = localtime(&now); - fprintf(ms_global->dfd, "pmapi32.dll for Alpine Version 2.19.9999\r\n"); + fprintf(ms_global->dfd, "pmapi32.dll for Alpine Version 2.20.1\r\n"); fprintf(ms_global->dfd, " Build date: %s\r\n", datestamp); fprintf(ms_global->dfd, " please report all bugs to chappa@gmx.com\r\n"); diff --git a/mapi/pmapi.rc b/mapi/pmapi.rc index d3d7c8ed..27fc3426 100644 --- a/mapi/pmapi.rc +++ b/mapi/pmapi.rc @@ -98,8 +98,8 @@ END // VS_VERSION_INFO VERSIONINFO - FILEVERSION 2,19,9999,0 - PRODUCTVERSION 2,19,9999,0 + FILEVERSION 2,20,1,0 + PRODUCTVERSION 2,20,1,0 FILEFLAGSMASK 0x3fL #ifdef _DEBUG FILEFLAGS 0x29L @@ -117,14 +117,14 @@ BEGIN VALUE "Comments", "alpine info: http://patches.freeiz.com/alpine\0" VALUE "CompanyName", "Patches for Alpine\0" VALUE "FileDescription", "Simple MAPI DLL for Alpine for Windows\0" - VALUE "FileVersion", "2.19.9999\0" + VALUE "FileVersion", "2.20.1\0" VALUE "InternalName", "pmapi32\0" VALUE "LegalCopyright", "Copyright ? University of Washington 2006-2009, Eduardo Chappa 2013-2014\0" VALUE "LegalTrademarks", "Apache License, Version 2.0\0" VALUE "OriginalFilename", "pmapi32.dll\0" VALUE "PrivateBuild", " \0" VALUE "ProductName", "Simple MAPI for Alpine for Windows\0" - VALUE "ProductVersion", "2.19.9999\0" + VALUE "ProductVersion", "2.20.1\0" VALUE "SpecialBuild", " \0" END END |