Mercurial > pidgin
annotate ChangeLog.API @ 15933:b449dc6b8a20
A little doxygen love and some tiny gaim->purpleisms
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 26 Mar 2007 05:28:57 +0000 |
parents | b0471b2a1de9 |
children | cc3c50816cc9 |
rev | line source |
---|---|
15933
b449dc6b8a20
A little doxygen love and some tiny gaim->purpleisms
Mark Doliner <mark@kingant.net>
parents:
15612
diff
changeset
|
1 Pidgin and Finch: The Pimpin' Penguin IM Clients that're good for the soul |
14503 | 2 |
3 version 2.0.0: | |
4 Changed: | |
5 * All the status stuff. Yay! | |
6 * gaim_prefs_connect_callback(), added handle parameter | |
7 * gtk_imhtml_toolbar now descends from GtkHBox making it easier to add your | |
8 own widgets to it | |
9 * gaim_find_conversation_with_account, added a "type" parameter | |
10 * gaim_gtk_prefs_labeled_spin_button, the "key" parameter is now a | |
11 const char* instead of just a char* | |
12 * gaim_gtk_prefs_labeled_entry, the "key" parameter is now a const char* | |
13 instead of just a char* | |
14 * the add_buddy perl sub. The sub now takes the account as the first | |
15 argument, and buddy and group as the second and third. It also adds | |
16 the buddy to the server-side buddy list of the given account. | |
17 * gaim_connection_new, gaim_account_connect and gaim_account_register no | |
18 longer return a GaimConnection | |
19 * keep_alive in GaimConnection is renamed to keepalive | |
20 * gaim_mkstemp, added a second argument, a boolean, of whether or not the | |
21 file is binary | |
22 * gaim_log_logger_new, rewritten | |
23 * gaim_conv_window_remove_conversation()'s last argument to be a | |
24 GaimConversation. | |
25 * A new blocked icon: pixmaps/status/default/blocked.png | |
26 * In pixmaps/status/default: extendedaway.png renamed to extended_away.png | |
27 * In pixmaps/status/default: na.png renamed to unavailable.png | |
28 * gtk_imhtml_toggle_bold(): No longer returns a value | |
29 * gtk_imhtml_toggle_italic(): No longer returns a value | |
30 * gtk_imhtml_toggle_underline(): No longer returns a value | |
31 * gtk_imhtml_toggle_strike(): No longer returns a value | |
32 * gtk_imhtml_scroll_to_end(): Added the smooth paramter | |
33 * gaim_log_new(), added conv parameter | |
34 * gaim_buddy_icon_new(), leaves a reference which the caller owns. Use | |
35 gaim_buddy_icon_unref() immediately if you don't want a reference (the | |
36 old behavior). | |
37 * GAIM_CONV_UNKNOWN to GAIM_CONV_TYPE_UNKNOWN. | |
38 * GAIM_CONV_IM to GAIM_CONV_TYPE_IM. | |
39 * GAIM_CONV_CHAT to GAIM_CONV_TYPE_CHAT. | |
40 * GAIM_CONV_MISC to GAIM_CONV_TYPE_MISC. | |
41 * GAIM_CONV_ANY to GAIM_CONV_TYPE_ANY. | |
42 * GaimConversationUiOps.write_conv, Replaced const char *who with | |
43 const char *name, const char *alias | |
44 * gaim_conv_chat_add_users(), added extra_msgs and new_arrivals (pass NULL | |
45 and FALSE respectively, to get the same behavior as before) | |
46 * chat_add_users in GaimConversationUiOps, added cbuddies and | |
47 new_arrivals and removed buddies. | |
48 * chat_rename_user in GaimConversationUiOps, added new_alias | |
49 * gaim_conv_chat_cb_new(), added alias. (pass NULL to get the same | |
50 behavior as before). | |
51 * GaimConversation.log became GList * GaimConversation.logs, so that a | |
52 conversation can have multiple logs at once | |
53 * gaim_conv_chat_add_user, added extra_msgs | |
54 * gaim_notify_userinfo, removed primary and secondary parameters | |
55 * GaimNotifyUiOps.notify_userinfo: removed title, primary, and | |
56 secondary parameters | |
57 * Idle timers are now added and removed in gtkidle.c in response | |
58 to the signed-on and signed-off signals | |
59 * GaimXfer->ops.read, GaimXfer->ops.write, gaim_xfer_set_read_fnc(), | |
60 gaim_xfer_set_write_fnc(), gaim_xfer_read(), gaim_xfer_write(): | |
61 Changed ssize_t to gssize | |
62 * serv_got_im, serv_got_chat_in, serv_send_im and serv_chat_send all use | |
63 GaimMessageFlags instead of GaimConvImFlags / GaimConvChatFlags | |
64 * All core<->prpl message passing now uses html. This was previously true | |
65 for receiving messages, it's now also true for sending them. prpls that | |
66 don't support html need to gaim_unescape_html() the message. | |
67 * Notify API: GCallback -> GaimNotifyCloseCallback, | |
68 void *user_data -> gpointer user_data | |
69 * gaim_notify_searchresults_get_rows_count, | |
70 gaim_notify_searchresults_get_columns_count: return type now guint | |
71 * gaim_account_notify_added: No longer checks if there is a | |
72 GaimBuddy for the added user, that's left up to the prpls. See the | |
73 documentation for this function and gaim_account_request_add. | |
74 * gaim_accounts_reorder: new_index is now a gint instead of a size_t | |
75 * displaying-message signals: displaying-[im|chat]-msg and | |
76 displayed-[im|chat]-msg signals are emitted for all messages | |
77 (ie, for received messages, sent messages, system messages, error | |
78 messages etc.), and the signals now have | |
79 gaim_gtk_conversations_get_handle() for their handle. | |
80 * GAIM_NOTIFY_BUTTON_ADD_BUDDY to GAIM_NOTIFY_BUTTON_ADD | |
81 * conversation-switched: This signal has been moved from conversation to | |
82 the UI and the signal-handlers only receive the | |
83 conversation that has been switched to. | |
84 * GaimPluginProtocolInfo: Added offline_message | |
85 * GaimPluginProtocolInfo: Added whiteboard_prpl_ops | |
86 * GaimPluginProtocolInfo: Added media_prpl_ops | |
15146
4035dfc09faa
[gaim-migrate @ 17932]
Evan Schoenberg <evan.s@dreskin.net>
parents:
15117
diff
changeset
|
87 * GaimPluginProtocolInfo: Added "user_info" argument to tooltip_text, |
4035dfc09faa
[gaim-migrate @ 17932]
Evan Schoenberg <evan.s@dreskin.net>
parents:
15117
diff
changeset
|
88 changed the return type to void |
14503 | 89 * GaimPluginProtocolInfo: Added "full" argument to tooltip_text |
90 * gaim_pounce_new(): Added option argument for pounce options | |
91 * gaim_network_listen() and gaim_network_listen_range(): Added | |
92 socket_type parameter to allow creation of UDP listening. Modified | |
93 to be asynchronous with a callback to allow for UPnP operation. | |
94 Returns a data structure that can be used to cancel the listen | |
95 attempt using gaim_network_listen_cancel() | |
96 * GaimPrefCallback: val is now a gconstpointer instead of a gpointer | |
97 * gtk_imhtml_get_current_format(): the arguments are now set to TRUE or | |
98 FALSE. Previously they were set to TRUE or left alone. Also, you | |
99 may now pass NULL if you're not interested in a specific formatting. | |
100 * Smiley Themes: Backslashes must be backslash-escaped. | |
101 * Plugins: Depedencies are now honored when unloading plugins. | |
102 * gaim_markup_extract_info_field(): Added format_cb parameter. | |
15146
4035dfc09faa
[gaim-migrate @ 17932]
Evan Schoenberg <evan.s@dreskin.net>
parents:
15117
diff
changeset
|
103 * gaim_markup_extract_info_field(): Changed GString parameter to a GaimNotifyUserInfo paramter. |
14503 | 104 * gaim_str_to_time(): Added support for parsing the MM/DD/YYYY format. |
105 * gaim_plugin_action_new(): label is now const char * | |
106 * gaim_plugin_pref_new_with_name(): name is now const char * | |
107 * gaim_plugin_pref_new_with_label(): label is now const char * | |
108 * gaim_plugin_pref_new_with_name_and_label(): name and label are | |
109 now const char * | |
110 * gaim_plugin_pref_set_name(): name is now const char * | |
111 * gaim_plugin_pref_get_name(): return type is now const char * | |
112 * gaim_plugin_pref_set_label(): label is now const char * | |
113 * gaim_plugin_pref_get_label(): return type is now const char * | |
114 * gaim_plugin_pref_add_choice(): label is now const char * | |
115 * struct proto_chat_entry: label is now const char * | |
116 * struct proto_chat_entry: identifier is now const char * | |
117 * All network activity has been updated to use non-blocking sockets. | |
118 This means that plugins must be updated to expect such a socket from | |
119 gaim_proxy_connect() and gaim_network_listen*(). | |
120 * gaim_proxy_connect(): changed to return NULL on error and a pointer | |
121 to a GaimProxyConnectInfo object which can be used to cancel | |
14837 | 122 connection attempts using gaim_proxy_connect_cancel(). Also added |
14840 | 123 a 'handle' parameter that can be used to cancel the connection |
124 attempt using gaim_proxy_connect_cancel_with_handle(). | |
14503 | 125 * gaim_gethostbyname_async(): Renamed to gaim_dnsquery_a() and |
126 changed to return a pointer to a data structure that can be | |
127 used to cancel the pending DNS query using gaim_dnsquery_destroy() | |
128 * gaim_url_fetch(): Renamed to gaim_util_fetch_url() and changed | |
14962 | 129 to return a pointer to a data structure that can be used to cancel |
14503 | 130 the pending HTTP request using gaim_util_fetch_url_cancel(). |
15094 | 131 Corresponding callback has changed to accept this data structure |
132 as its first argument, and to accept an error message as an | |
133 additional final argument. | |
14503 | 134 * gaim_gtk_create_imhtml(): Added sw_ret() parameter |
135 * gaim_account_get_log(): Added create parameter | |
136 * GAIM_CMD_P_VERYHIGH is now GAIM_CMD_P_VERY_HIGH | |
137 * gtk_imhtml_search_find(): Now wraps around to the top instead of | |
138 clearing the search at the end. | |
139 * gaim_gtkxfer_dialog_show: Can now take NULL to show (and possibly | |
140 create) a default gtkxfer dialog. | |
14583
ac6120e2e27c
[gaim-migrate @ 17307]
Richard Laager <rlaager@wiktel.com>
parents:
14520
diff
changeset
|
141 * CHAT_USERS_BUDDY_COLUMN became CHAT_USERS_WEIGHT_COLUMN, along with |
ac6120e2e27c
[gaim-migrate @ 17307]
Richard Laager <rlaager@wiktel.com>
parents:
14520
diff
changeset
|
142 a change in the values stored in the column. |
14756
1a219542abdc
[gaim-migrate @ 17513]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
14587
diff
changeset
|
143 * gaim_find_buddies() returns a list of all buddies in the account if name |
1a219542abdc
[gaim-migrate @ 17513]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
14587
diff
changeset
|
144 is NULL. |
14852
cf25420b074d
[gaim-migrate @ 17621]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
14840
diff
changeset
|
145 * gaim_gtk_set_custom_buddy_icon() sets custom icon for a user. |
14929
8d0b9a5b1146
[gaim-migrate @ 17701]
Richard Laager <rlaager@wiktel.com>
parents:
14852
diff
changeset
|
146 * Hid the definition of _GaimStringref, which already had a warning to |
8d0b9a5b1146
[gaim-migrate @ 17701]
Richard Laager <rlaager@wiktel.com>
parents:
14852
diff
changeset
|
147 avoid accessing it directly. |
15222 | 148 * notify_userinfo() UI op is passed a GaimNotifyUserInfo instead of a char* |
149 for the user information | |
15239 | 150 * gaim_buddy_icon_get_scale_size() and was changed to ALWAYS scale |
15222 | 151 the icon instead of only when icon_spec->scale_rules contains |
152 GAIM_ICON_SCALE_DISPLAY. Callers should be changed to check the | |
153 scale_rules before calling this function. | |
15239 | 154 * gaim_gtk_buddy_icon_get_scale_size() was changed to accept an |
155 additional parameter which is used to determine what kind of | |
156 scaling should be done, if any. | |
14503 | 157 |
158 Removed: | |
159 * gaim_gtk_sound_{get,set}_mute() (replaced by the /gaim/gtk/sound/mute | |
160 preference) | |
161 * gaim_escape_html(const char *html) (use g_markup_escape_text(html, -1) | |
162 instead) | |
163 * gaim_accounts_sync, account changes are now scheduled to be saved | |
164 automatically | |
165 * gaim_connection_connect | |
166 * gaim_connection_disconnect | |
167 * gaim_connection_register | |
168 * gaim_accounts_auto_login | |
169 * gaim_find_conversation, use gaim_find_conversation_with_account instead | |
170 * gaim_chat_get_display_name | |
171 * gaim_conversation_set_history, gaim_conversation_get_history, and | |
172 GaimConversation->history. Use gtk_imhtml_get_markup instead. | |
173 * set_gaim_user_dir to gaim_util_set_user_dir | |
174 * create_prpl_icon to gaim_gtk_create_prpl_icon | |
175 * Window flashing support in the core: gaim_conv_window_flash, and flash UI | |
176 operation for conversations. Use signal "received-im-msg" or similar. | |
177 * All warning stuff from the core. | |
178 * gaim_gtkconv_get_dest_tab_at_xy(), instead use gaim_gtkconv_get_tab_at_xy() | |
179 * chat_add_user from GaimConversationUiOps: only chat_add_users is used | |
180 * chat_remove_user from GaimConversationUiOps: only chat_remove_users is used | |
181 * uc from the GaimBuddy struct | |
182 * gaim_sound_get_handle() | |
183 * gaim_debug_vargs() | |
184 * serv_add_buddy(); use gaim_account_add_buddy() instead | |
185 * serv_add_buddies(); use gaim_account_add_buddies() instead | |
14982 | 186 * serv_change_passwd(); use gaim_account_change_password() instead |
187 * serv_close() | |
188 * serv_finish_login() | |
189 * serv_login() | |
14503 | 190 * serv_remove_buddy(); use gaim_account_remove_buddy() instead |
191 * serv_remove_buddies(); use gaim_account_remove_buddies() instead | |
14982 | 192 * serv_rename_group() |
193 * serv_set_buddyicon(): use gaim_account_set_buddy_icon() instead | |
14503 | 194 * serv_touch_idle(): use gaim_gtk_check_idle() instead |
195 * GaimGtkImPane->a_virgin | |
196 * gaim_str_strip_cr(); use gaim_str_strip_char(str, '\r') instead | |
197 * gaim_find_buddys_group renamed to gaim_buddy_get_group | |
198 * gaim_gtkpounce_menu_build() | |
199 * gaim_gtkpounce_dialog_show() | |
200 * GaimGtkBuddyList->bpmenu | |
201 * GaimConvImFlags and GaimConvChatFlags; use GaimMessageFlags instead | |
202 * cb and user_data from the ops in GaimNotifyUiOps: This is now handled | |
203 by the notify API in the core. | |
204 * GaimConversationUiOps.updated: use the conversation-updated signal | |
205 * GAIM_SUBTYPE_CONV_WINDOW: windows are now only represented in the UI, | |
206 so GAIM_TYPE_BOXED is used for the signal types | |
207 * gaim_gtk_privacy_is_showable(): We do fallback privacy in the core | |
208 now, so this would always be TRUE now. | |
209 * GaimBlistNodeAction: See GaimMenuAction | |
210 * gaim_blist_node_action_new(); use gaim_menu_action_new() instead | |
211 * gaim_date() | |
212 * gaim_date_full(): See gaim_date_format_full() | |
213 * gaim_strftime(): See gaim_utf8_strftime() | |
214 * GAIM_MESSAGE_COLORIZE | |
215 * user_data from gaim_notify_searchresults_new_rows and from | |
216 notify_searchresults in GaimNotifyUiOps. | |
217 * gaim_conversation_get_send_history(), and send_history from | |
218 GaimConversation | |
219 * Removed ui_ops from GaimBuddyList. Use gaim_blist_get_ui_ops() instead | |
220 * GaimGtkConversation: dialogs (dialogs.search moved to GaimGtkWindow) | |
221 * gaim_show_xfer_dialog: Use gaim_gtk_xfer_dialog_show(NULL) instead. | |
14587
bee5661c15cb
[gaim-migrate @ 17311]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14583
diff
changeset
|
222 * GaimGtkRoomlistDialog: Nothing used it outside of the file it was in. |
bee5661c15cb
[gaim-migrate @ 17311]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14583
diff
changeset
|
223 * gaim_gtk_roomlist_dialog_new: use gaim_gtk_roomlist_show |
bee5661c15cb
[gaim-migrate @ 17311]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14583
diff
changeset
|
224 * gaim_gtk_roomlist_dialog_new_with_account: use gaim_gtk_roomlist_show_with_account |
14503 | 225 |
226 Added: | |
227 * gaim_prefs_disconnect_by_handle() | |
228 * a password field to GaimConnection, which only persists for the | |
229 session (when "remember password" is false, account->password is | |
230 NEVER set) Use gaim_connection_get_password(GaimConnection *gc) | |
231 * gaim_log_common_writer, gaim_log_common_lister, gaim_log_common_sizer, | |
232 and gaim_log_get_log_dir to allow log formats that use standard Gaim | |
233 log directory to use Gaim's built-in code for these purposes. | |
234 * GaimLogCommonLoggerData struct for a basic logger_data struct to be | |
235 used with "common" logger functions. | |
236 * gaim_gtk_blist_node_is_contact_expanded, returns TRUE if the given | |
237 blist node is a buddy inside an expanded contact, or is itself an | |
238 expanded contact | |
239 * GaimLogSet struct, get_log_sets function to GaimLogLogger, | |
240 gaim_log_get_log_sets, gaim_log_set_compare | |
241 * gaim_privacy_check(), to check if a given user is allowed to send | |
242 messages to the specified account | |
243 * gtk_imhtml_clear_formatting() | |
244 * gtk_imhtml_delete to clear out part of a imhtml buffer | |
245 * gtk_imhtml_get_protocol_name() | |
246 * gaim_buddy_icons_get_full_path(), to get the full path of a buddy | |
247 icon setting | |
248 * CHAT_USERS_ALIAS_COLUMN, CHAT_USERS_COLOR_COLUMN, | |
249 CHAT_USERS_BUDDY_COLUMN to the list of columns for the chat | |
250 user list | |
251 * gaim_account_add_buddy() | |
252 * gaim_account_add_buddies() | |
253 * gaim_account_remove_buddy() | |
254 * gaim_account_remove_buddies() | |
255 * gaim_account_change_password() | |
256 * gaim_account_supports_offline_message() | |
257 * gaim_conversation_close_logs(), to force a conversation's log(s) to | |
258 be closed. New logs will be opened as necessary. | |
15612
b0471b2a1de9
Core support for external protocol URIs. The actual handling of the URIs will be in the prpls and other plugins. This commit only includes the win32 method of actually passing in a URI - the dbus implementation still needs to be written.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15346
diff
changeset
|
259 * gaim_got_protocol_handler_uri() |
14503 | 260 * gaim_plugin_get_id() |
261 * gaim_plugin_get_name() | |
262 * gaim_plugin_get_version() | |
263 * gaim_plugin_get_summary() | |
264 * gaim_plugin_get_description() | |
265 * gaim_plugin_get_author() | |
266 * gaim_plugin_get_homepage() | |
267 * gaim_gtkconv_switch_active_conversation(GaimConversation *) | |
268 * gaim_str_strip_char() to strip a given character from | |
269 a given string | |
270 * gaim_util_chrreplace() to replace a given character with a | |
271 different character | |
272 * gaim_gtk_blist_toggle_visibility() to intelligently toggle the | |
273 visiblity of the buddy list | |
274 * gaim_gtk_blist_visibility_manager_add() to indicate the addition of a | |
275 visibility manager - see the docs for more information | |
276 * gaim_gtk_blist_visibility_manager_remove() to indicate the removal of | |
277 a visibility manager - see the docs for more information | |
278 * gaim_gtk_conversations_find_unseen_list() to get a list of conversations | |
279 with an "unseen" state >= to the specified state and other criteria | |
280 * gaim_gtk_conversations_fill_menu() fill a menu from list of conversations | |
281 * gaim_gtk_create_prpl_icon() | |
282 * gaim_gtk_create_prpl_icon_with_status() | |
283 * gaim_gtk_pounces_manager_show() | |
284 * gaim_gtk_pounces_manager_hide() | |
285 * gaim_gtk_pounce_editor_show() | |
286 * GAIM_POUNCE_MESSAGE_RECEIVED | |
287 * GaimPounceOption | |
288 * gaim_pounce_set_options() | |
289 * gaim_pounce_set_options() | |
290 * GAIM_STOCK_CONNECT, GAIM_STOCK_DISCONNECT | |
291 * GAIM_STOCK_PLUGIN | |
292 * gaim_account_request_add: Notifies the user that they were added to | |
293 someone's buddy list, and offers them the choice | |
294 of adding that person to their buddy list. | |
295 * gaim_blist_alias_contact() | |
296 * gaim_cipher_http_digest_calculate_session_key() | |
297 * gaim_cipher_http_digest_calculate_response() | |
298 * gaim_notify_searchresults_labeled() | |
299 * GAIM_NOTIFY_BUTTON_LABELED, GAIM_NOTIFY_BUTTON_INFO, | |
300 GAIM_NOTIFY_BUTTON_IM, GAIM_NOTIFY_BUTTON_JOIN, | |
301 GAIM_NOTIFY_BUTTON_INVITE | |
302 * stock buttons GAIM_STOCK_IM, GAIM_STOCK_INFO | |
303 * gaim_conversation_present() | |
304 * GaimConversationUiOps->present(GaimConversation *) | |
305 * GaimPlugin.unloadable | |
306 * gaim_plugin_is_unloadable() | |
307 * GAIM_PLUGIN_PREF_STRING_FORMAT | |
308 * gaim_plugin_pref_get_format_type() | |
309 * gaim_plugin_pref_set_format_type() | |
310 * GaimStringFormatType | |
311 * gaim_log_get_handle() | |
312 * gaim_log_uninit() | |
313 * GAIM_SUBTYPE_LOG | |
314 * gaim_marshal_POINTER__POINTER_POINTER | |
315 * gaim_utf8_ncr_encode() | |
316 * gaim_gtk_log_init() | |
317 * gaim_gtk_log_get_handle() | |
318 * gaim_gtk_log_uninit() | |
319 * gaim_util_fetch_url_request() | |
320 * GaimMenuAction | |
321 * gaim_menu_action_new() | |
322 * gaim_menu_action_free() | |
323 * GaimInfoFieldFormatCallback | |
324 * gaim_utf8_strftime() | |
325 * gaim_date_format_short() | |
326 * gaim_date_format_long() | |
327 * gaim_date_format_full() | |
328 * gaim_time_format() | |
329 * gaim_plugin_action_free() | |
330 * GaimRequestType: Added GAIM_REQUEST_FOLDER | |
331 * GaimRequestUiOps: Added request_folder | |
332 * gaim_request_folder() | |
333 * gaim_gtk_setup_screenname_autocomplete() | |
334 * gaim_gtk_set_cursor() | |
335 * gaim_gtk_clear_cursor() | |
336 * GAIM_MESSAGE_ACTIVE_ONLY | |
337 * gaim_proxy_get_setup() | |
338 * GaimNotifySearchResultsCallback: Added user_data. | |
339 * gaim_notify_searchresults: Added user_data. | |
340 * gaim_network_listen_cancel(): Can be used to cancel a previous | |
341 call to gaim_network_listen() or gaim_network_listen_range() | |
342 * gaim_proxy_connect_cancel(): Can be used to cancel a pending | |
343 gaim_proxy_connect() request | |
14837 | 344 * gaim_proxy_connect_cancel_with_handle(): Can be used to cancel |
345 a previous gaim_proxy_connect() request using a specified handle | |
14503 | 346 * gaim_dnsquery_destroy(): Can be used to cancel a pending DNS |
347 query. | |
348 * gaim_util_fetch_url_cancel(): Can be used to cancel a pending | |
349 call to gaim_util_fetch_url() or gaim_util_fetch_url_request(). | |
350 * GaimGtkWindow: dialogs.search (previously in GaimGtkConversation) | |
351 * gaim_buddy_get_server_alias() | |
14520
82b59abcaee4
[gaim-migrate @ 17240]
Richard Laager <rlaager@wiktel.com>
parents:
14503
diff
changeset
|
352 * gaim_conv_send_confirm() |
82b59abcaee4
[gaim-migrate @ 17240]
Richard Laager <rlaager@wiktel.com>
parents:
14503
diff
changeset
|
353 * GaimConversationUiOps.send_confirm |
14587
bee5661c15cb
[gaim-migrate @ 17311]
Etan Reisner <pidgin@unreliablesource.net>
parents:
14583
diff
changeset
|
354 * gaim_gtk_roomlist_dialog_show_with_account |
15117
1f0db03dd165
[gaim-migrate @ 17903]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15094
diff
changeset
|
355 * gaim_gtk_tree_view_search_equal_func to be used with |
1f0db03dd165
[gaim-migrate @ 17903]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15094
diff
changeset
|
356 gtk_tree_view_set_search_equal_func |
15260 | 357 * gaim_xfer_set_bytes_sent(). Sets the offset in the file to |
358 read from or write to. | |
15318
b17a907065cc
[gaim-migrate @ 18109]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15260
diff
changeset
|
359 * gaim_privacy_deny and gaim_privacy_allow |
15346
467244cc4ff2
[gaim-migrate @ 18139]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15318
diff
changeset
|
360 * gaim_gtk_blist_set_headline |
467244cc4ff2
[gaim-migrate @ 18139]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15318
diff
changeset
|
361 * gaim_gtk_set_urgent |
467244cc4ff2
[gaim-migrate @ 18139]
Sadrul Habib Chowdhury <imadil@gmail.com>
parents:
15318
diff
changeset
|
362 * GtkGaimScrollBook and its functions. |
14503 | 363 |
364 Signals - Changed: (See the Doxygen docs for details on all signals.) | |
365 * Signal propagation now stops after a handler returns a non-NULL value. | |
366 This value is now returned. Previously, all registered handlers were | |
367 called and the value from the last handler was used. | |
368 * "buddy-typing" and "buddy-typing-stopped": replaced the GaimConversation* | |
369 with GaimAccount*, const char *name. Also, the signal is now emitted | |
370 regardless of whether a conversation exists and regardless of whether | |
371 the user is on the buddy list. | |
372 * "chat-buddy-joined": added the new_arrival argument | |
373 * "chat-invited" handlers can now return a value to control what happens | |
374 to the invite (accept, reject, prompt the user). | |
375 * "chat-left": Emitted *after* setting chat->left to TRUE. | |
376 * "drawing-tooltip": the second argument is now a GString* instead of | |
377 a char** | |
378 * "drawing-tooltip": added the "full" argument | |
379 * "received-im-msg" and "received-chat-msg" to match, both now pass a | |
380 conversation pointer and flags | |
381 * "receiving-im-msg" and "receving-chat-msg" to match, both now pass a | |
382 conversation pointer and a pointer to the flags. | |
383 * "writing-im-msg", "wrote-im-msg", "writing-chat-msg", "wrote-chat-msg": | |
384 Now emitted from a difference place in the message handling code. | |
385 The arguments also changed. | |
386 * "displaying-im-msg", "displayed-im-msg", "displaying-chat-msg", | |
387 "displayed-chat-msg": Added "who" argument, which changes the order | |
388 of the existing arguments. | |
389 | |
390 Signals - Added: (See the Doxygen docs for details on all signals.) | |
391 * "account-disabled" | |
392 * "account-status-changed" | |
393 * "account-alias-changed" | |
394 * "cipher-added" | |
395 * "cipher-removed" | |
396 * "conversation-dragging" | |
397 * "dbus-method-called" | |
398 * "dbus-introspect" | |
399 * "file-recv-accept" | |
400 * "file-recv-start" | |
401 * "file-recv-cancel" | |
402 * "file-recv-complete" | |
403 * "file-recv-request" | |
404 * "file-send-accept" | |
405 * "file-send-start" | |
406 * "file-send-cancel" | |
407 * "file-send-complete" | |
408 * "buddy-added" | |
409 * "buddy-removed" | |
410 * "blist-node-aliased" | |
411 * "buddy-status-changed" | |
412 * "buddy-idle-changed": A buddy's idle status changed. | |
413 * "buddy-icon-changed" | |
15150
45a939f70f1d
[gaim-migrate @ 17936]
Evan Schoenberg <evan.s@dreskin.net>
parents:
15146
diff
changeset
|
414 * "buddy-got-login-time": The login time for a buddy is now known |
14503 | 415 * "displaying-userinfo" |
416 * "gtkblist-hiding" | |
417 * "gtkblist-unhiding" | |
418 * "log-displaying" | |
419 * "savedstatus-changed" | |
420 * "sendto-extended-menu" | |
15612
b0471b2a1de9
Core support for external protocol URIs. The actual handling of the URIs will be in the prpls and other plugins. This commit only includes the win32 method of actually passing in a URI - the dbus implementation still needs to be written.
Daniel Atallah <daniel.atallah@gmail.com>
parents:
15346
diff
changeset
|
421 * "uri-handler" |
14503 | 422 |
423 Signals - Removed: | |
424 * "account-away": replaced by account-status-changed | |
425 * "account-warned" | |
426 * "buddy-away": replaced by buddy-status-changed | |
427 * "buddy-back": replaced by buddy-status-changed | |
428 * "buddy-idle": replaced by buddy-idle-changed | |
429 * "buddy-unidle": replaced by buddy-idle-changed | |
430 * "buddy-icon-cached": replaced by buddy-icon-changed | |
431 * "conversation-drag-end": replaced by conversation-dragging | |
432 * "conversation-switching" | |
433 | |
434 version 1.5.0 (8/11/2005): | |
435 * Added: gaim_xfer_conversation_write | |
436 Writes a messages to a conversation window with the use | |
437 of the associated file transfer. | |
438 | |
439 version 1.4.0 (7/7/2005): | |
440 * Added: gaim_buddy_icon_uncache() | |
441 Deletes a cached buddy icon for a specified buddy | |
442 * Added: gaim_buddy_icon_get_type | |
443 Attempts to determine the type of a given buddy icon. | |
444 * Added: buddy-icon-cached signal | |
445 Emitted when a new buddy icon is cached. | |
446 | |
447 version 1.3.1 (6/9/2005): | |
448 * No changes | |
449 | |
450 version 1.3.0 (5/10/2005): | |
451 * Added: gaim_blist_schedule_save() | |
452 This should be used instead of gaim_blist_sync when you | |
453 want the blist.xml file to be written to disk. There | |
454 should not be many occasions when you want to do this, | |
455 as the functions in the blist API that modify the buddy | |
456 list will normally call it for you. | |
457 * Added: OPT_PROTO_NO_NORMALIZE_CONV | |
458 Tells the conversation API to not normalize screen names | |
459 in conversations. This is used by the Jabber PRPL. | |
460 | |
461 version 1.2.1 (4/3/2005): | |
462 * No changes | |
463 | |
464 version 1.2.0 (3/17/2005): | |
465 * You can use gaim_signal_connect_priority() and | |
466 gaim_signal_connect_priority_vargs() to connect to | |
467 Gaim signals with a given priority (Will Gorman) | |
468 * Added: gaim_conversation_set_features | |
469 gaim_conversation_get_features | |
470 These allow plugins (notable prpls) to change the | |
471 formatting capabilities of an existing conversation. | |
472 This comes with a new "features" field in | |
473 GaimConversation (Christopher O'Brien) | |
474 * Added: GAIM_CONNECTION_NO_IMAGES to GaimConectionFlags | |
475 (Christopher O'Brien) | |
476 * Added: GAIM_CBFLAGS_TYPING to GaimConvChatBuddyFlags | |
477 (Christopher O'Brien) | |
478 * Added: gaim_account_request_add which takes the same arguments as | |
479 * gaim_account_notify_added but always asks the user if they want to add | |
480 * the buddy to the buddy list | |
481 * Added: An accompanying request_add GaimAccountUiOp | |
482 | |
483 version 1.1.4 (2/24/2005): | |
484 * No changes | |
485 | |
486 version 1.1.3 (2/17/2005): | |
487 * No changes | |
488 | |
489 version 1.1.2 (1/20/2005): | |
490 * No changes | |
491 | |
492 version 1.1.1 (12/28/2004): | |
493 * No changes | |
494 | |
495 version 1.1.0 (12/02/2004): | |
496 * Added: gaim_utf8_salvage | |
497 * Added: binary relocation support in prefix.h | |
498 WARNING: If your plugin uses anything inside the | |
499 #ifdef ENABLE_BINRELOC from prefix.h, it won't be | |
500 loadable on a copy of Gaim compiled without binreloc | |
501 support. In particular, watch out for the autoconf-like | |
502 macros, and accidently including them through internal.h, | |
503 which you probably shouldn't be including anyway. | |
504 | |
505 version 1.0.0 (09/17/2004): | |
506 * Added: get_chat_name to the GaimPluginProtocolInfo struct | |
507 * Changed: gaim_blist_update_buddy_presence(), presence changed to | |
508 type gboolean | |
509 * Changed: the versioning scheme, and all the plugin structs | |
510 | |
511 version 0.82 (08/26/2004): | |
512 Gaim API: | |
513 * Removed: gaim_gtk_get_dispstyle(), gaim_gtk_change_text() | |
514 * Removed: multi.h | |
515 * Renamed: ui.h to gtkdialogs.h | |
516 * Renamed: gtkinternal.h to gtkgaim.h | |
517 * Renamed: show_info_dialog to gaim_gtkdialogs_info | |
518 * Renamed: show_log_dialog to gaim_gtkdialogs_log | |
519 * Renamed: show_warn_dialog to gaim_gtkdialogs_warn | |
520 * Renamed: show_im_dialog to gaim_gtkdialogs_im | |
521 * Renamed: gaim_gtkdialogs_new_im to gaim_gtkdialogs_im_with_user | |
522 * Renamed: destroy_all_dialogs to gaim_gtkdialogs_destroy_all | |
523 * Renamed: alias_dialog_bud to gaim_gtkdialogs_alias_buddy | |
524 * Renamed: alias_dialog_contact to gaim_gtkdialogs_alias_contact | |
525 * Renamed: alias_dialog_blist_chat to gaim_gtkdialogs_alias_chat | |
526 * Renamed: show_confirm_del to gaim_gtkdialogs_remove_buddy | |
527 * Renamed: show_confirm_del_group to gaim_gtkdialogs_remove_group | |
528 * Renamed: show_confirm_del_blist_chat to gaim_gtkdialogs_remove_chat | |
529 * Renamed: show_confirm_del_contact to gaim_gtkdialogs_remove_contact | |
530 * Renamed: show_about to gaim_gtkdialogs_about | |
531 * Added: gaim_notify_userinfo() and the associated notify_userinfo() UI op | |
15146
4035dfc09faa
[gaim-migrate @ 17932]
Evan Schoenberg <evan.s@dreskin.net>
parents:
15117
diff
changeset
|
532 which pass account and contact information associated with the |
4035dfc09faa
[gaim-migrate @ 17932]
Evan Schoenberg <evan.s@dreskin.net>
parents:
15117
diff
changeset
|
533 userinfo |
14503 | 534 |
535 Buddy List API: | |
536 * Changed: gaim_blist_request_add_chat(), added name parameter | |
537 * Added: gaim_contact_on_account() | |
538 * Added: flags parameter to the GaimBlistNode struct | |
539 | |
540 Conversation API: | |
541 * Added: gaim_gtkconv_button_new() | |
542 | |
543 Protocol Plugin API: v7 | |
544 * Added: chat_info_defaults to the GaimPluginProtocolInfo struct | |
545 | |
546 Signals: | |
547 * Added: conversation-updated for any update to the data associated | |
548 with the conversation (topic, icon, adding to buddy list, etc.) | |
549 | |
550 Conversation API: | |
551 * Changed: gaim_conv_chat_add_user() (added new_arrival parameter) | |
552 | |
553 version 0.81 (08/05/2004): | |
554 Commands API: | |
555 * Most functions now have a void *data argument. | |
556 | |
557 Blist API: | |
558 * Added: gaim_buddy_get_contact_alias | |
559 * Renamed: gaim_get_buddy_alias to gaim_buddy_get_alias | |
560 * Renamed: gaim_get_buddy_alias_only to gaim_buddy_get_alias_only | |
561 | |
562 Conversation API: | |
563 * Changed: gaim_conv_chat_add_user(), added flags parameter | |
564 * Changed: gaim_conv_chat_add_users(), added GList of flags parameter | |
565 * Changed: gaim_conv_chat_get_users(), now returns a GList of | |
566 GaimConvChatBuddy's | |
567 * Changed: gaim_conv_chat_set_users() now expects a GList of | |
568 GaimConvChatBuddy's | |
569 * Added: gaim_conv_chat_set_user_flags() | |
570 * Added: gaim_conv_chat_get_user_flags() | |
571 * Added: gaim_conv_chat_find_user() | |
572 * Added: gaim_conv_chat_cb_new() | |
573 * Added: gaim_conv_chat_cb_find() | |
574 * Added: gaim_conv_chat_cb_destroy() | |
575 * Added: gaim_conv_chat_cb_get_name() | |
576 | |
577 Conversation UI ops: | |
578 * Added: chat_update_user() | |
579 | |
580 Signals: | |
581 * Changed: chat-buddy-joining & chat-buddy-joined now include the user's flags | |
582 * Changed: chat-buddy-joining & chat-buddy-leaving are now booleans, return | |
583 TRUE if you don't want the join/leave to be displayed in the UI. | |
584 * Added: chat-buddy-flags for when user's flags change | |
585 gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT (required for the new | |
586 chat-buddy-flags signal) | |
587 * Added: account-modified for when account settings have been changed. | |
588 | |
589 version 0.80 (07/15/2004): | |
590 Gaim API: | |
591 * Removed: PRPL numbers : gaim_account_set_protocol(), | |
592 gaim_account_get_protocol(), gaim_accounts_find_with_prpl_num, | |
593 gaim_prpl_num_to_id(), gaim_prpl_id_to_num(), GaimProtocol | |
594 | |
595 Protocol Plugin API: v6 | |
596 * Added: can_receive_file & send_file to the GaimPluginProtocolInfo struct | |
597 | |
598 Signals: | |
599 * Changed "chat-invited" to also include the components hash table so | |
600 plugins can use serv_join_chat when the signal is emitted. | |
601 * Added "chat-topic-changed" signal plugins know when a topic is changed. | |
602 | |
603 version 0.79 (06/24/2004): | |
604 Gaim API: | |
605 * gaim_url_parse() now takes two additional parameters, which are used | |
606 for returning the username and password from the URL, if they exist. | |
607 * Added: has_focus UI op to GaimConversationUiOps and | |
608 GaimConvWindowUiOps. | |
609 * Added: gaim_conversation_has_focus() and gaim_conv_window_has_focus(). | |
610 * Removed: gaim_blist_save() | |
611 | |
612 Protocol Plugin API: v5 | |
613 * Changed: add_buddy, add_buddies, remove_buddy, remove_buddies, | |
614 rename_group and remove_group to take GaimBuddy's and | |
615 GaimGroup's consistently. | |
616 * Removed: OPT_PROTO_BUDDY_ICON (replaced by icon_spec) | |
617 * Added: icon_spec to the GaimPluginProtocolInfo struct | |
618 | |
619 version 0.78 (05/30/2004): | |
620 Plugin API: v4 | |
621 * Added: actions - for plugins to add to the new Plugin Actions menu | |
622 | |
623 Loader Plugin API: v2 (no changes) | |
624 | |
625 Protocol Plugin API: v4 | |
626 * Removed: set_dir, get_dir and dir_search (not used, AIM-centric) | |
627 * Removed: actions (replaced by generic plugin actions) | |
628 | |
629 Perl Plugin API: v2 (no changes) | |
630 TCL Plugin API: (no changes) | |
631 | |
632 Signals: | |
633 * Added: "blist-node-extended-menu" for extending Buddy, Chat and | |
634 Group right-click menus | |
635 * Added: "drawing-tooltip" for plugins to allow plugins to change text | |
636 appearing in tooltips | |
637 * Added: "gtkblist-created" | |
638 * Added: "receiving-im-msg" and "receiving-chat-msg" (these behave | |
639 exactly like received-*-msg used to) | |
640 * Added: "buddy-idle-updated" signal, for when the idle time changes. | |
641 * Changed: "received-im-msg" and "received-chat-msg" no longer pass | |
642 pointers to who, message and flags, and are now void. | |
643 * Removed: "drawing-menu" - it was UI sepecific and | |
644 "blist-node-extended-menu" is superior | |
645 | |
646 version 0.77 (04/22/2004): | |
647 Loader & Protocol Plugins independantly versioned | |
648 Plugin loading now checks versioning on plugins (Standard, Loader & | |
649 Protocol) | |
650 new GAIM_{PLUGIN,PRPL,LOADER}_API_VERSION constants | |
651 | |
652 Plugin API: v3 | |
653 * Added: prefs_info for UI independant plugin prefs | |
654 | |
655 Loader Plugin API: v2 | |
656 * Added: api_version at top of GaimPluginLoaderInfo struct | |
657 | |
658 Protocol Plugin API: v2 | |
659 * Added: api_version at top of GaimPluginProtocolInfo struct | |
660 * Added: chat_menu for protocol specific extensions to the chat menu | |
661 * Removed: get_away "Nada used it. Pink elephants on parade." | |
662 * Removed: protocol_prefs (replaced by generic plugin prefs_info) | |
663 | |
664 Perl Plugin API: v2 (no changes) | |
665 TCL API: (no changes) | |
666 | |
667 Signals: | |
668 * Added: "conversation-drag-ended" | |
669 | |
670 version 0.76 (04/01/2004): | |
671 Plugin API: v2 | |
672 Perl Plugin API: v2 | |
673 Loader Plugin API: (not versioned) | |
674 Protocol Plugin API: (not versioned) | |
675 * Added: protocol_prefs for protocol specific preferences | |
676 * Added: reject_chat so protocols can act on chat invite rejection | |
677 | |
678 TCL Plugin API: (not versioned) | |
679 * Changes to plugin registration to show descriptions | |
680 |