You can subscribe to this list here.
2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
|
Sep
(106) |
Oct
(334) |
Nov
(246) |
Dec
(145) |
---|---|---|---|---|---|---|---|---|---|---|---|---|
2002 |
Jan
(42) |
Feb
(53) |
Mar
(232) |
Apr
(109) |
May
(137) |
Jun
(63) |
Jul
(26) |
Aug
(263) |
Sep
(193) |
Oct
(507) |
Nov
(440) |
Dec
(241) |
2003 |
Jan
(567) |
Feb
(195) |
Mar
(504) |
Apr
(481) |
May
(524) |
Jun
(522) |
Jul
(594) |
Aug
(502) |
Sep
(643) |
Oct
(508) |
Nov
(430) |
Dec
(377) |
2004 |
Jan
(361) |
Feb
(251) |
Mar
(219) |
Apr
(499) |
May
(461) |
Jun
(419) |
Jul
(314) |
Aug
(519) |
Sep
(416) |
Oct
(247) |
Nov
(305) |
Dec
(382) |
2005 |
Jan
(267) |
Feb
(282) |
Mar
(327) |
Apr
(338) |
May
(189) |
Jun
(400) |
Jul
(462) |
Aug
(530) |
Sep
(316) |
Oct
(523) |
Nov
(481) |
Dec
(650) |
2006 |
Jan
(536) |
Feb
(361) |
Mar
(287) |
Apr
(146) |
May
(101) |
Jun
(169) |
Jul
(221) |
Aug
(498) |
Sep
(300) |
Oct
(236) |
Nov
(209) |
Dec
(205) |
2007 |
Jan
(30) |
Feb
(23) |
Mar
(26) |
Apr
(15) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
From: Eric W. <war...@us...> - 2001-12-20 12:39:44
|
Update of /cvsroot/gaim/gaim/plugins In directory usw-pr-cvs1:/tmp/cvs-serv10323 Modified Files: chatlist.c Log Message: i love you all. thanks jharris Index: chatlist.c =================================================================== RCS file: /cvsroot/gaim/gaim/plugins/chatlist.c,v retrieving revision 1.9 retrieving revision 1.10 diff -u -d -r1.9 -r1.10 --- chatlist.c 2001/12/16 21:07:48 1.9 +++ chatlist.c 2001/12/20 12:39:41 1.10 @@ -84,6 +84,8 @@ GTK_SIGNAL_FUNC(handle_click_chat), cr); crs = crs->next; } + + gtk_tree_item_expand(GTK_TREE_ITEM(item)); } static void save_chat_prefs() @@ -176,7 +178,7 @@ if (!g_strncasecmp(AOL_SRCHSTR, c, strlen(AOL_SRCHSTR))) { char *t; int len = 0; - int exchange; + int exchange = 4; char *name = NULL; c += strlen(AOL_SRCHSTR); @@ -188,8 +190,8 @@ name[len - 1] = ' '; else if (*t == '&') { name[len - 1] = 0; - sscanf(t, "&Exchange=%d", &exchange); - c = t + strlen("&Exchange=x"); + sscanf(t, "&Exchange=%d", &exchange); + c = t + strlen("&Exchange=x"); break; } else name[len - 1] = *t; |
From: Eric W. <war...@us...> - 2001-12-20 09:26:15
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv32598 Modified Files: buddy_chat.c conversation.c Log Message: this is a work-around for a bug in gtk. i knew it wasn't my fault. i hate all of you. Index: buddy_chat.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/buddy_chat.c,v retrieving revision 1.139 retrieving revision 1.140 diff -u -d -r1.139 -r1.140 --- buddy_chat.c 2001/12/13 01:35:16 1.139 +++ buddy_chat.c 2001/12/20 09:26:12 1.140 @@ -1276,7 +1276,7 @@ if (convo_options & OPT_CONVO_CHECK_SPELLING) gtkspell_attach(GTK_TEXT(chatentry)); gtk_box_pack_start(GTK_BOX(vbox), chatentry, TRUE, TRUE, 0); - gtk_widget_set_usize(chatentry, buddy_chat_size.width, buddy_chat_size.entry_height); + gtk_widget_set_usize(chatentry, buddy_chat_size.width, MAX(buddy_chat_size.entry_height, 25)); gtk_window_set_focus(GTK_WINDOW(win), chatentry); gtk_widget_show(chatentry); Index: conversation.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/conversation.c,v retrieving revision 1.319 retrieving revision 1.320 diff -u -d -r1.319 -r1.320 --- conversation.c 2001/12/16 21:50:36 1.319 +++ conversation.c 2001/12/20 09:26:12 1.320 @@ -2391,7 +2391,7 @@ gtk_object_set_user_data(GTK_OBJECT(entry), c); gtk_text_set_editable(GTK_TEXT(entry), TRUE); gtk_text_set_word_wrap(GTK_TEXT(entry), TRUE); - gtk_widget_set_usize(entry, conv_size.width - 20, conv_size.entry_height); + gtk_widget_set_usize(entry, conv_size.width - 20, MAX(conv_size.entry_height, 25)); gtk_signal_connect(GTK_OBJECT(entry), "activate", GTK_SIGNAL_FUNC(send_callback), c); gtk_signal_connect(GTK_OBJECT(entry), "key_press_event", GTK_SIGNAL_FUNC(keypress_callback), c); |
From: Eric W. <war...@us...> - 2001-12-16 22:54:07
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv3635 Modified Files: gtkimhtml.c Log Message: i once had a girlfriend but then one day she dumped me and everywhere i went people would ask me.... where she wa-a-as I don't wanna talk about her someone always asks about her so i tell them all MY GIRLFRIEND'S DEAD! Index: gtkimhtml.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/gtkimhtml.c,v retrieving revision 1.92 retrieving revision 1.93 diff -u -d -r1.92 -r1.93 --- gtkimhtml.c 2001/12/16 22:47:15 1.92 +++ gtkimhtml.c 2001/12/16 22:54:04 1.93 @@ -3033,8 +3033,17 @@ font->back = gtk_imhtml_get_color (back); if (face && !(options & GTK_IMHTML_NO_FONTS)) font->face = g_strdup (face); - if (size && !(options & GTK_IMHTML_NO_SIZES)) - sscanf (size, "%hd", &font->size); + if (size && !(options & GTK_IMHTML_NO_SIZES)) { + if (*size == '+') { + sscanf (size + 1, "%hd", &font->size); + font->size += 3; + } else if (*size == '-') { + sscanf (size + 1, "%hd", &font->size); + font->size = MAX (0, 3 - font->size); + } else if (isdigit (*size)) { + sscanf (size, "%hd", &font->size); + } + } g_free (color); g_free (back); |
From: Eric W. <war...@us...> - 2001-12-16 22:47:18
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv2449 Modified Files: gtkimhtml.c Log Message: too high for the supermarket, too high for the grocery store too high for the supermarket, ain't gonna shop like this no more Index: gtkimhtml.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/gtkimhtml.c,v retrieving revision 1.91 retrieving revision 1.92 diff -u -d -r1.91 -r1.92 --- gtkimhtml.c 2001/12/14 18:34:06 1.91 +++ gtkimhtml.c 2001/12/16 22:47:15 1.92 @@ -60,7 +60,6 @@ #include "pixmaps/yell.xpm" #define MAX_FONT_SIZE 7 -#define DEFAULT_FONT_SIZE 3 #define POINT_SIZE(x) (_point_sizes [MIN ((x), MAX_FONT_SIZE) - 1]) static gint _point_sizes [] = { 80, 100, 120, 140, 200, 300, 400 }; @@ -3052,9 +3051,6 @@ font->fore = gdk_color_copy (oldfont->fore); if (!font->back && oldfont->back) font->back = gdk_color_copy (oldfont->back); - } else { - if (!font->size) - font->size = DEFAULT_FONT_SIZE; } fonts = g_slist_prepend (fonts, font); |
From: Eric W. <war...@us...> - 2001-12-16 21:58:02
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv23586 Modified Files: proxy.c Log Message: eh. Index: proxy.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/proxy.c,v retrieving revision 1.34 retrieving revision 1.35 diff -u -d -r1.34 -r1.35 --- proxy.c 2001/12/04 04:51:55 1.34 +++ proxy.c 2001/12/16 21:57:59 1.35 @@ -178,6 +178,7 @@ debug_printf("Connect would have blocked\n"); phb->inpa = gaim_input_add(fd, GAIM_INPUT_WRITE, no_one_calls, phb); } else { + debug_printf("connect failed (errno %d)\n", errno); close(fd); g_free(phb); return -1; |
From: Eric W. <war...@us...> - 2001-12-16 21:50:40
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv21993 Modified Files: conversation.c Log Message: thanks Brian Bernas Index: conversation.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/conversation.c,v retrieving revision 1.318 retrieving revision 1.319 diff -u -d -r1.318 -r1.319 --- conversation.c 2001/12/16 10:11:55 1.318 +++ conversation.c 2001/12/16 21:50:36 1.319 @@ -3034,7 +3034,7 @@ { #if USE_PIXBUF if (c->icon) - gtk_container_remove(GTK_CONTAINER(c->bbox), c->icon->parent); + gtk_container_remove(GTK_CONTAINER(c->bbox), c->icon->parent->parent); c->icon = NULL; if (c->anim) gdk_pixbuf_animation_unref(c->anim); @@ -3059,6 +3059,7 @@ GdkPixbuf *buf; GtkWidget *event; + GtkWidget *frame; GdkPixbuf *scale; GdkPixmap *pm; GdkBitmap *bm; @@ -3114,8 +3115,13 @@ gdk_pixbuf_render_pixmap_and_mask(scale, &pm, &bm, 0); gdk_pixbuf_unref(scale); + frame = gtk_frame_new(NULL); + gtk_frame_set_shadow_type(GTK_FRAME(frame), GTK_SHADOW_IN); + gtk_box_pack_start(GTK_BOX(c->bbox), frame, FALSE, FALSE, 5); + gtk_widget_show(frame); + event = gtk_event_box_new(); - gtk_box_pack_start(GTK_BOX(c->bbox), event, FALSE, FALSE, 5); + gtk_container_add(GTK_CONTAINER(frame), event); gtk_signal_connect(GTK_OBJECT(event), "button-press-event", GTK_SIGNAL_FUNC(icon_menu), c); gtk_widget_show(event); |
From: Eric W. <war...@us...> - 2001-12-16 21:35:04
|
Update of /cvsroot/gaim/gaim/src/protocols/oscar In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/oscar Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/Makefile.am,v retrieving revision 1.7 retrieving revision 1.8 diff -u -d -r1.7 -r1.8 --- Makefile.am 2001/12/05 10:38:39 1.7 +++ Makefile.am 2001/12/16 21:35:00 1.8 @@ -4,7 +4,7 @@ pkgdir = $(libdir)/gaim CFLAGS += -DAIM_BUILDDATE=\"`date +%Y%m%d`\" -DAIM_BUILDTIME=\"`date +%H%M%S`\" -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) -liboscar_la_LDFLAGS = -avoid-version +liboscar_la_LDFLAGS = -module -avoid-version if STATIC_OSCAR |
From: Eric W. <war...@us...> - 2001-12-16 21:35:04
|
Update of /cvsroot/gaim/gaim/src/protocols/toc In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/toc Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/toc/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.am 2001/09/21 20:47:37 1.3 +++ Makefile.am 2001/12/16 21:35:00 1.4 @@ -3,7 +3,7 @@ pkgdir = $(libdir)/gaim CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) -libtoc_la_LDFLAGS = -avoid-version +libtoc_la_LDFLAGS = -module -avoid-version if STATIC_TOC |
From: Eric W. <war...@us...> - 2001-12-16 21:35:04
|
Update of /cvsroot/gaim/gaim/src/protocols/napster In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/napster Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/napster/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.am 2001/09/21 20:47:36 1.2 +++ Makefile.am 2001/12/16 21:35:00 1.3 @@ -1,7 +1,7 @@ pkgdir = $(libdir)/gaim CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) -libnapster_la_LDFLAGS = -avoid-version +libnapster_la_LDFLAGS = -module -avoid-version if STATIC_NAPSTER |
From: Eric W. <war...@us...> - 2001-12-16 21:35:04
|
Update of /cvsroot/gaim/gaim/src/protocols/zephyr In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/zephyr Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/zephyr/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.am 2001/10/04 05:45:18 1.4 +++ Makefile.am 2001/12/16 21:35:00 1.5 @@ -3,7 +3,7 @@ CFLAGS += -I\$(top_srcdir)/src -I\$(top_srcdir)/src/protocols -DCONFDIR=\"$(confdir)\" $(KRB4_CFLAGS) $(st) $(DEBUG_CFLAGS) LIBS = @LIBS@ $(KRB4_LDFLAGS) $(KRB4_LIBS) -libzephyr_la_LDFLAGS = -avoid-version +libzephyr_la_LDFLAGS = -module -avoid-version if STATIC_ZEPHYR |
From: Eric W. <war...@us...> - 2001-12-16 21:35:04
|
Update of /cvsroot/gaim/gaim/src/protocols/yahoo In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/yahoo Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/yahoo/Makefile.am,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- Makefile.am 2001/12/05 10:38:39 1.8 +++ Makefile.am 2001/12/16 21:35:00 1.9 @@ -3,7 +3,7 @@ pkgdir = $(libdir)/gaim CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) -libyahoo_la_LDFLAGS = -avoid-version +libyahoo_la_LDFLAGS = -module -avoid-version if STATIC_YAHOO |
From: Eric W. <war...@us...> - 2001-12-16 21:35:04
|
Update of /cvsroot/gaim/gaim/src/protocols/jabber In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/jabber Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/jabber/Makefile.am,v retrieving revision 1.2 retrieving revision 1.3 diff -u -d -r1.2 -r1.3 --- Makefile.am 2001/09/21 20:47:36 1.2 +++ Makefile.am 2001/12/16 21:35:00 1.3 @@ -3,7 +3,7 @@ pkgdir = $(libdir)/gaim CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) -libjabber_la_LDFLAGS = -avoid-version +libjabber_la_LDFLAGS = -module -avoid-version if STATIC_JABBER |
From: Eric W. <war...@us...> - 2001-12-16 21:35:04
|
Update of /cvsroot/gaim/gaim/src/protocols/msn In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/msn Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/msn/Makefile.am,v retrieving revision 1.6 retrieving revision 1.7 diff -u -d -r1.6 -r1.7 --- Makefile.am 2001/12/05 10:38:39 1.6 +++ Makefile.am 2001/12/16 21:35:00 1.7 @@ -3,7 +3,7 @@ pkgdir = $(libdir)/gaim CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) -libmsn_la_LDFLAGS = -avoid-version +libmsn_la_LDFLAGS = -module -avoid-version if STATIC_MSN |
From: Eric W. <war...@us...> - 2001-12-16 21:35:03
|
Update of /cvsroot/gaim/gaim/src/protocols/icq In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/icq Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/icq/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.am 2001/09/21 20:47:36 1.3 +++ Makefile.am 2001/12/16 21:35:00 1.4 @@ -8,7 +8,7 @@ pkgdir = $(libdir)/gaim CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) -libicq_la_LDFLAGS = -avoid-version +libicq_la_LDFLAGS = -module -avoid-version if STATIC_ICQ |
From: Eric W. <war...@us...> - 2001-12-16 21:35:03
|
Update of /cvsroot/gaim/gaim/src/protocols/irc In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/irc Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/irc/Makefile.am,v retrieving revision 1.4 retrieving revision 1.5 diff -u -d -r1.4 -r1.5 --- Makefile.am 2001/10/26 09:17:13 1.4 +++ Makefile.am 2001/12/16 21:35:00 1.5 @@ -3,7 +3,7 @@ pkgdir = $(libdir)/gaim CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) -libirc_la_LDFLAGS = -avoid-version +libirc_la_LDFLAGS = -module -avoid-version if STATIC_IRC |
From: Eric W. <war...@us...> - 2001-12-16 21:35:03
|
Update of /cvsroot/gaim/gaim/src/protocols/gg In directory usw-pr-cvs1:/tmp/cvs-serv18550/protocols/gg Modified Files: Makefile.am Log Message: why didn't someone tell me about this sooner? Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/gg/Makefile.am,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- Makefile.am 2001/12/05 09:48:56 1.3 +++ Makefile.am 2001/12/16 21:35:00 1.4 @@ -3,7 +3,7 @@ pkgdir = $(libdir)/gaim CFLAGS += -I\$(top_srcdir)/src $(st) $(DEBUG_CFLAGS) -libgg_la_LDFLAGS = -avoid-version +libgg_la_LDFLAGS = -module -avoid-version if STATIC_GG |
From: Eric W. <war...@us...> - 2001-12-16 21:11:15
|
Update of /cvsroot/gaim/gaim/plugins In directory usw-pr-cvs1:/tmp/cvs-serv13262 Modified Files: Makefile.am Log Message: yeah, yeah, yeah Index: Makefile.am =================================================================== RCS file: /cvsroot/gaim/gaim/plugins/Makefile.am,v retrieving revision 1.57 retrieving revision 1.58 diff -u -d -r1.57 -r1.58 --- Makefile.am 2001/12/10 01:06:09 1.57 +++ Makefile.am 2001/12/16 21:11:12 1.58 @@ -2,7 +2,7 @@ SUFFIXES = .c .so .c.so: $(LIBTOOL) --mode=compile $(CC) $(CFLAGS) -c $< -o tmp$@.lo $(PLUGIN_CFLAGS) - $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -avoid-version $(PLUGIN_LIBS) + $(LIBTOOL) --mode=link $(CC) $(CFLAGS) -o libtmp$@.la -rpath $(plugindir) tmp$@.lo $(LIBS) $(LDFLAGS) -module -avoid-version $(PLUGIN_LIBS) @rm -f tmp$@.lo tmp$@.o libtmp$@.la @cp .libs/libtmp$@.so* $@ @rm -f .libs/libtmp$@.* |
From: Eric W. <war...@us...> - 2001-12-16 21:07:51
|
Update of /cvsroot/gaim/gaim/plugins In directory usw-pr-cvs1:/tmp/cvs-serv12639 Modified Files: chatlist.c Log Message: you really shouldn't be using this plugin Index: chatlist.c =================================================================== RCS file: /cvsroot/gaim/gaim/plugins/chatlist.c,v retrieving revision 1.8 retrieving revision 1.9 diff -u -d -r1.8 -r1.9 --- chatlist.c 2001/12/11 07:18:10 1.8 +++ chatlist.c 2001/12/16 21:07:48 1.9 @@ -147,6 +147,8 @@ if (!text) return; + if (!parent) + return; len = strlen(text); |
From: Eric W. <war...@us...> - 2001-12-16 10:11:58
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv13274/src Modified Files: conversation.c Log Message: 2.4.17-pre5 is better than 2.4.17-rc1, i think. Index: conversation.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/conversation.c,v retrieving revision 1.317 retrieving revision 1.318 diff -u -d -r1.317 -r1.318 --- conversation.c 2001/12/11 16:57:29 1.317 +++ conversation.c 2001/12/16 10:11:55 1.318 @@ -453,12 +453,14 @@ } } else { if (chat_options & OPT_CHAT_ONE_WINDOW) { - if ((g_list_length(chats) > 1) || - ((convo_options & OPT_CONVO_COMBINE) && - (im_options & OPT_IM_ONE_WINDOW) && conversations)) { + if ((convo_options & OPT_CONVO_COMBINE) && (im_options & OPT_IM_ONE_WINDOW) + && (conversations || chats->next)) { gtk_notebook_remove_page(GTK_NOTEBOOK(chat_notebook), g_list_index(chats, c) + g_list_length(conversations)); + } else if (g_list_length(chats) > 1) { + gtk_notebook_remove_page(GTK_NOTEBOOK(chat_notebook), + g_list_index(chats, c)); } else { if (c->window) gtk_widget_destroy(c->window); |
From: Eric W. <war...@us...> - 2001-12-16 02:29:59
|
Update of /cvsroot/gaim/gaim/doc In directory usw-pr-cvs1:/tmp/cvs-serv18451/doc Modified Files: gaim.1 Log Message: (18:16:44) click81: warmenhoven: the version number in CVS is still 0.50 (18:16:56) warmenhoven: click81: eh. Index: gaim.1 =================================================================== RCS file: /cvsroot/gaim/gaim/doc/gaim.1,v retrieving revision 1.41 retrieving revision 1.42 diff -u -d -r1.41 -r1.42 --- gaim.1 2001/11/30 07:59:37 1.41 +++ gaim.1 2001/12/16 02:29:56 1.42 @@ -21,7 +21,7 @@ .\" USA. .TH gaim 1 .SH NAME -Gaim v0.50 \- Instant Messaging client +Gaim v0.51 \- Instant Messaging client .SH SYNOPSIS .TP 5 \fBgaim \fI[options]\fR |
From: Eric W. <war...@us...> - 2001-12-16 02:29:58
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv18451 Modified Files: ChangeLog NEWS configure.ac Log Message: (18:16:44) click81: warmenhoven: the version number in CVS is still 0.50 (18:16:56) warmenhoven: click81: eh. Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.374 retrieving revision 1.375 diff -u -d -r1.374 -r1.375 --- ChangeLog 2001/12/14 06:28:03 1.374 +++ ChangeLog 2001/12/16 02:29:56 1.375 @@ -1,5 +1,7 @@ Gaim: The Pimpin' Penguin IM Clone thats good for the soul! +version 0.51: + version 0.50 (12/14/2001): * Updated polish translation (Thanks Przemyslaw Sulek) * Able to import GnomeICU contact lists Index: NEWS =================================================================== RCS file: /cvsroot/gaim/gaim/NEWS,v retrieving revision 1.105 retrieving revision 1.106 diff -u -d -r1.105 -r1.106 --- NEWS 2001/12/14 06:30:16 1.105 +++ NEWS 2001/12/16 02:29:56 1.106 @@ -1,6 +1,8 @@ -=[ Gaim ]=- The Pimpin' Penguin AIM Clone That's Good For The Soul! -version 0.50 (12/13/2001): +0.51: + +0.50 (12/13/2001): Rob: I am tired. Tonight was weird. Bleh!!!! Eric: I second that. Index: configure.ac =================================================================== RCS file: /cvsroot/gaim/gaim/configure.ac,v retrieving revision 1.39 retrieving revision 1.40 diff -u -d -r1.39 -r1.40 --- configure.ac 2001/12/09 13:18:58 1.39 +++ configure.ac 2001/12/16 02:29:56 1.40 @@ -1,7 +1,7 @@ dnl Process this file with autoconf to produce a configure script. AC_INIT(src/aim.c) AM_CONFIG_HEADER(config.h) -AM_INIT_AUTOMAKE([gaim], [0.50]) +AM_INIT_AUTOMAKE([gaim], [0.51]) AC_PATH_PROG(sedpath, sed) |
From: Eric W. <war...@us...> - 2001-12-16 02:28:38
|
Update of /cvsroot/gaim/gaim/src/protocols/msn In directory usw-pr-cvs1:/tmp/cvs-serv18276/protocols/msn Modified Files: msn.c Log Message: i know this is what you really meant, rob Index: msn.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/msn/msn.c,v retrieving revision 1.47 retrieving revision 1.48 diff -u -d -r1.47 -r1.48 --- msn.c 2001/12/16 02:22:24 1.47 +++ msn.c 2001/12/16 02:28:35 1.48 @@ -949,12 +949,13 @@ serv_got_update(gc, user, 1, 0, 0, 0, status, 0); } else if (!g_strncasecmp(buf, "OUT", 3)) { char *tmp = buf; - static char msg[MSN_BUF_LEN]; GET_NEXT(tmp); if (!g_strncasecmp(tmp, "OTH", 3)) { - g_snprintf(msg, sizeof(msg), _("You have been disconnected. You have signed on from another location.")); - do_error_dialog(msg, _("MSN Error")); + hide_login_progress(gc, _("You have been disconnected. You have " + "signed on from another location.")); + signoff(gc); + return 0; } } else if (!g_strncasecmp(buf, "PRP", 3)) { } else if (!g_strncasecmp(buf, "QNG", 3)) { |
From: Rob F. <rob...@us...> - 2001-12-16 02:22:26
|
Update of /cvsroot/gaim/gaim/src/protocols/msn In directory usw-pr-cvs1:/tmp/cvs-serv17545 Modified Files: msn.c Log Message: oops Index: msn.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/msn/msn.c,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- msn.c 2001/12/16 02:21:55 1.46 +++ msn.c 2001/12/16 02:22:24 1.47 @@ -953,7 +953,7 @@ GET_NEXT(tmp); if (!g_strncasecmp(tmp, "OTH", 3)) { - g_snprintf(msg, sizeof(mg), _("You have been disconnected. You have signed on from another location.")); + g_snprintf(msg, sizeof(msg), _("You have been disconnected. You have signed on from another location.")); do_error_dialog(msg, _("MSN Error")); } } else if (!g_strncasecmp(buf, "PRP", 3)) { |
From: Rob F. <rob...@us...> - 2001-12-16 02:21:58
|
Update of /cvsroot/gaim/gaim/src/protocols/msn In directory usw-pr-cvs1:/tmp/cvs-serv17436 Modified Files: msn.c Log Message: Thanks, Matt Wright. Index: msn.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/protocols/msn/msn.c,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- msn.c 2001/12/10 20:10:03 1.45 +++ msn.c 2001/12/16 02:21:55 1.46 @@ -948,6 +948,14 @@ serv_got_update(gc, user, 1, 0, 0, 0, status, 0); } else if (!g_strncasecmp(buf, "OUT", 3)) { + char *tmp = buf; + static char msg[MSN_BUF_LEN]; + + GET_NEXT(tmp); + if (!g_strncasecmp(tmp, "OTH", 3)) { + g_snprintf(msg, sizeof(mg), _("You have been disconnected. You have signed on from another location.")); + do_error_dialog(msg, _("MSN Error")); + } } else if (!g_strncasecmp(buf, "PRP", 3)) { } else if (!g_strncasecmp(buf, "QNG", 3)) { } else if (!g_strncasecmp(buf, "QRY", 3)) { |
From: Eric W. <war...@us...> - 2001-12-14 20:39:29
|
Update of /cvsroot/gaim/gaim/src In directory usw-pr-cvs1:/tmp/cvs-serv15736 Modified Files: buddy.c Log Message: hi Index: buddy.c =================================================================== RCS file: /cvsroot/gaim/gaim/src/buddy.c,v retrieving revision 1.281 retrieving revision 1.282 diff -u -d -r1.281 -r1.282 --- buddy.c 2001/12/14 18:08:24 1.281 +++ buddy.c 2001/12/14 20:39:26 1.282 @@ -1382,6 +1382,8 @@ } else { gdk_window_raise(c->window->window); } + + set_convo_gc(c, b->connlist->data); } |