comparison ChangeLog.API @ 21355:fa3c4c5dea66

propagate from branch 'im.pidgin.pidgin.next.minor' (head 4018add8ebbf0e7dfc0fa002ebaeedb7048a26a6) to branch 'im.pidgin.cpw.resiak.disconnectreason' (head b9fff782d80fd2d1a999b82e31433db57c0c2db3)
author Will Thompson <will.thompson@collabora.co.uk>
date Fri, 12 Oct 2007 23:26:11 +0000
parents e967fd47baa5 bbcc9e206c43
children e747ac0c42d6
comparison
equal deleted inserted replaced
21225:e967fd47baa5 21355:fa3c4c5dea66
12 * purple_plugin_disable(), which is intended to be called when 12 * purple_plugin_disable(), which is intended to be called when
13 a purple_plugin_unload()--which was called when a user tried 13 a purple_plugin_unload()--which was called when a user tried
14 to unload a plugin--fails. This then prevents the plugin 14 to unload a plugin--fails. This then prevents the plugin
15 from being saved in the saved plugins list, so it'll won't 15 from being saved in the saved plugins list, so it'll won't
16 be loaded at the next startup. 16 be loaded at the next startup.
17 * PurpleDisconnectReason enumeration of machine-readable
18 types of connection error.
19 * purple_connection_error_reason(), to be used by prpls
20 (instead of purple_connection_error() and setting
21 gc->wants_to_die) to report errors along with a
22 PurpleDisconnectReason.
23 * PurpleConnectionUiOps.report_disconnect_reason, to be
24 implemented by UIs (rather than .report_disconnect) if
25 they want to use the reported PurpleDisconnectReason
26 to give a more specific error.
27 * purple_connection_reason_is_fatal(), acting as a hint
28 to whether automatic reconnection should be attempted
29 after a connection error (rather than checking
30 gc->wants_to_die).
17 31
18 Changed: 32 Changed:
19 * purple_plugin_unload() now honors the return value of a 33 * purple_plugin_unload() now honors the return value of a
20 plugin's unload function and can actually return FALSE now. 34 plugin's unload function and can actually return FALSE now.
21 * purple_plugin_unload() no longer does its own notifications 35 * purple_plugin_unload() no longer does its own notifications
84 * gnt_slider_set_small_step, gnt_slider_set_large_step to allow more 98 * gnt_slider_set_small_step, gnt_slider_set_large_step to allow more
85 fine tuned updates of a GntSlider 99 fine tuned updates of a GntSlider
86 * gnt_util_parse_xhtml_to_textview to parse XHTML strings in a 100 * gnt_util_parse_xhtml_to_textview to parse XHTML strings in a
87 GntTextView (this works only if libxml2 is available) 101 GntTextView (this works only if libxml2 is available)
88 102
89 version 2.1.1 (08/20/2007): 103 Version 2.1.1 (08/20/2007):
90 libpurple: 104 libpurple:
91 Changed: 105 Changed:
92 * PurpleAccountUiOps.request_authorize's authorize_cb and 106 * PurpleAccountUiOps.request_authorize's authorize_cb and
93 deny_cb parameters now correctly have type 107 deny_cb parameters now correctly have type
94 PurpleAccountRequestAuthorizationCb rather than GCallback. 108 PurpleAccountRequestAuthorizationCb rather than GCallback.