comparison plugins/ChangeLog.API @ 11454:201617d49573

[gaim-migrate @ 13693] This commit includes a number of changes: 1. Aliases are now used consistently in chats. If the prpl uses unique screen names for chats (e.g. Jabber), then aliases are not used at all. 2. The chat list is now colorized to match the colors used in the chat itself. 3. Buddies are bolded in the chat user list. 4. Buddies are sorted above non-buddies in the chat user list. 5. The chat user list is ellipsized when possible (i.e. on GTK+ 2.6.0 or above). 6. I've accepted patch #1178248, by Matt Amato to add "buddy-added" and "buddy-removed" signals. These were used in my implementation of #3 and #4, to update the GUI when users are added or removed from the buddy list. 7. I've added a "blist-node-aliased" signal that is emitted when a buddy, contact, or chat is aliased. 8. Since it was hard to separate and I need it at some point, I'm letting it slip in... I've changed GaimConversation.log to be a GList named logs. This way, we can have multiple logs for a single conversation. This will be necessary to implement unnamed chat logging in some reasonable fasion (see my notes in the TODO file). committer: Tailor Script <tailor@pidgin.im>
author Richard Laager <rlaager@wiktel.com>
date Tue, 06 Sep 2005 03:04:07 +0000
parents ef6e94bdda08
children 16b0da1f376f
comparison
equal deleted inserted replaced
11453:d446fcc2c63b 11454:201617d49573
84 * Changed: GAIM_CONV_UNKNOWN to GAIM_CONV_TYPE_UNKNOWN. 84 * Changed: GAIM_CONV_UNKNOWN to GAIM_CONV_TYPE_UNKNOWN.
85 * Changed: GAIM_CONV_IM to GAIM_CONV_TYPE_IM. 85 * Changed: GAIM_CONV_IM to GAIM_CONV_TYPE_IM.
86 * Changed: GAIM_CONV_CHAT to GAIM_CONV_TYPE_CHAT. 86 * Changed: GAIM_CONV_CHAT to GAIM_CONV_TYPE_CHAT.
87 * Changed: GAIM_CONV_MISC to GAIM_CONV_TYPE_MISC. 87 * Changed: GAIM_CONV_MISC to GAIM_CONV_TYPE_MISC.
88 * Changed: GAIM_CONV_ANY to GAIM_CONV_TYPE_ANY. 88 * Changed: GAIM_CONV_ANY to GAIM_CONV_TYPE_ANY.
89 * Changed: GaimConversationUiOps.write_conv, Replaced const char *who
90 with const char *name, const char *alias
91 * Changed: gaim_conv_chat_add_users(), added extra_msgs and
92 new_arrivals (pass NULL and FALSE respectively, to get the
93 same behavior as before)
94 * Changed: chat_add_users in GaimConversationUiOps, added aliases list
95 * Removed: chat_add_user from GaimConversationUiOps
96 * Changed: GaimConversation.log became GList * GaimConversation.logs,
97 so that a conversation can have multiple logs at once
98 * Changed: gaim_conv_chat_add_user, added extra_msgs list
99 * Added: CHAT_USERS_ALIAS_COLUMN, CHAT_USERS_COLOR_COLUMN,
100 CHAT_USERS_BUDDY_COLUMN to the list of columns for the chat
101 user list
102 * Added: OPT_PROTO_USE_DISPLAY_NAME_FOR_ME_IN_CHATS, see the prpl.h
103 documentation if you're writing a prpl
89 104
90 Signals: 105 Signals:
91 * Changed: "received-im-msg" and "received-chat-msg" to match, both 106 * Changed: "received-im-msg" and "received-chat-msg" to match, both
92 now pass a conversation pointer and flags 107 now pass a conversation pointer and flags
93 * Changed: "receiving-im-msg" and "receving-chat-msg" to match, both 108 * Changed: "receiving-im-msg" and "receving-chat-msg" to match, both
106 "file-send-cancel", and "file-send-complete" signals. See 121 "file-send-cancel", and "file-send-complete" signals. See
107 the Doxygen documentation for the details. 122 the Doxygen documentation for the details.
108 * Changed: Renamed "conversation-drag-end" to "conversation-dragging" 123 * Changed: Renamed "conversation-drag-end" to "conversation-dragging"
109 and emit before the conv. window swap happens. This prevents 124 and emit before the conv. window swap happens. This prevents
110 the old conv window from being freed before the signal emits. 125 the old conv window from being freed before the signal emits.
126 * Added: "buddy-added" and "buddy-removed", which are self-explanatory
127 * Added: "blist-node-aliased", an alias was set for a buddy, chat or
128 contact. See the Doxygen documentation for the details.
111 129
112 version 1.0.0 (09/17/2004): 130 version 1.0.0 (09/17/2004):
113 * Added: get_chat_name to the GaimPluginProtocolInfo struct 131 * Added: get_chat_name to the GaimPluginProtocolInfo struct
114 * Changed: gaim_blist_update_buddy_presence(), presence changed to 132 * Changed: gaim_blist_update_buddy_presence(), presence changed to
115 type gboolean 133 type gboolean