# HG changeset patch # User Rob Flynn # Date 977358100 0 # Node ID 2e046be5e44ae89f5ffa91a6d9d7f70ce670bb6a # Parent 198b0e53d7c315f028aaf9b116dac8c1b4188213 [gaim-migrate @ 1348] Just making a reminder for myself. :-) committer: Tailor Script diff -r 198b0e53d7c3 -r 2e046be5e44a TODO --- a/TODO Wed Dec 20 23:56:03 2000 +0000 +++ b/TODO Thu Dec 21 00:21:40 2000 +0000 @@ -12,6 +12,7 @@ Get Jabber working Fix MSN signon process Make it so you can register new accounts via gaim + Napster user registration Syd is cool and gave all of these ideas: Have multiple tickers in the same window, one for buddies diff -r 198b0e53d7c3 -r 2e046be5e44a plugins/napster.c --- a/plugins/napster.c Wed Dec 20 23:56:03 2000 +0000 +++ b/plugins/napster.c Thu Dec 21 00:21:40 2000 +0000 @@ -530,6 +530,17 @@ } } +static void nap_draw_new_user(GtkWidget *box) +{ + GtkWidget *label; + + label = gtk_label_new(_("Napster registration is currently under development")); + + gtk_label_set_line_wrap(GTK_LABEL(label), TRUE); + gtk_box_pack_start(GTK_BOX(box), label, FALSE, FALSE, 5); + gtk_widget_show(label); +} + static char** nap_list_icon(int uc) { return napster_xpm; @@ -571,6 +582,7 @@ ret->chat_whisper = NULL; ret->chat_send = nap_chat_send; ret->keepalive = NULL; + ret->draw_new_user = nap_draw_new_user; my_protocol = ret; }