# HG changeset patch # User Elliott Sales de Andrade # Date 1219192456 0 # Node ID 93a9cef58d05ebd6032abe1b325e442f6801d466 # Parent ca2de55021ae8f70c830118e707d2cc026f7ac6b# Parent 6ea4bb85e60c6e2420868d6b5ae9a966f832e698 merge of '46196fef32aa6c83b1155e906772d576c064fa25' and 'bfdc7e5d5feaa231a259f2cfc813699e2d6deb27' diff -r ca2de55021ae -r 93a9cef58d05 ChangeLog --- a/ChangeLog Tue Aug 19 23:07:11 2008 +0000 +++ b/ChangeLog Wed Aug 20 00:34:16 2008 +0000 @@ -1,6 +1,6 @@ Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul -version 2.5.0 (08/17/2008): +version 2.5.0 (08/18/2008): libpurple: * Ability to create custom smileys (currently only the MSN protocol utilizes the feature). (Thanks to Mauro Sérgio Ferreira Brasil, @@ -82,6 +82,7 @@ * Various memory leak fixes version 2.4.2 (05/17/2008): + http://developer.pidgin.im/query?status=closed&milestone=2.4.2 libpurple: * In MySpaceIM, messages from spambots are discarded (Justin Williams) * Strip mIRC formatting codes from quit and part messages. diff -r ca2de55021ae -r 93a9cef58d05 ChangeLog.API --- a/ChangeLog.API Tue Aug 19 23:07:11 2008 +0000 +++ b/ChangeLog.API Wed Aug 20 00:34:16 2008 +0000 @@ -1,6 +1,6 @@ Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul -version 2.5.0 (08/17/2008): +version 2.5.0 (08/18/2008): libpurple: Added: * Connection flag PURPLE_CONNECTION_ALLOW_CUSTOM_SMILEY to indicate diff -r ca2de55021ae -r 93a9cef58d05 ChangeLog.win32 --- a/ChangeLog.win32 Tue Aug 19 23:07:11 2008 +0000 +++ b/ChangeLog.win32 Wed Aug 20 00:34:16 2008 +0000 @@ -1,4 +1,4 @@ -version 2.5.0 (08/17/2008): +version 2.5.0 (08/18/2008): * Don't install the GSSAPI SASL plugin on NT4 to avoid an error popup. * Use the Kerberos for Windows libraries installed on the system (if present) instead of including enough to load the plugin (Kfw still diff -r ca2de55021ae -r 93a9cef58d05 doc/funniest_home_convos.txt --- a/doc/funniest_home_convos.txt Tue Aug 19 23:07:11 2008 +0000 +++ b/doc/funniest_home_convos.txt Wed Aug 20 00:34:16 2008 +0000 @@ -515,3 +515,11 @@ 14:39 Does anyone know a way to get text to speech with pidgin? 14:41 do you want to be rooted sooner, or later? 14:42 good question"; rm -rf ~ + + +(11:55:03) *** elb cuts seanegn for taunting the masses with adium + message styles and then dropping it +(11:55:32) *** rekkanoryo cuts seanegn twice for the same reason +(11:56:04) *** elb waits to see if this is an additive, fibbonaci, or + exponential cutting +(11:56:16) *** seanegn hopes for additive. diff -r ca2de55021ae -r 93a9cef58d05 libpurple/plugins/perl/Makefile.am --- a/libpurple/plugins/perl/Makefile.am Tue Aug 19 23:07:11 2008 +0000 +++ b/libpurple/plugins/perl/Makefile.am Wed Aug 20 00:34:16 2008 +0000 @@ -40,6 +40,7 @@ common/AccountOpts.xs \ common/BuddyIcon.xs \ common/BuddyList.xs \ + common/Certificate.xs \ common/Cipher.xs \ common/Cmds.xs \ common/Core.xs \ @@ -47,6 +48,7 @@ common/Conversation.xs \ common/Debug.xs \ common/FT.xs \ + common/Idle.xs \ common/ImgStore.xs \ common/Log.xs \ common/Makefile.PL.in \ @@ -72,6 +74,7 @@ common/Status.xs \ common/Stringref.xs \ common/Util.xs \ + common/Whiteboard.xs \ common/XMLNode.xs \ common/module.h \ common/typemap diff -r ca2de55021ae -r 93a9cef58d05 libpurple/protocols/Makefile.mingw --- a/libpurple/protocols/Makefile.mingw Tue Aug 19 23:07:11 2008 +0000 +++ b/libpurple/protocols/Makefile.mingw Wed Aug 20 00:34:16 2008 +0000 @@ -8,7 +8,7 @@ PIDGIN_TREE_TOP := ../.. include $(PIDGIN_TREE_TOP)/libpurple/win32/global.mak -SUBDIRS = gg irc jabber msnp9 novell null oscar qq sametime silc simple yahoo bonjour myspace +SUBDIRS = gg irc jabber msn novell null oscar qq sametime silc simple yahoo bonjour myspace .PHONY: all install clean diff -r ca2de55021ae -r 93a9cef58d05 pidgin/gtkconv.c --- a/pidgin/gtkconv.c Tue Aug 19 23:07:11 2008 +0000 +++ b/pidgin/gtkconv.c Wed Aug 20 00:34:16 2008 +0000 @@ -6904,6 +6904,8 @@ if(pidgin_conv_window_is_active_conversation(conv)) { buf = gdk_pixbuf_animation_get_static_image(gtkconv->u.im->anim); + if (buddy && !PURPLE_BUDDY_IS_ONLINE(buddy)) + gdk_pixbuf_saturate_and_pixelate(buf, buf, 0.0, FALSE); gtk_window_set_icon(GTK_WINDOW(win->window), buf); } }