comparison plugins/ChangeLog.API @ 12285:af257d8679fe

[gaim-migrate @ 14589] Ok, so I'm changing the semantics of gaim_account_notify_added, having it check for the existance of a buddy was breaking some jabber scenarios. So buddy checks should now be done in the prpls. I also added a gaim_account_request_add. _notify_added only notifies the user of the add, request_add notifies the user AND asks them if they want to add the buddy to their buddy list. I only updated jabber for these changes because it's the only protocol I really know at all well. So everyone PLEASE make sure that the other protocols get updated for this. That is make sure that when you expect to prompt the user to add the buddy you use _request_add instead of just using _notify_added and expecting the core to determine if it needs to prompt the user. Oh, there are also some other jabber changes which should hopefully fix some issues that people were seeing, like buddies not signing off when you unsubscribed with them, etc. Let me know if anyone notices any jabber oddities after this. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Thu, 01 Dec 2005 20:09:27 +0000
parents ca27de274225
children 7630a95f3b8b
comparison
equal deleted inserted replaced
12284:ecd471d1eeec 12285:af257d8679fe
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 -> GaimNotifyCloseCallback, 63 * Notify API: GCallback -> GaimNotifyCloseCallback,
64 void *user_data -> gpointer user_data 64 void *user_data -> gpointer user_data
65 * gaim_notify_searchresults_get_rows_count, 65 * gaim_notify_searchresults_get_rows_count,
66 gaim_notify_searchresults_get_columns_count: return type now guint 66 gaim_notify_searchresults_get_columns_count: return type now guint
67 * gaim_account_notify_added: No longer checks if there is a GaimBuddy for
68 the added user, that's left up to the prpls.
69 See the documentation for this function and
70 gaim_account_request_add.
67 71
68 Removed: 72 Removed:
69 * gaim_gtk_sound_{get,set}_mute() (replaced by the /gaim/gtk/sound/mute 73 * gaim_gtk_sound_{get,set}_mute() (replaced by the /gaim/gtk/sound/mute
70 preference) 74 preference)
71 * gaim_escape_html(const char *html) (use g_markup_escape_text(html, -1) 75 * gaim_escape_html(const char *html) (use g_markup_escape_text(html, -1)
169 * gaim_gtk_pounces_manager_show() 173 * gaim_gtk_pounces_manager_show()
170 * gaim_gtk_pounces_manager_hide() 174 * gaim_gtk_pounces_manager_hide()
171 * gaim_gtk_pounce_editor_show() 175 * gaim_gtk_pounce_editor_show()
172 * GAIM_STOCK_CONNECT, GAIM_STOCK_DISCONNECT 176 * GAIM_STOCK_CONNECT, GAIM_STOCK_DISCONNECT
173 * GAIM_STOCK_PLUGIN 177 * GAIM_STOCK_PLUGIN
178 * gaim_account_request_add: Notifies the user that they were added to
179 someone's buddy list, and offers them the choice
180 of adding that person to their buddy list.
174 181
175 Signals - Changed: (See the Doxygen docs for details on all signals.) 182 Signals - Changed: (See the Doxygen docs for details on all signals.)
176 * Signal propagation now stops after a handler returns a non-NULL value. 183 * Signal propagation now stops after a handler returns a non-NULL value.
177 This value is now returned. Previously, all registered handlers were 184 This value is now returned. Previously, all registered handlers were
178 called and the value from the last handler was used. 185 called and the value from the last handler was used.