Mercurial > pidgin
annotate plugins/ChangeLog.API @ 11774:60fb8b4b61c1
[gaim-migrate @ 14065]
(00:30:44) rlaager: grim: Shouldn't the plugin API functions be documented in plugins/ChangeLog.API?
(00:31:04) Gary Kramlich (grim): rlaager: thanks for volunteering to take care of that for me ;)
committer: Tailor Script <tailor@pidgin.im>
| author | Richard Laager <rlaager@wiktel.com> |
|---|---|
| date | Sun, 23 Oct 2005 23:34:52 +0000 |
| parents | a8f8939b968e |
| children | fa17fc619f17 |
| rev | line source |
|---|---|
| 9052 | 1 Gaim: The Pimpin' Penguin IM Client that's good for the soul! |
| 2 | |
| 10971 | 3 version 2.0.0: |
| 11757 | 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_blist_node_action_new, added a fourth argument, a GList of | |
| 18 GaimBlistNodeActions to be created as a submenu of the item. | |
| 19 * gaim_connection_new, gaim_account_connect and gaim_account_register no | |
| 20 longer return a GaimConnection | |
| 21 * keep_alive in GaimConnection is renamed to keepalive | |
| 22 * gaim_mkstemp, added a second argument, a boolean, of whether or not the | |
| 23 file is binary | |
| 24 * gaim_log_logger_new, rewritten | |
| 25 * gaim_conv_window_remove_conversation()'s last argument to be a | |
| 26 GaimConversation. | |
| 27 * A new blocked icon: pixmaps/status/default/blocked.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 * gaim_log_new(), added conv parameter | |
| 33 * gaim_buddy_icon_new(), leaves a reference which the caller owns. Use | |
| 34 gaim_buddy_icon_unref() immediately if you don't want a reference (the | |
| 35 old behavior). | |
| 36 * GAIM_CONV_UNKNOWN to GAIM_CONV_TYPE_UNKNOWN. | |
| 37 * GAIM_CONV_IM to GAIM_CONV_TYPE_IM. | |
| 38 * GAIM_CONV_CHAT to GAIM_CONV_TYPE_CHAT. | |
| 39 * GAIM_CONV_MISC to GAIM_CONV_TYPE_MISC. | |
| 40 * GAIM_CONV_ANY to GAIM_CONV_TYPE_ANY. | |
| 41 * GaimConversationUiOps.write_conv, Replaced const char *who with | |
| 42 const char *name, const char *alias | |
| 43 * gaim_conv_chat_add_users(), added extra_msgs and new_arrivals (pass NULL | |
| 44 and FALSE respectively, to get the same behavior as before) | |
| 45 * chat_add_users in GaimConversationUiOps, added aliases list | |
| 46 * chat_rename_user in GaimConversationUiOps, added new_alias | |
| 47 * GaimConversation.log became GList * GaimConversation.logs, so that a | |
| 48 conversation can have multiple logs at once | |
| 49 * gaim_conv_chat_add_user, added extra_msgs list | |
| 50 * gaim_notify_userinfo, removed primary and secondary parameters | |
| 51 * GaimNotifyUiOps.notify_userinfo: removed title, primary, and secondary | |
| 52 parameters | |
| 53 | |
| 54 Removed: | |
| 55 * gaim_gtk_sound_{get,set}_mute() (replaced by the /gaim/gtk/sound/mute | |
| 56 preference) | |
| 57 * gaim_escape_html(const char *html) (use g_markup_escape_text(html, -1) | |
| 58 instead) | |
| 59 * gaim_accounts_sync, account changes are now scheduled to be saved | |
| 60 automatically | |
| 61 * gaim_connection_connect | |
| 62 * gaim_connection_disconnect | |
| 63 * gaim_connection_register | |
| 64 * gaim_accounts_auto_login | |
| 65 * gaim_find_conversation, use gaim_find_conversation_with_account instead | |
| 66 * serv_login | |
| 67 * serv_close | |
| 68 * serv_finish_login | |
| 69 * gaim_chat_get_display_name | |
| 70 * gaim_conversation_set_history, gaim_conversation_get_history, and | |
| 71 GaimConversation->history. Use gtk_imhtml_get_markup instead. | |
| 72 * serv_rename_group | |
| 73 * set_gaim_user_dir to gaim_util_set_user_dir | |
| 74 * create_prpl_icon to gaim_gtk_create_prpl_icon | |
| 75 * Window flashing support in the core: gaim_conv_window_flash, and flash UI | |
| 76 operation for conversations. Use signal "received-im-msg" or similar. | |
| 77 * All warning stuff from the core. | |
| 78 * gaim_gtkconv_get_dest_tab_at_xy(), instead use gaim_gtkconv_get_tab_at_xy() | |
| 79 * chat_add_user from GaimConversationUiOps | |
| 80 * uc from the GaimBuddy struct | |
| 81 * gaim_sound_get_handle() | |
| 82 * gaim_debug_vargs() | |
| 83 * serv_add_buddy(); use gaim_account_add_buddy() instead | |
| 84 * serv_add_buddies(); use gaim_account_add_buddies() instead | |
| 85 * serv_remove_buddy(); use gaim_account_remove_buddy() instead | |
| 86 * serv_remove_buddies(); use gaim_account_remove_buddies() instead | |
| 87 * serv_change_passwd(); use gaim_account_change_password() instead | |
| 88 * GaimGtkImPane->a_virgin | |
| 10074 | 89 |
| 11757 | 90 Added: |
| 91 * gaim_prefs_disconnect_by_handle() | |
| 92 * a password field to GaimConnection, which only persists for the | |
| 93 session (when "remember password" is false, account->password is | |
| 94 NEVER set) Use gaim_connection_get_password(GaimConnection *gc) | |
| 95 * gaim_log_common_writer, gaim_log_common_lister, gaim_log_common_sizer, | |
| 96 and gaim_log_get_log_dir to allow log formats that use standard Gaim | |
| 97 log directory to use Gaim's built-in code for these purposes. | |
| 98 * GaimLogCommonLoggerData struct for a basic logger_data struct to be | |
| 99 used with "common" logger functions. | |
| 100 * gaim_gtk_blist_node_is_contact_expanded, returns TRUE if the given | |
| 101 blist node is a buddy inside an expanded contact, or is itself an | |
| 102 expanded contact | |
| 103 * GaimLogSet struct, get_log_sets function to GaimLogLogger, | |
| 104 gaim_log_get_log_sets, gaim_log_set_compare | |
| 105 * gaim_privacy_check(), to check if a given user is allowed to send | |
| 106 messages to the specified account | |
| 107 * gtk_imhtml_clear_formatting() | |
| 108 * gtk_imhtml_delete to clear out part of a imhtml buffer | |
| 109 * gaim_buddy_icons_get_full_path(), to get the full path of a buddy | |
| 110 icon setting | |
| 111 * CHAT_USERS_ALIAS_COLUMN, CHAT_USERS_COLOR_COLUMN, | |
| 112 CHAT_USERS_BUDDY_COLUMN to the list of columns for the chat | |
| 113 user list | |
| 114 * gaim_account_add_buddy() | |
| 115 * gaim_account_add_buddies() | |
| 116 * gaim_account_remove_buddy() | |
| 117 * gaim_account_remove_buddies() | |
| 118 * gaim_account_change_password() | |
| 119 * gaim_conversation_close_logs(), to force a conversation's log(s) to | |
| 120 be closed. New logs will be opened as necessary. | |
|
11774
60fb8b4b61c1
[gaim-migrate @ 14065]
Richard Laager <rlaager@wiktel.com>
parents:
11757
diff
changeset
|
121 * gaim_plugin_get_id() |
|
60fb8b4b61c1
[gaim-migrate @ 14065]
Richard Laager <rlaager@wiktel.com>
parents:
11757
diff
changeset
|
122 * gaim_plugin_get_name() |
|
60fb8b4b61c1
[gaim-migrate @ 14065]
Richard Laager <rlaager@wiktel.com>
parents:
11757
diff
changeset
|
123 * gaim_plugin_get_version() |
|
60fb8b4b61c1
[gaim-migrate @ 14065]
Richard Laager <rlaager@wiktel.com>
parents:
11757
diff
changeset
|
124 * gaim_plugin_get_summary() |
|
60fb8b4b61c1
[gaim-migrate @ 14065]
Richard Laager <rlaager@wiktel.com>
parents:
11757
diff
changeset
|
125 * gaim_plugin_get_description() |
|
60fb8b4b61c1
[gaim-migrate @ 14065]
Richard Laager <rlaager@wiktel.com>
parents:
11757
diff
changeset
|
126 * gaim_plugin_get_author() |
|
60fb8b4b61c1
[gaim-migrate @ 14065]
Richard Laager <rlaager@wiktel.com>
parents:
11757
diff
changeset
|
127 * gaim_plugin_get_homepage() |
| 11757 | 128 |
| 129 Signals - Changed: | |
| 130 * "received-im-msg" and "received-chat-msg" to match, both now pass a | |
| 131 conversation pointer and flags | |
| 132 * "receiving-im-msg" and "receving-chat-msg" to match, both now pass a | |
| 133 conversation pointer and a pointer to the flags. | |
| 134 * "drawing-tooltip": the second argument is now a GString* instead of | |
| 135 a char** | |
| 136 * Signal propagation now stops after a handler returns a non-NULL value. | |
| 137 This value is now returned. Previously, all registered handlers were | |
| 138 called and the value from the last handler was used. | |
| 139 * "chat-invited" handlers can now return a value to control what happens | |
| 140 to the invite (accept, reject, prompt the user). See the Doxygen | |
| 141 documentation for the details. | |
| 142 * Renamed "conversation-drag-end" to "conversation-dragging" and emit | |
| 143 before the conv. window swap happens. This prevents the old conv window | |
| 144 from being freed before the signal emits. | |
| 145 * "buddy-typing" and "buddy-typing-stopped": replaced the GaimConversation* | |
| 146 with GaimAccount*, const char *name. Also, the signal is now emitted | |
| 147 regardless of whether a conversation exists and regardless of whether | |
| 148 the user is on the buddy list. | |
| 149 | |
| 150 Signals - Added: | |
| 151 * "file-recv-accept": See Doxygen docs for details. | |
| 152 * "file-recv-start": See Doxygen docs for details. | |
| 153 * "file-recv-cancel": See Doxygen docs for details. | |
| 154 * "file-recv-complete": See Doxygen docs for details. | |
| 155 * "file-send-accept": See Doxygen docs for details. | |
| 156 * "file-send-start": See Doxygen docs for details. | |
| 157 * "file-send-cancel": See Doxygen docs for details. | |
| 158 * "file-send-complete": See Doxygen docs for details. | |
| 159 * "buddy-added": Self explanatory; see Doxygen docs for full details. | |
| 160 * "buddy-removed": Self explanatory; see Doxygen docs for full details. | |
| 161 * "blist-node-aliased": an alias was set for a buddy, chat or contact. | |
| 162 See Doxygen docs for details. | |
| 163 | |
| 164 version 1.5.0 (8/11/2005): | |
| 165 * Added: gaim_xfer_conversation_write | |
| 166 Writes a messages to a conversation window with the use | |
| 167 of the associated file transfer. | |
| 168 | |
| 169 version 1.4.0 (7/7/2005): | |
| 170 * Added: gaim_buddy_icon_uncache() | |
| 171 Deletes a cached buddy icon for a specified buddy | |
| 172 * Added: gaim_buddy_icon_get_type | |
| 173 Attempts to determine the type of a given buddy icon. | |
| 174 * Added: buddy-icon-cached signal | |
| 175 Emitted when a new buddy icon is cached. | |
| 176 | |
| 177 version 1.3.1 (6/9/2005): | |
| 178 * No changes | |
| 179 | |
| 180 version 1.3.0 (5/10/2005): | |
| 181 * Added: gaim_blist_schedule_save() | |
| 182 This should be used instead of gaim_blist_sync when you | |
| 183 want the blist.xml file to be written to disk. There | |
| 184 should not be many occasions when you want to do this, | |
| 185 as the functions in the blist API that modify the buddy | |
| 186 list will normally call it for you. | |
| 187 * Added: OPT_PROTO_NO_NORMALIZE_CONV | |
| 188 Tells the conversation API to not normalize screen names | |
| 189 in conversations. This is used by the Jabber PRPL. | |
| 190 | |
| 191 version 1.2.1 (4/3/2005): | |
| 192 * No changes | |
| 193 | |
| 194 version 1.2.0 (3/17/2005): | |
| 195 * You can use gaim_signal_connect_priority() and | |
| 196 gaim_signal_connect_priority_vargs() to connect to | |
| 197 Gaim signals with a given priority (Will Gorman) | |
| 198 * Added: gaim_conversation_set_features | |
| 199 gaim_conversation_get_features | |
| 200 These allow plugins (notable prpls) to change the | |
| 201 formatting capabilities of an existing conversation. | |
| 202 This comes with a new "features" field in | |
| 203 GaimConversation (Christopher O'Brien) | |
| 204 * Added: GAIM_CONNECTION_NO_IMAGES to GaimConectionFlags | |
| 205 (Christopher O'Brien) | |
| 206 * Added: GAIM_CBFLAGS_TYPING to GaimConvChatBuddyFlags | |
| 207 (Christopher O'Brien) | |
| 208 * Added: gaim_account_request_add which takes the same arguments as | |
| 209 * gaim_account_notify_added but always asks the user if they want to add | |
| 210 * the buddy to the buddy list | |
| 211 * Added: An accompanying request_add GaimAccountUiOp | |
| 212 | |
| 213 version 1.1.4 (2/24/2005): | |
| 214 * No changes | |
| 215 | |
| 216 version 1.1.3 (2/17/2005): | |
| 217 * No changes | |
| 218 | |
| 219 version 1.1.2 (1/20/2005): | |
| 220 * No changes | |
| 221 | |
| 222 version 1.1.1 (12/28/2004): | |
| 223 * No changes | |
| 224 | |
| 225 version 1.1.0 (12/02/2004): | |
| 226 * Added: gaim_utf8_salvage | |
| 227 * Added: binary relocation support in prefix.h | |
| 228 WARNING: If your plugin uses anything inside the | |
| 229 #ifdef ENABLE_BINRELOC from prefix.h, it won't be | |
| 230 loadable on a copy of Gaim compiled without binreloc | |
| 231 support. In particular, watch out for the autoconf-like | |
| 232 macros, and accidently including them through internal.h, | |
| 233 which you probably shouldn't be including anyway. | |
| 10104 | 234 |
| 10034 | 235 version 1.0.0 (09/17/2004): |
| 9917 | 236 * Added: get_chat_name to the GaimPluginProtocolInfo struct |
| 9929 | 237 * Changed: gaim_blist_update_buddy_presence(), presence changed to |
| 10631 | 238 type gboolean |
| 10034 | 239 * Changed: the versioning scheme, and all the plugin structs |
| 9917 | 240 |
| 241 version 0.82 (08/26/2004): | |
| 9719 | 242 Gaim API: |
| 9759 | 243 * Removed: gaim_gtk_get_dispstyle(), gaim_gtk_change_text() |
| 244 * Removed: multi.h | |
| 245 * Renamed: ui.h to gtkdialogs.h | |
| 9794 | 246 * Renamed: gtkinternal.h to gtkgaim.h |
| 9759 | 247 * Renamed: show_info_dialog to gaim_gtkdialogs_info |
| 248 * Renamed: show_log_dialog to gaim_gtkdialogs_log | |
| 249 * Renamed: show_warn_dialog to gaim_gtkdialogs_warn | |
| 250 * Renamed: show_im_dialog to gaim_gtkdialogs_im | |
| 251 * Renamed: gaim_gtkdialogs_new_im to gaim_gtkdialogs_im_with_user | |
| 252 * Renamed: destroy_all_dialogs to gaim_gtkdialogs_destroy_all | |
| 253 * Renamed: alias_dialog_bud to gaim_gtkdialogs_alias_buddy | |
| 254 * Renamed: alias_dialog_contact to gaim_gtkdialogs_alias_contact | |
| 255 * Renamed: alias_dialog_blist_chat to gaim_gtkdialogs_alias_chat | |
| 256 * Renamed: show_confirm_del to gaim_gtkdialogs_remove_buddy | |
| 257 * Renamed: show_confirm_del_group to gaim_gtkdialogs_remove_group | |
| 258 * Renamed: show_confirm_del_blist_chat to gaim_gtkdialogs_remove_chat | |
| 259 * Renamed: show_confirm_del_contact to gaim_gtkdialogs_remove_contact | |
| 9761 | 260 * Renamed: show_about to gaim_gtkdialogs_about |
| 9799 | 261 * Added: gaim_notify_userinfo() and the associated notify_userinfo() UI op |
| 262 (someone who knows just why we have this can edit here) | |
| 9794 | 263 |
| 264 Buddy List API: | |
| 9761 | 265 * Changed: gaim_blist_request_add_chat(), added name parameter |
| 9794 | 266 * Added: gaim_contact_on_account() |
| 267 * Added: flags parameter to the GaimBlistNode struct | |
| 268 | |
| 269 Conversation API: | |
| 270 * Added: gaim_gtkconv_button_new() | |
| 9761 | 271 |
| 272 Protocol Plugin API: v7 | |
| 273 * Added: chat_info_defaults to the GaimPluginProtocolInfo struct | |
| 9719 | 274 |
| 9734 | 275 Signals: |
| 276 * Added: conversation-updated for any update to the data associated | |
| 277 with the conversation (topic, icon, adding to buddy list, etc.) | |
| 278 | |
| 9846 | 279 Conversation API: |
| 280 * Changed: gaim_conv_chat_add_user() (added new_arrival parameter) | |
| 281 | |
| 9719 | 282 version 0.81 (08/05/2004): |
| 9597 | 283 Commands API: |
| 284 * Most functions now have a void *data argument. | |
| 9620 | 285 |
| 286 Blist API: | |
| 9759 | 287 * Added: gaim_buddy_get_contact_alias |
| 288 * Renamed: gaim_get_buddy_alias to gaim_buddy_get_alias | |
| 289 * Renamed: gaim_get_buddy_alias_only to gaim_buddy_get_alias_only | |
| 9719 | 290 |
| 9554 | 291 Conversation API: |
| 9759 | 292 * Changed: gaim_conv_chat_add_user(), added flags parameter |
| 293 * Changed: gaim_conv_chat_add_users(), added GList of flags parameter | |
| 294 * Changed: gaim_conv_chat_get_users(), now returns a GList of | |
| 295 GaimConvChatBuddy's | |
| 296 * Changed: gaim_conv_chat_set_users() now expects a GList of | |
| 297 GaimConvChatBuddy's | |
| 9554 | 298 * Added: gaim_conv_chat_set_user_flags() |
| 9734 | 299 * Added: gaim_conv_chat_get_user_flags() |
| 300 * Added: gaim_conv_chat_find_user() | |
| 301 * Added: gaim_conv_chat_cb_new() | |
| 302 * Added: gaim_conv_chat_cb_find() | |
| 303 * Added: gaim_conv_chat_cb_destroy() | |
| 304 * Added: gaim_conv_chat_cb_get_name() | |
| 9554 | 305 |
| 306 Conversation UI ops: | |
| 307 * Added: chat_update_user() | |
| 308 | |
| 309 Signals: | |
| 310 * Changed: chat-buddy-joining & chat-buddy-joined now include the user's flags | |
| 9590 | 311 * Changed: chat-buddy-joining & chat-buddy-leaving are now booleans, return |
| 9734 | 312 TRUE if you don't want the join/leave to be displayed in the UI. |
| 9554 | 313 * Added: chat-buddy-flags for when user's flags change |
| 9734 | 314 gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT (required for the new |
| 315 chat-buddy-flags signal) | |
| 9609 | 316 * Added: account-modified for when account settings have been changed. |
| 9554 | 317 |
| 9538 | 318 version 0.80 (07/15/2004): |
| 9460 | 319 Gaim API: |
| 9473 | 320 * Removed: PRPL numbers : gaim_account_set_protocol(), |
| 321 gaim_account_get_protocol(), gaim_accounts_find_with_prpl_num, | |
| 322 gaim_prpl_num_to_id(), gaim_prpl_id_to_num(), GaimProtocol | |
| 323 | |
| 324 Protocol Plugin API: v6 | |
| 325 * Added: can_receive_file & send_file to the GaimPluginProtocolInfo struct | |
| 9460 | 326 |
|
9515
425000e11511
[gaim-migrate @ 10342]
Christian Hammond <chipx86@chipx86.com>
parents:
9514
diff
changeset
|
327 Signals: |
| 9554 | 328 * Changed "chat-invited" to also include the components hash table so |
|
9515
425000e11511
[gaim-migrate @ 10342]
Christian Hammond <chipx86@chipx86.com>
parents:
9514
diff
changeset
|
329 plugins can use serv_join_chat when the signal is emitted. |
| 9517 | 330 * Added "chat-topic-changed" signal plugins know when a topic is changed. |
|
9515
425000e11511
[gaim-migrate @ 10342]
Christian Hammond <chipx86@chipx86.com>
parents:
9514
diff
changeset
|
331 |
| 9384 | 332 version 0.79 (06/24/2004): |
|
9228
3de4cb53762b
[gaim-migrate @ 10024]
Christian Hammond <chipx86@chipx86.com>
parents:
9124
diff
changeset
|
333 Gaim API: |
|
3de4cb53762b
[gaim-migrate @ 10024]
Christian Hammond <chipx86@chipx86.com>
parents:
9124
diff
changeset
|
334 * gaim_url_parse() now takes two additional parameters, which are used |
|
3de4cb53762b
[gaim-migrate @ 10024]
Christian Hammond <chipx86@chipx86.com>
parents:
9124
diff
changeset
|
335 for returning the username and password from the URL, if they exist. |
|
9260
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9228
diff
changeset
|
336 * Added: has_focus UI op to GaimConversationUiOps and |
|
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9228
diff
changeset
|
337 GaimConvWindowUiOps. |
|
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9228
diff
changeset
|
338 * Added: gaim_conversation_has_focus() and gaim_conv_window_has_focus(). |
| 9303 | 339 * Removed: gaim_blist_save() |
|
9228
3de4cb53762b
[gaim-migrate @ 10024]
Christian Hammond <chipx86@chipx86.com>
parents:
9124
diff
changeset
|
340 |
| 9336 | 341 Protocol Plugin API: v5 |
| 9301 | 342 * Changed: add_buddy, add_buddies, remove_buddy, remove_buddies, |
| 343 rename_group and remove_group to take GaimBuddy's and | |
| 344 GaimGroup's consistently. | |
| 9336 | 345 * Removed: OPT_PROTO_BUDDY_ICON (replaced by icon_spec) |
| 346 * Added: icon_spec to the GaimPluginProtocolInfo struct | |
| 9301 | 347 |
| 9124 | 348 version 0.78 (05/30/2004): |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
349 Plugin API: v4 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
350 * Added: actions - for plugins to add to the new Plugin Actions menu |
| 9052 | 351 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
352 Loader Plugin API: v2 (no changes) |
| 9052 | 353 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
354 Protocol Plugin API: v4 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
355 * Removed: set_dir, get_dir and dir_search (not used, AIM-centric) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
356 * Removed: actions (replaced by generic plugin actions) |
| 9052 | 357 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
358 Perl Plugin API: v2 (no changes) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
359 TCL Plugin API: (no changes) |
| 9052 | 360 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
361 Signals: |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
362 * Added: "blist-node-extended-menu" for extending Buddy, Chat and |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
363 Group right-click menus |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
364 * Added: "drawing-tooltip" for plugins to allow plugins to change text |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
365 appearing in tooltips |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
366 * Added: "gtkblist-created" |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
367 * Added: "receiving-im-msg" and "receiving-chat-msg" (these behave |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
368 exactly like received-*-msg used to) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
369 * Added: "buddy-idle-updated" signal, for when the idle time changes. |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
370 * Changed: "received-im-msg" and "received-chat-msg" no longer pass |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
371 pointers to who, message and flags, and are now void. |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
372 * Removed: "drawing-menu" - it was UI sepecific and |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
373 "blist-node-extended-menu" is superior |
| 9052 | 374 |
| 375 version 0.77 (04/22/2004): | |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
376 Loader & Protocol Plugins independantly versioned |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
377 Plugin loading now checks versioning on plugins (Standard, Loader & |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
378 Protocol) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
379 new GAIM_{PLUGIN,PRPL,LOADER}_API_VERSION constants |
| 9052 | 380 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
381 Plugin API: v3 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
382 * Added: prefs_info for UI independant plugin prefs |
| 9052 | 383 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
384 Loader Plugin API: v2 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
385 * Added: api_version at top of GaimPluginLoaderInfo struct |
| 9052 | 386 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
387 Protocol Plugin API: v2 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
388 * Added: api_version at top of GaimPluginProtocolInfo struct |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
389 * Added: chat_menu for protocol specific extensions to the chat menu |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
390 * Removed: get_away "Nada used it. Pink elephants on parade." |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
391 * Removed: protocol_prefs (replaced by generic plugin prefs_info) |
| 9052 | 392 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
393 Perl Plugin API: v2 (no changes) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
394 TCL API: (no changes) |
| 9052 | 395 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
396 Signals: |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
397 * Added: "conversation-drag-ended" |
| 9052 | 398 |
| 399 version 0.76 (04/01/2004): | |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
400 Plugin API: v2 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
401 Perl Plugin API: v2 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
402 Loader Plugin API: (not versioned) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
403 Protocol Plugin API: (not versioned) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
404 * Added: protocol_prefs for protocol specific preferences |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
405 * Added: reject_chat so protocols can act on chat invite rejection |
| 9052 | 406 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
407 TCL Plugin API: (not versioned) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
408 * Changes to plugin registration to show descriptions |
| 9052 | 409 |
