summary refs log tree commit diff stats
path: root/plugins/upd
AgeCommit message (Collapse)Author
2011-12-02fix automatic update checkingBerke Viktor
2011-12-02don't use hardcoded strings for plugin namesBerke Viktor
2011-11-29relicense own plugins under the MIT licenseBerke Viktor
2011-11-27fix the update checker, return correctly with callbackBerke Viktor
2011-11-25perform periodic update checks automaticallyBerke Viktor
2011-11-23forgot to bump updater version numberBerke Viktor
2011-11-23fix update checker for separate installersBerke Viktor
2011-08-11minor formattingBerke Viktor
2011-08-09do not cache update infoBerke Viktor
2011-08-09update the update checker to use our shiny new git repoBerke Viktor
2011-04-16update the update checker plugin according to google code hosting changes, ↵berkeviktor@aol.com
preserve the file in default branch for a while for compatibility reasons
2011-02-28add wdk changes to named branchberkeviktor@aol.com
2011-02-24nuke the repoberkeviktor@aol.com
2011-01-13previous commit broke update checker, fix itberkeviktor@aol.com
2011-01-12use 1024 for buffer size, otherwise it crashes (why?)berkeviktor@aol.com
2011-01-12oops, accidentally re-introduced the memory leakberkeviktor@aol.com
2011-01-12minor plugin fixesberkeviktor@aol.com
2011-01-12close the handle before returning (XhmikosR and sansnom05)berkeviktor@aol.com
2011-01-10some capitalization consistency for the menuberkeviktor@aol.com
2010-10-29update wdk distribution to use relative paths where possibleberkeviktor@aol.com
2010-10-21some cosmeticsberkeviktor@aol.com
2010-10-20fix escape characterberkeviktor@aol.com
2010-10-21add icon for update checker menu entryberkeviktor@aol.com
2010-10-21make update checker available via guiberkeviktor@aol.com
2010-10-20some formattingberkeviktor@aol.com
2010-10-06shorten plugin nameberkeviktor@aol.com
2010-09-07command to reflect name changeberkeviktor@aol.com
2010-09-07rename updater pluginberkeviktor@aol.com
2010-09-06minor formattingberkeviktor@aol.com
2010-09-06updater message cosmeticsberkeviktor@aol.com
2010-09-06add name for the other 2 messages tooberkeviktor@aol.com
2010-09-06oops, use runtime version check instead of compile time checkberkeviktor@aol.com
2010-09-06add updater pluginberkeviktor@aol.com
> *chanview_new (int type, int trunc_len, gboolean sort, gboolean use_icons, GtkStyle *style); void chanview_set_callbacks (chanview *cv, void (*cb_focus) (chanview *, chan *, int tag, void *userdata), void (*cb_xbutton) (chanview *, chan *, int tag, void *userdata), gboolean (*cb_contextmenu) (chanview *, chan *, int tag, void *userdata, GdkEventButton *), int (*cb_compare) (void *a, void *b)); void chanview_set_impl (chanview *cv, int type); chan *chanview_add (chanview *cv, char *name, void *family, void *userdata, gboolean allow_closure, int tag, GdkPixbuf *icon); int chanview_get_size (chanview *cv); GtkWidget *chanview_get_box (chanview *cv); void chanview_move_focus (chanview *cv, gboolean relative, int num); GtkOrientation chanview_get_orientation (chanview *cv); void chanview_set_orientation (chanview *cv, gboolean vertical); int chan_get_tag (chan *ch); void *chan_get_userdata (chan *ch); void chan_focus (chan *ch); void chan_move (chan *ch, int delta); void chan_move_family (chan *ch, int delta); void chan_set_color (chan *ch, PangoAttrList *list); void chan_rename (chan *ch, char *new_name, int trunc_len); gboolean chan_remove (chan *ch, gboolean force); gboolean chan_is_collapsed (chan *ch); chan * chan_get_parent (chan *ch); #define FOCUS_NEW_ALL 1 #define FOCUS_NEW_ONLY_ASKED 2 #define FOCUS_NEW_NONE 0 #endif