comparison plugins/ChangeLog.API @ 12919:248b8b39c671

[gaim-migrate @ 15272] Replace GaimBlistNodeAction with the more generic GaimMenuAction, this is in preparation for letting the chat room user list have extensible menus like the blist entries do. (I know it's not exactly the prettiest, and the callback isn't exactly type-safe, when we eventually gobjectify everything we can get some safety back by using (GObject, gpointer) but that's for later.) I'm planning to look into merging GaimPluginActions into GaimMenuActions as well. committer: Tailor Script <tailor@pidgin.im>
author Etan Reisner <pidgin@unreliablesource.net>
date Tue, 17 Jan 2006 23:22:19 +0000
parents fe2cb084ab16
children 1577b8e194de
comparison
equal deleted inserted replaced
12918:a05fbd9dcc31 12919:248b8b39c671
142 * GaimConversationUiOps.updated: use the conversation-updated signal 142 * GaimConversationUiOps.updated: use the conversation-updated signal
143 * GAIM_SUBTYPE_CONV_WINDOW: windows are now only represented in the UI, 143 * GAIM_SUBTYPE_CONV_WINDOW: windows are now only represented in the UI,
144 so GAIM_TYPE_BOXED is used for the signal types 144 so GAIM_TYPE_BOXED is used for the signal types
145 * gaim_gtk_privacy_is_showable(): We do fallback privacy in the core 145 * gaim_gtk_privacy_is_showable(): We do fallback privacy in the core
146 now, so this would always be TRUE now. 146 now, so this would always be TRUE now.
147 * gaim_blist_node_action_new9); use gaim_menu_action_new() instead
147 148
148 Added: 149 Added:
149 * gaim_prefs_disconnect_by_handle() 150 * gaim_prefs_disconnect_by_handle()
150 * a password field to GaimConnection, which only persists for the 151 * a password field to GaimConnection, which only persists for the
151 session (when "remember password" is false, account->password is 152 session (when "remember password" is false, account->password is
236 * gaim_utf8_ncr_encode() 237 * gaim_utf8_ncr_encode()
237 * gaim_gtk_log_init() 238 * gaim_gtk_log_init()
238 * gaim_gtk_log_get_handle() 239 * gaim_gtk_log_get_handle()
239 * gaim_gtk_log_uninit() 240 * gaim_gtk_log_uninit()
240 * gaim_url_fetch_request() 241 * gaim_url_fetch_request()
242 * gaim_menu_action_new()
241 243
242 Signals - Changed: (See the Doxygen docs for details on all signals.) 244 Signals - Changed: (See the Doxygen docs for details on all signals.)
243 * Signal propagation now stops after a handler returns a non-NULL value. 245 * Signal propagation now stops after a handler returns a non-NULL value.
244 This value is now returned. Previously, all registered handlers were 246 This value is now returned. Previously, all registered handlers were
245 called and the value from the last handler was used. 247 called and the value from the last handler was used.