comparison plugins/ChangeLog.API @ 12220:64254fbabc7b

[gaim-migrate @ 14522] SF Patch #1363787 from Bartosz Oler "This is a fix to the 'Find buddies' command in which, after the search results window was closed, prpl's internal state was not cleared. A minor modification in the notify API was required. This patch also adds a few more notifications for the user." There also appears to be a few unrelated GG prpl updates in here. I noticed that more strings are marked for translation now. I made several changes to this patch. I also found out that we're not honoring the callbacks passed in to the notify API. That's a bug since we document them. I'm not in the mood to fix it. I changed GCallback to GHookFunc as it has the right type (whereas GCallback did not). The name isn't too bad either. I didn't really want to create a new callback function typedef. committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Fri, 25 Nov 2005 01:33:10 +0000
parents 4d3119205a33
children 976677e67239
comparison
equal deleted inserted replaced
12219:f23ebb7b2dfd 12220:64254fbabc7b
58 * serv_got_im, serv_got_chat_in, serv_send_im and serv_chat_send all use 58 * serv_got_im, serv_got_chat_in, serv_send_im and serv_chat_send all use
59 GaimMessageFlags instead of GaimConvImFlags / GaimConvChatFlags 59 GaimMessageFlags instead of GaimConvImFlags / GaimConvChatFlags
60 * All core<->prpl message passing now uses html. This was previously true 60 * All core<->prpl message passing now uses html. This was previously true
61 for receiving messages, it's now also true for sending them. prpls that 61 for receiving messages, it's now also true for sending them. prpls that
62 don't support html need to gaim_unescape_html() the message. 62 don't support html need to gaim_unescape_html() the message.
63 * Notify API: GCallback -> GHookFunc, void *user_data -> gpointer user_data
63 64
64 Removed: 65 Removed:
65 * gaim_gtk_sound_{get,set}_mute() (replaced by the /gaim/gtk/sound/mute 66 * gaim_gtk_sound_{get,set}_mute() (replaced by the /gaim/gtk/sound/mute
66 preference) 67 preference)
67 * gaim_escape_html(const char *html) (use g_markup_escape_text(html, -1) 68 * gaim_escape_html(const char *html) (use g_markup_escape_text(html, -1)