im.pidgin.pidgin.next.minor: ea579831d8561ac6b0cde4b034383b02b3e51ae5

sadrul at pidgin.im sadrul at pidgin.im
Thu Oct 11 23:28:03 EDT 2007


-----------------------------------------------------------------
Revision: ea579831d8561ac6b0cde4b034383b02b3e51ae5
Ancestor: 4a2ef3eb6d1d91fa27b9b9b09918d2ec26ed00f0
Author: sadrul at pidgin.im
Date: 2007-10-12T02:57:26
Branch: im.pidgin.pidgin.next.minor

Modified files:
        ChangeLog.API doc/account-signals.dox libpurple/request.h

ChangeLog: 

Changelog some of the stuff.

-------------- next part --------------
============================================================
--- ChangeLog.API	005dcc0002fa69732e0d73f8b4d16f867dc10c14
+++ ChangeLog.API	3310ef85fa3eeef53924a029d24b33bd6237355e
@@ -1,5 +1,15 @@ Pidgin and Finch: The Pimpin' Penguin IM
 Pidgin and Finch: The Pimpin' Penguin IM Clients That're Good for the Soul
 
+version 2.3.0 (??/??/????):
+	libpurple:
+		Added:
+		* purple_request_field_blist_nodes_new and its accessory functions.
+		* Added a PurpleConversation field in PurpleConvMessage
+		* Added account-authorization signals. (see account-signals.dox for
+		  details) (Stefan Ott)
+		* Added libpurple/purple.h, which includes #define's and #include's
+		  required to compile stand-alone plugins.
+
 Version 2.2.2 (??/??/????):
 	libpurple:
 		Changed:
============================================================
--- doc/account-signals.dox	0013228e22732fe0c9243ea22fa8bba319ea9b3f
+++ doc/account-signals.dox	416caefbaa4b7971aedb3e4b0acf1933f182c97b
@@ -9,6 +9,9 @@
   @signal account-setting-info
   @signal account-set-info
   @signal account-status-changed
+  @signal account-authorization-requested
+  @signal account-authorization-denied
+  @signal account-authorization-granted
  @endsignals
 
  @see account.h
@@ -113,6 +116,7 @@ void (*account_authorization_requested)(
   @return Less than zero to deny the request without prompting, greater
           than zero if the request should be granted. If zero is returned,
           then the user will be prompted with the request.
+  @since 2.3.0
  @endsignaldef
 
  @signaldef account-authorization-denied
@@ -123,6 +127,7 @@ void (*account_authorization_denied)(Pur
    Emitted when the authorization request for a buddy is denied.
   @param account The account.
   @param user    The name of the user requesting authorization.
+  @since 2.3.0
  @endsignaldef
 
  @signaldef account-authorization-granted
@@ -133,6 +138,7 @@ void (*account_authorization_granted)(Pu
    Emitted when the authorization request for a buddy is granted.
   @param account The account.
   @param user    The name of the user requesting authorization.
+  @since 2.3.0
  @endsignaldef
 
  */
============================================================
--- libpurple/request.h	a45e726c9c0e2475a864fd7190fce805ac5c2259
+++ libpurple/request.h	8e57bf6eb73527cb98f69dd62118f453c697af1e
@@ -1185,6 +1185,8 @@ PurpleFilterAccountFunc purple_request_f
  * @param selected A list of PurpleBlistNode's to select by default, or @c NULL.
  *
  * @return  The new field.
+ *
+ * @since 2.3.0
  */
 PurpleRequestField *purple_request_field_blist_nodes_new(const char *id, const char *text,
 		PurpleRequestBlistFlags flag, GList *selected);
@@ -1196,6 +1198,8 @@ PurpleRequestField *purple_request_field
  * @param filter  The filter function.
  *
  * @return  The old filter function, or @c NULL if there was none.
+ *
+ * @since 2.3.0
  */
 PurpleFilterBlistFunc purple_request_field_blist_set_filter(PurpleRequestField *field, PurpleFilterBlistFunc filter);
 
@@ -1205,6 +1209,8 @@ PurpleFilterBlistFunc purple_request_fie
  * @param field  The request field.
  *
  * @return  The filter function, or @c NULL if there isn't any.
+ *
+ * @since 2.3.0
  */
 PurpleFilterBlistFunc purple_request_field_blist_get_filter(const PurpleRequestField *field);
 
@@ -1215,6 +1221,8 @@ PurpleFilterBlistFunc purple_request_fie
  * @param node   The buddylist node to add to the list.
  *
  * @return  @c TRUE if the node is added to the list, @c FALSE if it was already in the list.
+ *
+ * @since 2.3.0
  */
 gboolean purple_request_field_blist_add(PurpleRequestField *field, PurpleBlistNode *node);
 
@@ -1225,6 +1233,8 @@ gboolean purple_request_field_blist_add(
  * @param node    The buddylist node to remove from the list.
  *
  * @return @c TRUE if the node is removed from the list, @c FALSE if the node is not in the list.
+ *
+ * @since 2.3.0
  */
 gboolean purple_request_field_blist_remove(PurpleRequestField *field, PurpleBlistNode *node);
 
@@ -1234,6 +1244,8 @@ gboolean purple_request_field_blist_remo
  * @param field      The request field.
  * @param selecteds  The list of selected PurpleBlistNode's. Note that the request field
  *                   becomes the owner of the list, and so the caller should not modify it.
+ *
+ * @since 2.3.0
  */
 void purple_request_field_blist_set_selection_list(PurpleRequestField *field, GList *selecteds);
 
@@ -1243,6 +1255,8 @@ void purple_request_field_blist_set_sele
  * @param field  The request field.
  *
  * @return A GList of PurpleBlistNode's.
+ *
+ * @since 2.3.0
  */
 GList *purple_request_field_blist_get_selection_list(const PurpleRequestField *field);
 


More information about the Commits mailing list