Mercurial > pidgin.yaz
annotate plugins/ChangeLog.API @ 10774:d83f745c997b
[gaim-migrate @ 12383]
Some escaping stuff, all over the place.
Various escaping fixes in the IRC prpl.
The core and plugins only need to escape text if it's going to be shown in
a gtkimhtml or equivalent - such as writing to a conversation window, or
gaim_notify_{formatted,userinfo}
The primary and secondary text for all notify and request API functions
do NOT need to be escaped by the core or plugins, because whether html-like
markup is required for these is UI dependent. Now we always escape these
in the Gtk UI request & notify ops.
Should I backport any of the above to oldstatus?
I also removed gaim_chat_get_display_name() - it was almost a duplicate of
gaim_chat_get_name(), and it leaked.
committer: Tailor Script <tailor@pidgin.im>
| author | Stu Tomlinson <stu@nosnilmot.com> |
|---|---|
| date | Sat, 02 Apr 2005 17:18:43 +0000 |
| parents | aa10aa27c177 |
| children | dcfb8d8784e6 |
| rev | line source |
|---|---|
| 9052 | 1 Gaim: The Pimpin' Penguin IM Client that's good for the soul! |
| 2 | |
| 10074 | 3 version 2.0.0cvs: |
| 4 * Changed: All the status stuff. Yay! | |
| 10087 | 5 * Changed: gaim_prefs_connect_callback(), added handle parameter |
| 6 * Added: gaim_prefs_disconnect_by_handle() | |
| 10074 | 7 * Removed: gaim_gtk_sound_{get,set}_mute() (replaced by the |
| 8 /gaim/gtk/sound/mute preference) | |
| 10100 | 9 * Changed: gtk_imhtml_toolbar now descends from GtkHBox making it |
| 10631 | 10 easier to add your own widgets to it |
| 10246 | 11 * Changed: gaim_find_conversation, added a "type" parameter |
| 12 * Changed: gaim_find_conversation_with_account, added a "type" parameter | |
| 10478 | 13 * Changed: gaim_gtk_prefs_labeled_spin_button, the "key" parameter is |
| 10631 | 14 now a const char* instead of just a char* |
| 10478 | 15 * Changed: gaim_gtk_prefs_labeled_entry, the "key" parameter is |
| 10631 | 16 now a const char* instead of just a char* |
| 17 * Changed: the add_buddy perl sub. The argument now takes the account | |
| 18 as the first argument, and buddy and group as the second and | |
| 19 third. It also adds the buddy to the server-side buddy | |
| 20 list of the given account. | |
|
10670
cfb1f4b08ab1
[gaim-migrate @ 12210]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10631
diff
changeset
|
21 * Changed: gaim_blist_node_action_new, added a fourth argument, a GList |
|
cfb1f4b08ab1
[gaim-migrate @ 12210]
Etan Reisner <pidgin@unreliablesource.net>
parents:
10631
diff
changeset
|
22 of GaimBlistNodeActions to be created as a submenu of the item. |
|
10732
c4cb90065e1d
[gaim-migrate @ 12334]
Luke Schierer <lschiere@pidgin.im>
parents:
10670
diff
changeset
|
23 * Removed: gaim_escape_html(const char *html) (use |
|
c4cb90065e1d
[gaim-migrate @ 12334]
Luke Schierer <lschiere@pidgin.im>
parents:
10670
diff
changeset
|
24 g_markup_escape_text(html, -1) instead) |
| 10752 | 25 * Removed: gaim_accounts_sync, account changes are now scheduled to be saved |
| 26 automatically | |
| 27 * Removed: gaim_connection_connect | |
| 28 * Removed: gaim_connection_disconnect | |
| 29 * Removed: gaim_connection_register | |
| 30 * Removed: gaim_accounts_auto_login | |
| 31 * Changed: gaim_connection_new, gaim_account_connect and gaim_account_register | |
| 32 no longer return a GaimConnection | |
| 33 * Added: a password field to GaimConnection, which only persists for the | |
| 34 session (when "remember password" is false, account->password is NEVER set) | |
| 35 Use gaim_connection_get_password(GaimConnection *gc) | |
| 36 * Removed: serv_login | |
| 37 * Removed: serv_close | |
| 38 * Removed: serv_finish_login | |
| 39 * Changed: keep_alive in GaimConnection is renamed to keepalive | |
| 10774 | 40 * Removed: gaim_chat_get_display_name |
| 10074 | 41 |
| 10104 | 42 Signals: |
| 43 * Changed: "received-im-msg and "received-chat-msg" to match, both | |
| 10631 | 44 now pass a conversation pointer and flags |
| 10104 | 45 * Changed: "receiving-im-msg" and "receving-chat-msg" to match, both |
| 10631 | 46 now pass a conversation pointer and a pointer to the flags. |
| 10477 | 47 * Changed: "drawing-tooltip," the second argument is now a GString* |
| 10631 | 48 instead of a char** |
| 10104 | 49 |
| 10034 | 50 version 1.0.0 (09/17/2004): |
| 9917 | 51 * Added: get_chat_name to the GaimPluginProtocolInfo struct |
| 9929 | 52 * Changed: gaim_blist_update_buddy_presence(), presence changed to |
| 10631 | 53 type gboolean |
| 10034 | 54 * Changed: the versioning scheme, and all the plugin structs |
| 9917 | 55 |
| 56 version 0.82 (08/26/2004): | |
| 9719 | 57 Gaim API: |
| 9759 | 58 * Removed: gaim_gtk_get_dispstyle(), gaim_gtk_change_text() |
| 59 * Removed: multi.h | |
| 60 * Renamed: ui.h to gtkdialogs.h | |
| 9794 | 61 * Renamed: gtkinternal.h to gtkgaim.h |
| 9759 | 62 * Renamed: show_info_dialog to gaim_gtkdialogs_info |
| 63 * Renamed: show_log_dialog to gaim_gtkdialogs_log | |
| 64 * Renamed: show_warn_dialog to gaim_gtkdialogs_warn | |
| 65 * Renamed: show_im_dialog to gaim_gtkdialogs_im | |
| 66 * Renamed: gaim_gtkdialogs_new_im to gaim_gtkdialogs_im_with_user | |
| 67 * Renamed: destroy_all_dialogs to gaim_gtkdialogs_destroy_all | |
| 68 * Renamed: alias_dialog_bud to gaim_gtkdialogs_alias_buddy | |
| 69 * Renamed: alias_dialog_contact to gaim_gtkdialogs_alias_contact | |
| 70 * Renamed: alias_dialog_blist_chat to gaim_gtkdialogs_alias_chat | |
| 71 * Renamed: show_confirm_del to gaim_gtkdialogs_remove_buddy | |
| 72 * Renamed: show_confirm_del_group to gaim_gtkdialogs_remove_group | |
| 73 * Renamed: show_confirm_del_blist_chat to gaim_gtkdialogs_remove_chat | |
| 74 * Renamed: show_confirm_del_contact to gaim_gtkdialogs_remove_contact | |
| 9761 | 75 * Renamed: show_about to gaim_gtkdialogs_about |
| 9799 | 76 * Added: gaim_notify_userinfo() and the associated notify_userinfo() UI op |
| 77 (someone who knows just why we have this can edit here) | |
| 9794 | 78 |
| 79 Buddy List API: | |
| 9761 | 80 * Changed: gaim_blist_request_add_chat(), added name parameter |
| 9794 | 81 * Added: gaim_contact_on_account() |
| 82 * Added: flags parameter to the GaimBlistNode struct | |
| 83 | |
| 84 Conversation API: | |
| 85 * Added: gaim_gtkconv_button_new() | |
| 9761 | 86 |
| 87 Protocol Plugin API: v7 | |
| 88 * Added: chat_info_defaults to the GaimPluginProtocolInfo struct | |
| 9719 | 89 |
| 9734 | 90 Signals: |
| 91 * Added: conversation-updated for any update to the data associated | |
| 92 with the conversation (topic, icon, adding to buddy list, etc.) | |
| 93 | |
| 9846 | 94 Conversation API: |
| 95 * Changed: gaim_conv_chat_add_user() (added new_arrival parameter) | |
| 96 | |
| 9719 | 97 version 0.81 (08/05/2004): |
| 9597 | 98 Commands API: |
| 99 * Most functions now have a void *data argument. | |
| 9620 | 100 |
| 101 Blist API: | |
| 9759 | 102 * Added: gaim_buddy_get_contact_alias |
| 103 * Renamed: gaim_get_buddy_alias to gaim_buddy_get_alias | |
| 104 * Renamed: gaim_get_buddy_alias_only to gaim_buddy_get_alias_only | |
| 9719 | 105 |
| 9554 | 106 Conversation API: |
| 9759 | 107 * Changed: gaim_conv_chat_add_user(), added flags parameter |
| 108 * Changed: gaim_conv_chat_add_users(), added GList of flags parameter | |
| 109 * Changed: gaim_conv_chat_get_users(), now returns a GList of | |
| 110 GaimConvChatBuddy's | |
| 111 * Changed: gaim_conv_chat_set_users() now expects a GList of | |
| 112 GaimConvChatBuddy's | |
| 9554 | 113 * Added: gaim_conv_chat_set_user_flags() |
| 9734 | 114 * Added: gaim_conv_chat_get_user_flags() |
| 115 * Added: gaim_conv_chat_find_user() | |
| 116 * Added: gaim_conv_chat_cb_new() | |
| 117 * Added: gaim_conv_chat_cb_find() | |
| 118 * Added: gaim_conv_chat_cb_destroy() | |
| 119 * Added: gaim_conv_chat_cb_get_name() | |
| 9554 | 120 |
| 121 Conversation UI ops: | |
| 122 * Added: chat_update_user() | |
| 123 | |
| 124 Signals: | |
| 125 * Changed: chat-buddy-joining & chat-buddy-joined now include the user's flags | |
| 9590 | 126 * Changed: chat-buddy-joining & chat-buddy-leaving are now booleans, return |
| 9734 | 127 TRUE if you don't want the join/leave to be displayed in the UI. |
| 9554 | 128 * Added: chat-buddy-flags for when user's flags change |
| 9734 | 129 gaim_marshal_VOID__POINTER_POINTER_POINTER_UINT_UINT (required for the new |
| 130 chat-buddy-flags signal) | |
| 9609 | 131 * Added: account-modified for when account settings have been changed. |
| 9554 | 132 |
| 9538 | 133 version 0.80 (07/15/2004): |
| 9460 | 134 Gaim API: |
| 9473 | 135 * Removed: PRPL numbers : gaim_account_set_protocol(), |
| 136 gaim_account_get_protocol(), gaim_accounts_find_with_prpl_num, | |
| 137 gaim_prpl_num_to_id(), gaim_prpl_id_to_num(), GaimProtocol | |
| 138 | |
| 139 Protocol Plugin API: v6 | |
| 140 * Added: can_receive_file & send_file to the GaimPluginProtocolInfo struct | |
| 9460 | 141 |
|
9515
425000e11511
[gaim-migrate @ 10342]
Christian Hammond <chipx86@chipx86.com>
parents:
9514
diff
changeset
|
142 Signals: |
| 9554 | 143 * 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
|
144 plugins can use serv_join_chat when the signal is emitted. |
| 9517 | 145 * 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
|
146 |
| 9384 | 147 version 0.79 (06/24/2004): |
|
9228
3de4cb53762b
[gaim-migrate @ 10024]
Christian Hammond <chipx86@chipx86.com>
parents:
9124
diff
changeset
|
148 Gaim API: |
|
3de4cb53762b
[gaim-migrate @ 10024]
Christian Hammond <chipx86@chipx86.com>
parents:
9124
diff
changeset
|
149 * gaim_url_parse() now takes two additional parameters, which are used |
|
3de4cb53762b
[gaim-migrate @ 10024]
Christian Hammond <chipx86@chipx86.com>
parents:
9124
diff
changeset
|
150 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
|
151 * Added: has_focus UI op to GaimConversationUiOps and |
|
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9228
diff
changeset
|
152 GaimConvWindowUiOps. |
|
947876140943
[gaim-migrate @ 10059]
Christian Hammond <chipx86@chipx86.com>
parents:
9228
diff
changeset
|
153 * Added: gaim_conversation_has_focus() and gaim_conv_window_has_focus(). |
| 9303 | 154 * Removed: gaim_blist_save() |
|
9228
3de4cb53762b
[gaim-migrate @ 10024]
Christian Hammond <chipx86@chipx86.com>
parents:
9124
diff
changeset
|
155 |
| 9336 | 156 Protocol Plugin API: v5 |
| 9301 | 157 * Changed: add_buddy, add_buddies, remove_buddy, remove_buddies, |
| 158 rename_group and remove_group to take GaimBuddy's and | |
| 159 GaimGroup's consistently. | |
| 9336 | 160 * Removed: OPT_PROTO_BUDDY_ICON (replaced by icon_spec) |
| 161 * Added: icon_spec to the GaimPluginProtocolInfo struct | |
| 9301 | 162 |
| 9124 | 163 version 0.78 (05/30/2004): |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
164 Plugin API: v4 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
165 * Added: actions - for plugins to add to the new Plugin Actions menu |
| 9052 | 166 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
167 Loader Plugin API: v2 (no changes) |
| 9052 | 168 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
169 Protocol Plugin API: v4 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
170 * 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
|
171 * Removed: actions (replaced by generic plugin actions) |
| 9052 | 172 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
173 Perl Plugin API: v2 (no changes) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
174 TCL Plugin API: (no changes) |
| 9052 | 175 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
176 Signals: |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
177 * Added: "blist-node-extended-menu" for extending Buddy, Chat and |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
178 Group right-click menus |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
179 * Added: "drawing-tooltip" for plugins to allow plugins to change text |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
180 appearing in tooltips |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
181 * Added: "gtkblist-created" |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
182 * Added: "receiving-im-msg" and "receiving-chat-msg" (these behave |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
183 exactly like received-*-msg used to) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
184 * Added: "buddy-idle-updated" signal, for when the idle time changes. |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
185 * Changed: "received-im-msg" and "received-chat-msg" no longer pass |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
186 pointers to who, message and flags, and are now void. |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
187 * Removed: "drawing-menu" - it was UI sepecific and |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
188 "blist-node-extended-menu" is superior |
| 9052 | 189 |
| 190 version 0.77 (04/22/2004): | |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
191 Loader & Protocol Plugins independantly versioned |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
192 Plugin loading now checks versioning on plugins (Standard, Loader & |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
193 Protocol) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
194 new GAIM_{PLUGIN,PRPL,LOADER}_API_VERSION constants |
| 9052 | 195 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
196 Plugin API: v3 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
197 * Added: prefs_info for UI independant plugin prefs |
| 9052 | 198 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
199 Loader Plugin API: v2 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
200 * Added: api_version at top of GaimPluginLoaderInfo struct |
| 9052 | 201 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
202 Protocol Plugin API: v2 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
203 * Added: api_version at top of GaimPluginProtocolInfo struct |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
204 * Added: chat_menu for protocol specific extensions to the chat menu |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
205 * Removed: get_away "Nada used it. Pink elephants on parade." |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
206 * Removed: protocol_prefs (replaced by generic plugin prefs_info) |
| 9052 | 207 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
208 Perl Plugin API: v2 (no changes) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
209 TCL API: (no changes) |
| 9052 | 210 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
211 Signals: |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
212 * Added: "conversation-drag-ended" |
| 9052 | 213 |
| 214 version 0.76 (04/01/2004): | |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
215 Plugin API: v2 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
216 Perl Plugin API: v2 |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
217 Loader Plugin API: (not versioned) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
218 Protocol Plugin API: (not versioned) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
219 * Added: protocol_prefs for protocol specific preferences |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
220 * Added: reject_chat so protocols can act on chat invite rejection |
| 9052 | 221 |
|
9120
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
222 TCL Plugin API: (not versioned) |
|
b1cac9f6fee3
[gaim-migrate @ 9897]
Christian Hammond <chipx86@chipx86.com>
parents:
9109
diff
changeset
|
223 * Changes to plugin registration to show descriptions |
| 9052 | 224 |
