Update of /cvsroot/gaim/gaim/plugins/ticker
In directory usw-pr-cvs1:/tmp/cvs-serv29880/plugins/ticker
Modified Files:
ticker.c
Log Message:
In the interest of continued progress, I pulled what's usable out of my
development tree and am committing it.
Here, we have gotten rid of the plugins dialog and perl menu under Tools and
put them both in preferences. Perl scripts now work like plugins--you have
to load them explicitly (it will probe $prefix/lib/gaim and $HOME/.gaim for
them) and you can unload them (although right now, this is entirely unreliable)
Oh, and I broke all your perl scripts. Sorry about that. Don't try fixing
them yet, though--I'm gonna make unloading single scripts more reliable
tommorow.
I should also finish Phase Two tommorow as well.
Index: ticker.c
===================================================================
RCS file: /cvsroot/gaim/gaim/plugins/ticker/ticker.c,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -d -r1.3 -r1.4
--- ticker.c 30 Aug 2002 03:17:21 -0000 1.3
+++ ticker.c 26 Sep 2002 07:37:51 -0000 1.4
@@ -408,7 +408,6 @@
gaim_signal_connect(h, event_signoff, signoff_cb, NULL);
gaim_signal_connect(h, event_buddy_signoff, buddy_signoff_cb, NULL);
gaim_signal_connect(h, event_buddy_away, away_cb, NULL);
- gaim_signal_connect(h, event_buddy_back, away_cb, NULL);
if (connections)
BuddyTickerShow();
@@ -417,4 +416,14 @@
void gaim_plugin_remove() {
gtk_widget_destroy(tickerwindow);
+}
+struct gaim_plugin_description desc;
+struct gaim_plugin_description *gaim_plugin_desc() {
+ desc.api_version = PLUGIN_API_VERSION;
+ desc.name = g_strdup("Ticker");
+ desc.version = g_strdup(VERSION);
+ desc.description = g_strdup("A horizontal scrolling version of the buddy list.");
+ desc.authors = g_strdup("Syd Logan");
+ desc.url = g_strdup(WEBSITE);
+ return &desc;
}
|