# HG changeset patch # User Sadrul Habib Chowdhury # Date 1210186393 0 # Node ID cb0759d9fe30d0f26c3f3570c474748cee00c47d # Parent 85c595142be6320be7abfb8aaedcbf713706e31e Changelog the API additions, and add a missing define. Thanks to malu for noticing. diff -r 85c595142be6 -r cb0759d9fe30 ChangeLog.API --- a/ChangeLog.API Wed May 07 18:22:49 2008 +0000 +++ b/ChangeLog.API Wed May 07 18:53:13 2008 +0000 @@ -1,12 +1,22 @@ Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul version 2.5.0 (??/??/2008): + libpurple: + Added: + * Connection flag PURPLE_CONNECTION_ALLOW_CUSTOM_SMILEY to indicate + that the connection supports sending and receiving custom smileys. + * PurpleSmiley and the Smiley API. + pidgin: Added: * gtk_imhtml_smiley_create, gtk_imhtml_smiley_reload and gtk_imhtml_smiley_destroy to deal with GtkIMHtmlSmiley's. * pidgin_pixbuf_from_imgstore to create a GdkPixbuf from a PurpleStoredImage. + * pidgin_themes_smiley_themeize_custom to associate custom smileys to + a GtkIMHtml widget. + * GTK_IMHTML_CUSTOM_SMILEY flag for GtkIMHtml. + * GTK+ Custom Smiley API. version 2.x.x: perl: diff -r 85c595142be6 -r cb0759d9fe30 pidgin/gtkimhtml.h --- a/pidgin/gtkimhtml.h Wed May 07 18:22:49 2008 +0000 +++ b/pidgin/gtkimhtml.h Wed May 07 18:53:13 2008 +0000 @@ -76,6 +76,7 @@ GTK_IMHTML_SMILEY = 1 << 11, GTK_IMHTML_LINKDESC = 1 << 12, GTK_IMHTML_STRIKE = 1 << 13, + GTK_IMHTML_CUSTOM_SMILEY = 1 << 14, GTK_IMHTML_ALL = -1 } GtkIMHtmlButtons;