Wed, 29 Mar 2023 23:22:41 -0500
Remove the Facebook plugin
This hasn't been used in forever and is behind on patches from the purple2
version so this for sure is not going to work. This will also stop people from
tryingt to update the purple2 version for this code as that's a horrible idea.
Testing Done:
had the turtles do their thing
Reviewed at https://reviews.imfreedom.org/r/2393/
Title: Buddy List Signals Slug: blist-signals ## Buddy List Signals ### gtkblist-created ```c void user_function(PurpleBuddyList *blist, gpointer user_data); ``` Emitted when the buddy list is created. **Parameters:** **blist** : The buddy list. **user_data** : User data set when the signal handler was connected. ### drawing-tooltip ```c void user_function(PurpleBlistNode *node, GString *text, gboolean full, gpointer user_data); ``` Emitted just before a tooltip is displayed. `text` is a standard GString, so the plugin can modify the text that will be displayed. **Parameters:** **node** : The blist node for the tooltip. **text** : A pointer to the text that will be displayed. **full** : Whether we're doing a full tooltip for the priority buddy or a compact tooltip for a non-priority buddy. **user_data** : User data set when the signal handler was connected.