Mercurial > pidgin
changeset 30943:b52f5d573a17
ChangeLog updates, NEWS, and prep for release.
author | John Bailey <rekkanoryo@rekkanoryo.org> |
---|---|
date | Sun, 21 Nov 2010 19:42:37 +0000 |
parents | cba545c5c0ef |
children | 11211e6427ae |
files | ChangeLog ChangeLog.API NEWS configure.ac |
diffstat | 4 files changed, 35 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/ChangeLog Sun Nov 21 19:06:12 2010 +0000 +++ b/ChangeLog Sun Nov 21 19:42:37 2010 +0000 @@ -1,20 +1,44 @@ Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul -version 2.7.6 (??/??/????): +version 2.7.6 (11/21/2010): + General: + * Included Microsoft Internet Authority 2010 and Microsoft Secure Server + Authority 2010 intermediate CA certificates to our bundle. This fixes + the "Unable to validate certificate" error for omega.contacts.msn.com. + (#12906) + + AIM and ICQ: + * SSL option has been changed to a tri-state menu with choices for + "Don't Use Encryption", "Use Encryption if Available", and "Require + Encryption". + * Fix some possible clientLogin URL issues introduced in version 2.7.5. + * Don't show a "<URL>: Ok" connection error when using clientLogin. + * Cleaned up some debug output for improved readability. + MSN: * Added support for MSNP16, including Multiple Points of Presence (MPOP) - which allows multiple simultaneous sign-ins. + which allows multiple simultaneous sign-ins. (#8247) * Added extended capabilities support (none implemented). * Merged the work done on the Google SoC (major rewrite of SLP code) * Reworked the data transfer architecture. (http://developer.pidgin.im/wiki/SlpArchitecture) * Lots of little changes. + * Don't process zero-length DC messages. (#12660) + * Fixed a bunch of memory leaks. + * Prevent a use-after-free condition. XMPP: * Avoid a double-free in the Google Relay (V/V) code. * Avoid double error message when failing a file transfer. (#12757) * Password-related information is printed out for SASL authentication when the PURPLE_UNSAFE_DEBUG environment variable is set. + * Authentication mechanisms can now be added by UI's or other plugins + with some work. This is outside the API/ABI rules! (#12715) + * Fixed a few printf("%s", NULL) crashes for broken OSes. + + Windows-Specific Changes: + * Build the Pidgin Theme Editor plugin (finally). + * Untarring (for themes) now works for non-ASCII destination paths. version 2.7.5 (10/31/2010): General:
--- a/ChangeLog.API Sun Nov 21 19:06:12 2010 +0000 +++ b/ChangeLog.API Sun Nov 21 19:42:37 2010 +0000 @@ -1,6 +1,7 @@ Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul -version 2.7.6 (??/??/????): +version 2.7.6 (11/21/2010): + * No changes version 2.7.5 (10/31/2010): * No changes
--- a/NEWS Sun Nov 21 19:06:12 2010 +0000 +++ b/NEWS Sun Nov 21 19:42:37 2010 +0000 @@ -2,7 +2,7 @@ Our development blog is available at: http://planet.pidgin.im -2.7.6 (??/??/????): +2.7.6 (11/21/2010): Jorge: In this release I have merged two branches where I have spent most of my time in the last months, the MSNP16 and SLP-rewrite. I hope you all will enjoy the hability to be connected on multiple @@ -11,6 +11,10 @@ happy with this rewrite because there was untoched code from almost 5 years ago. I hope you like this release! + John: In this release, we give you some new features and a bunch of + bug fixes. This includes shipping intermediate certificates to fix + certificate validation for MSN's servers. Upgrade and enjoy! + 2.7.5 (10/31/2010): John: A bugfix release for all of you! This time we fixed a bunch of bugs ranging from annoying regressions to long-standing bugs we didn't
--- a/configure.ac Sun Nov 21 19:06:12 2010 +0000 +++ b/configure.ac Sun Nov 21 19:42:37 2010 +0000 @@ -47,7 +47,7 @@ m4_define([purple_major_version], [2]) m4_define([purple_minor_version], [7]) m4_define([purple_micro_version], [6]) -m4_define([purple_version_suffix], [devel]) +m4_define([purple_version_suffix], []) m4_define([purple_version], [purple_major_version.purple_minor_version.purple_micro_version]) m4_define([purple_display_version], purple_version[]m4_ifdef([purple_version_suffix],[purple_version_suffix])) @@ -56,7 +56,7 @@ m4_define([gnt_major_version], [2]) m4_define([gnt_minor_version], [8]) m4_define([gnt_micro_version], [3]) -m4_define([gnt_version_suffix], [devel]) +m4_define([gnt_version_suffix], []) m4_define([gnt_version], [gnt_major_version.gnt_minor_version.gnt_micro_version]) m4_define([gnt_display_version], gnt_version[]m4_ifdef([gnt_version_suffix],[gnt_version_suffix]))