comparison plugins/ChangeLog.API @ 12797:eda1572c788b

[gaim-migrate @ 15144] SF Patch #1390008 from Sadrul "GaimGtkConv: Update tab icons, and some other small changes" This seems to make the Send To menu update better. I haven't seen this patch make anything worse yet, so I'm committing it. If you start seeing weird update errors, let Sadrul or me know. I thought I had a case of the Send To menu not updating even with this patch, but I haven't yet been able to duplicate it. Sadrul's description: '1. Fixes the tab-icons/send-to menu updates by listening for the appropriate signals. This patch removes the "updated" field from conversation-uiops. There is an existing "-updated" signal which can replace the uiops. 2. If having conversations with more than one accounts of a contact, and the buddy-icon of an inactive account is changed, then the new icon is showed (I think), even though it is not the buddy icon for the currently active conversation. This patch fixes that. 3. Emit "buddy-typing" and "-stopped" signal whenever the typing-state is changed. Currently, the typing-state of a conversation is sometimes changed without emitting the signal. This patch fixes that.' I rejected #4. '5. Emits the "chat-left" signal *after* setting "chat->left" to TRUE. 6. Show a buddy for an account only once in the SendTo menu (currently Gaim shows the same buddy more than once if the buddy exists in more than one groups). This is done by keeping a list of GaimPresence -- since that's the only thing the blist-nodes for the same buddy share.' committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Mon, 09 Jan 2006 21:29:53 +0000
parents a1e241dd50b6
children 547c199072c8
comparison
equal deleted inserted replaced
12796:e8db8f94a2db 12797:eda1572c788b
130 * gaim_gtkpounce_dialog_show() 130 * gaim_gtkpounce_dialog_show()
131 * GaimGtkBuddyList->bpmenu 131 * GaimGtkBuddyList->bpmenu
132 * GaimConvImFlags and GaimConvChatFlags; use GaimMessageFlags instead 132 * GaimConvImFlags and GaimConvChatFlags; use GaimMessageFlags instead
133 * cb and user_data from the ops in GaimNotifyUiOps: This is now handled 133 * cb and user_data from the ops in GaimNotifyUiOps: This is now handled
134 by the notify API in the core. 134 by the notify API in the core.
135 * GaimConversationUiOps.updated: use the conversation-updated signal
135 136
136 Added: 137 Added:
137 * gaim_prefs_disconnect_by_handle() 138 * gaim_prefs_disconnect_by_handle()
138 * a password field to GaimConnection, which only persists for the 139 * a password field to GaimConnection, which only persists for the
139 session (when "remember password" is false, account->password is 140 session (when "remember password" is false, account->password is
224 225
225 Signals - Changed: (See the Doxygen docs for details on all signals.) 226 Signals - Changed: (See the Doxygen docs for details on all signals.)
226 * Signal propagation now stops after a handler returns a non-NULL value. 227 * Signal propagation now stops after a handler returns a non-NULL value.
227 This value is now returned. Previously, all registered handlers were 228 This value is now returned. Previously, all registered handlers were
228 called and the value from the last handler was used. 229 called and the value from the last handler was used.
230 * "buddy-typing" and "buddy-typing-stopped": replaced the GaimConversation*
231 with GaimAccount*, const char *name. Also, the signal is now emitted
232 regardless of whether a conversation exists and regardless of whether
233 the user is on the buddy list.
234 * "chat-invited" handlers can now return a value to control what happens
235 to the invite (accept, reject, prompt the user).
236 * "chat-left": Emitted *after* setting chat->left to TRUE.
237 * "drawing-tooltip": the second argument is now a GString* instead of
238 a char**
239 * "drawing-tooltip": added the "full" argument
229 * "received-im-msg" and "received-chat-msg" to match, both now pass a 240 * "received-im-msg" and "received-chat-msg" to match, both now pass a
230 conversation pointer and flags 241 conversation pointer and flags
231 * "receiving-im-msg" and "receving-chat-msg" to match, both now pass a 242 * "receiving-im-msg" and "receving-chat-msg" to match, both now pass a
232 conversation pointer and a pointer to the flags. 243 conversation pointer and a pointer to the flags.
233 * "drawing-tooltip": the second argument is now a GString* instead of
234 a char**
235 * "drawing-tooltip": added the "full" argument
236 * "chat-invited" handlers can now return a value to control what happens
237 to the invite (accept, reject, prompt the user).
238 * "buddy-typing" and "buddy-typing-stopped": replaced the GaimConversation*
239 with GaimAccount*, const char *name. Also, the signal is now emitted
240 regardless of whether a conversation exists and regardless of whether
241 the user is on the buddy list.
242 244
243 Signals - Added: (See the Doxygen docs for details on all signals.) 245 Signals - Added: (See the Doxygen docs for details on all signals.)
244 * "account-disabled" 246 * "account-disabled"
245 * "account-status-changed" 247 * "account-status-changed"
246 * "cipher-added" 248 * "cipher-added"
273 * "buddy-away": replaced by buddy-status-changed 275 * "buddy-away": replaced by buddy-status-changed
274 * "buddy-back": replaced by buddy-status-changed 276 * "buddy-back": replaced by buddy-status-changed
275 * "buddy-idle": replaced by buddy-idle-changed 277 * "buddy-idle": replaced by buddy-idle-changed
276 * "buddy-unidle": replaced by buddy-idle-changed 278 * "buddy-unidle": replaced by buddy-idle-changed
277 * "buddy-icon-cached": replaced by buddy-icon-changed 279 * "buddy-icon-cached": replaced by buddy-icon-changed
278 * "conversation-drag-end": replaced by "conversation-dragging" 280 * "conversation-drag-end": replaced by conversation-dragging
279 * "conversation-switching" 281 * "conversation-switching"
280 282
281 version 1.5.0 (8/11/2005): 283 version 1.5.0 (8/11/2005):
282 * Added: gaim_xfer_conversation_write 284 * Added: gaim_xfer_conversation_write
283 Writes a messages to a conversation window with the use 285 Writes a messages to a conversation window with the use