diff 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
line wrap: on
line diff
--- a/plugins/ChangeLog.API	Tue Sep 06 02:35:26 2005 +0000
+++ b/plugins/ChangeLog.API	Tue Sep 06 03:04:07 2005 +0000
@@ -86,6 +86,21 @@
 	* Changed: GAIM_CONV_CHAT to GAIM_CONV_TYPE_CHAT.
 	* Changed: GAIM_CONV_MISC to GAIM_CONV_TYPE_MISC.
 	* Changed: GAIM_CONV_ANY to GAIM_CONV_TYPE_ANY.
+	* Changed: GaimConversationUiOps.write_conv, Replaced const char *who
+	           with const char *name, const char *alias
+	* Changed: gaim_conv_chat_add_users(), added extra_msgs and
+	           new_arrivals (pass NULL and FALSE respectively, to get the
+	           same behavior as before)
+	* Changed: chat_add_users in GaimConversationUiOps, added aliases list
+	* Removed: chat_add_user from GaimConversationUiOps
+	* Changed: GaimConversation.log became GList * GaimConversation.logs,
+	           so that a conversation can have multiple logs at once
+	* Changed: gaim_conv_chat_add_user, added extra_msgs list
+	* Added:   CHAT_USERS_ALIAS_COLUMN, CHAT_USERS_COLOR_COLUMN,
+	           CHAT_USERS_BUDDY_COLUMN to the list of columns for the chat
+	           user list
+	* Added:   OPT_PROTO_USE_DISPLAY_NAME_FOR_ME_IN_CHATS, see the prpl.h
+	           documentation if you're writing a prpl
 
 	Signals:
 	* Changed: "received-im-msg" and "received-chat-msg" to match, both
@@ -108,6 +123,9 @@
 	* Changed: Renamed "conversation-drag-end" to "conversation-dragging"
 	           and emit before the conv. window swap happens. This prevents
 	           the old conv window from being freed before the signal emits.
+	* Added:   "buddy-added" and "buddy-removed", which are self-explanatory
+	* Added:   "blist-node-aliased", an alias was set for a buddy, chat or
+	           contact.  See the Doxygen documentation for the details.
 
 version 1.0.0 (09/17/2004):
 	* Added: get_chat_name to the GaimPluginProtocolInfo struct