comparison ChangeLog.API @ 21560:665e04562de0

This merge has the effect of reverting the hinting code from trunk.
author Richard Laager <rlaager@wiktel.com>
date Sat, 17 Nov 2007 00:12:30 +0000
parents a4860971f861 7b30d02a36aa
children 554cb1447d06
comparison
equal deleted inserted replaced
21544:9b4d1af17ced 21560:665e04562de0
13 * purple_plugin_disable(), which is intended to be called when 13 * purple_plugin_disable(), which is intended to be called when
14 a purple_plugin_unload()--which was called when a user tried 14 a purple_plugin_unload()--which was called when a user tried
15 to unload a plugin--fails. This then prevents the plugin 15 to unload a plugin--fails. This then prevents the plugin
16 from being saved in the saved plugins list, so it'll won't 16 from being saved in the saved plugins list, so it'll won't
17 be loaded at the next startup. 17 be loaded at the next startup.
18
19 * PurpleDisconnectReason enumeration of machine-readable 18 * PurpleDisconnectReason enumeration of machine-readable
20 types of connection error. 19 types of connection error.
21 * purple_connection_error_reason(), to be used by prpls 20 * purple_connection_error_reason(), to be used by prpls
22 (instead of purple_connection_error() and setting 21 (instead of purple_connection_error() and setting
23 gc->wants_to_die) to report errors along with a 22 gc->wants_to_die) to report errors along with a
50 * purple_util_init() 49 * purple_util_init()
51 * purple_util_uninit() 50 * purple_util_uninit()
52 51
53 * purple_network_listen_map_external() to temporarily disable 52 * purple_network_listen_map_external() to temporarily disable
54 mapping ports externally via NAT-PMP or UPnP. 53 mapping ports externally via NAT-PMP or UPnP.
55
56 * pidgin_dialogs_about_with_parent()
57 * pidgin_log_show_contact_with_parent()
58 * pidgin_log_show_with_parent()
59 * pidgin_plugin_dialog_show_with_parent()
60 * pidgin_pounce_editor_show_with_parent()
61 * pidgin_pounces_manager_show_with_parent()
62 * pidgin_syslog_show_with_parent()
63
64 * purple_request_accept_cancel_with_hint()
65 * purple_request_action_varg_with_hint()
66 * purple_request_action_with_hint()
67 * purple_request_choice_varg_with_hint()
68 * purple_request_choice_with_hint()
69 * purple_request_fields_with_hint()
70 * purple_request_file_with_hint()
71 * purple_request_folder_with_hint()
72 * purple_request_input_with_hint()
73 * purple_request_ok_cancel_with_hint()
74 * purple_request_yes_no_with_hint()
75
76 UI hints set by libpurple:
77 * PURPLE_REQUEST_UI_HINT_ACCOUNT
78 * PURPLE_REQUEST_UI_HINT_BLIST
79 * PURPLE_REQUEST_UI_HINT_BUDDY
80 * PURPLE_REQUEST_UI_HINT_CONV
81 * PURPLE_REQUEST_UI_HINT_REGISTER
82 * PURPLE_REQUEST_UI_HINT_XFER
83
84 Common UI hints set by UIs:
85 * PURPLE_REQUEST_UI_HINT_ACCOUNTMGR
86 * PURPLE_REQUEST_UI_HINT_CERTMGR
87 * PURPLE_REQUEST_UI_HINT_PLUGINMGR
88 * PURPLE_REQUEST_UI_HINT_POUNCEMGR
89 * PURPLE_REQUEST_UI_HINT_PREFSMGR
90 * PURPLE_REQUEST_UI_HINT_STATUSMGR
91 54
92 Changed: 55 Changed:
93 * purple_plugin_unload() now honors the return value of a 56 * purple_plugin_unload() now honors the return value of a
94 plugin's unload function and can actually return FALSE now. 57 plugin's unload function and can actually return FALSE now.
95 * purple_plugin_unload() no longer does its own notifications 58 * purple_plugin_unload() no longer does its own notifications