comparison plugins/ChangeLog.API @ 12626:6a2e376b0a34

[gaim-migrate @ 14962] let the world know committer: Tailor Script <tailor@pidgin.im>
author Christopher O'Brien <siege@pidgin.im>
date Thu, 22 Dec 2005 17:38:38 +0000
parents 71299d63801d
children fee6a32644a4
comparison
equal deleted inserted replaced
12625:ba47bcf7c6eb 12626:6a2e376b0a34
66 don't support html need to gaim_unescape_html() the message. 66 don't support html need to gaim_unescape_html() the message.
67 * Notify API: GCallback -> GaimNotifyCloseCallback, 67 * Notify API: GCallback -> GaimNotifyCloseCallback,
68 void *user_data -> gpointer user_data 68 void *user_data -> gpointer user_data
69 * gaim_notify_searchresults_get_rows_count, 69 * gaim_notify_searchresults_get_rows_count,
70 gaim_notify_searchresults_get_columns_count: return type now guint 70 gaim_notify_searchresults_get_columns_count: return type now guint
71 * gaim_account_notify_added: No longer checks if there is a GaimBuddy for 71 * gaim_account_notify_added: No longer checks if there is a
72 the added user, that's left up to the prpls. 72 GaimBuddy for the added user, that's left up to the prpls.See the
73 See the documentation for this function and 73 documentation for this function and gaim_account_request_add.
74 gaim_account_request_add.
75 * gaim_accounts_reorder: new_index is now a gint instead of a size_t 74 * gaim_accounts_reorder: new_index is now a gint instead of a size_t
76 * displaying-message signals: displaying-[im|chat]-msg and 75 * displaying-message signals: displaying-[im|chat]-msg and
77 displayed-[im|chat]-msg signals are emitted 76 displayed-[im|chat]-msg signals are emitted for all messages
78 for all messages (ie, for received messages, 77 (ie, for received messages, sent messages, system messages, error
79 sent messages, system messages, error 78 messages etc.), and the signals now have
80 messages etc.), and the signals now have 79 gaim_gtk_conversations_get_handle() for their handle.
81 gaim_gtk_conversations_get_handle() for their 80 * GAIM_NOTIFY_BUTTON_ADD_BUDDY to GAIM_NOTIFY_BUTTON_ADD
82 handle.
83 81
84 Removed: 82 Removed:
85 * gaim_gtk_sound_{get,set}_mute() (replaced by the /gaim/gtk/sound/mute 83 * gaim_gtk_sound_{get,set}_mute() (replaced by the /gaim/gtk/sound/mute
86 preference) 84 preference)
87 * gaim_escape_html(const char *html) (use g_markup_escape_text(html, -1) 85 * gaim_escape_html(const char *html) (use g_markup_escape_text(html, -1)
190 someone's buddy list, and offers them the choice 188 someone's buddy list, and offers them the choice
191 of adding that person to their buddy list. 189 of adding that person to their buddy list.
192 * gaim_blist_alias_contact() 190 * gaim_blist_alias_contact()
193 * gaim_cipher_http_digest_calculate_session_key() 191 * gaim_cipher_http_digest_calculate_session_key()
194 * gaim_cipher_http_digest_calculate_response() 192 * gaim_cipher_http_digest_calculate_response()
193 * gaim_notify_searchresults_labeled()
194 * GAIM_NOTIFY_BUTTON_LABELED, GAIM_NOTIFY_BUTTON_INFO,
195 GAIM_NOTIFY_BUTTON_IM, GAIM_NOTIFY_BUTTON_JOIN,
196 GAIM_NOTIFY_BUTTON_INVITE
197 * stock buttons GAIM_STOCK_IM, GAIM_STOCK_INFO
198 * gaim_conversation_present()
199 * GaimConversationUiOps->present(GaimConversation *)
195 200
196 Signals - Changed: (See the Doxygen docs for details on all signals.) 201 Signals - Changed: (See the Doxygen docs for details on all signals.)
197 * Signal propagation now stops after a handler returns a non-NULL value. 202 * Signal propagation now stops after a handler returns a non-NULL value.
198 This value is now returned. Previously, all registered handlers were 203 This value is now returned. Previously, all registered handlers were
199 called and the value from the last handler was used. 204 called and the value from the last handler was used.