changelog
- Mon, 29 Mar 2010 07:16:59 +0000
- by Mark Doliner <markdoliner@pidgin.im> [Mon, 29 Mar 2010 07:16:59 +0000] rev 29933
- Updated Hindi translation from Rajesh Ranjan, who I'm setting as the
new maintainer without asking him if he's ok with it ;-)
Fixes #11411
- Sun, 28 Mar 2010 18:08:38 +0000
- by Paul Aurich <darkrain42@pidgin.im> [Sun, 28 Mar 2010 18:08:38 +0000] rev 29932
- Fix two related on-disconnect double frees.
_purple_connection_destroy calls purple_proxy_connect_cancel_with_handle(gc),
and both of these plugins use gc as the handle for their connection attempts.
Their respective close() functions /also/ try to cancel the connection
attempts, which leads to a double-free.
One of these was reported by mati, the other by T_X.
- Sat, 27 Mar 2010 21:29:18 +0000
- by Mark Doliner <markdoliner@pidgin.im> [Sat, 27 Mar 2010 21:29:18 +0000] rev 29931
- Change pidgin_convert_buddy_icon() to be more accommodating when attempting
to scale a large buddy icon. I spent entirely too much time on this, but
I'm pretty happy with the result.
We now try to set increasingly lower quality levels when trying to save
as a jpeg until we have an image that is smaller than the max file size
limit specified by the prpl. If the image is still too large when quality
level is 70, we'll try scaling down the image dimensions to be 80% of the
size we just tried.
Fixes #11565
- Sat, 27 Mar 2010 03:55:09 +0000
- by Stu Tomlinson <nosnilmot@pidgin.im> [Sat, 27 Mar 2010 03:55:09 +0000] rev 29930
- Implement reading multiple certificates from a single "bundle" of
certificates in one file. This is most helpful for systems where system
CA certs are installed as a bundle.
Please test, preferably after removing any cached certificates from
~/.purple/certificates/x509/tls_peers/
- Sat, 27 Mar 2010 02:11:31 +0000
- by Stu Tomlinson <nosnilmot@pidgin.im> [Sat, 27 Mar 2010 02:11:31 +0000] rev 29929
- Add a more helpful error message if --with-system-ssl-certs is specified
without a path provided
- Fri, 26 Mar 2010 09:37:16 +0000
- by Mark Doliner <markdoliner@pidgin.im> [Fri, 26 Mar 2010 09:37:16 +0000] rev 29928
- Going on the assumption that the user has the same version of gdk-pixbuf as
gtk, let's not bother checking to make sure their version of gdk-pixbuf is
>2.8
- Fri, 26 Mar 2010 09:30:00 +0000
- by Mark Doliner <markdoliner@pidgin.im> [Fri, 26 Mar 2010 09:30:00 +0000] rev 29927
- Use gdk_pixbuf_save_to_buffer() instead of gdk_pixbuf_save() to avoid saving
the image to a temporary file, reading the temporary file, then deleting it.
save_to_buffer() was added in gdk-pixbuf 2.4. It's safe to assume that if
the user has gtk 2.10 then they have gdk_pixbuf 2.4, right?
- Fri, 26 Mar 2010 07:26:32 +0000
- by Mark Doliner <markdoliner@pidgin.im> [Fri, 26 Mar 2010 07:26:32 +0000] rev 29926
- We got some translations up in this business now
- Fri, 26 Mar 2010 03:48:33 +0000
- by Sadrul Habib Chowdhury <sadrul@pidgin.im> [Fri, 26 Mar 2010 03:48:33 +0000] rev 29925
- Add LL suffix to 64-bit literal constants.
This gets rid of some compile warnings.
- Fri, 26 Mar 2010 03:37:11 +0000
- by Sadrul Habib Chowdhury <sadrul@pidgin.im> [Fri, 26 Mar 2010 03:37:11 +0000] rev 29924
- Ignore some tags at the beginning of a message.
This change ignores some tags (e.g. <p>, <li> etc.) and does not convert
them to newline when they are at the beginning of a message. This fixes
an issue in finch where some messages show up with a newline at the
front.