Wed, 17 Aug 2022 04:09:59 -0500
Remove the old nsis scripts.
We know we're not going to be using NSIS in the future so there's no reason to
keep this stuff around.
Testing Done:
ran meson to make sure nothing was referencing it.
Reviewed at https://reviews.imfreedom.org/r/1604/
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.