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: Jim S. <jse...@us...> - 2002-05-18 20:32:07
|
Update of /cvsroot/gaim/gaim/pixmaps
In directory usw-pr-cvs1:/tmp/cvs-serv18738/pixmaps
Added Files:
available-error.xpm
Log Message:
Broken light-bulb graphic for buddy presence errors.
--- NEW FILE: available-error.xpm ---
/* XPM */
static char * available_error_xpm[] = {
"12 14 6 1",
" c None",
". c #333333",
"+ c #000000",
"@ c #E8E8E8",
"# c #666666",
"$ c #4C4C4C",
" .. ",
" . +@. ",
" .@#+@@. ",
" .@@@+@@@. ",
" .@@++#@@. ",
" .@@+@+++. ",
" .@+@+@@@. ",
" .@+++@# ",
" .+@@@+. ",
" .@@@. ",
" $+++$ ",
" $+++$ ",
" +++ ",
" "};
|
|
From: Jim S. <jse...@us...> - 2002-05-18 15:42:04
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv17104 Modified Files: ChangeLog Log Message: Change password on Jabber server (Thanks, Nathan Walp) Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.480 retrieving revision 1.481 diff -u -d -r1.480 -r1.481 --- ChangeLog 16 May 2002 22:46:42 -0000 1.480 +++ ChangeLog 18 May 2002 15:42:01 -0000 1.481 @@ -6,6 +6,8 @@ that crashed Gaim. In the process: found and eliminated some memory leaks. * Fixed a significant applet leak + * Can now change Jabber password on server (Thanks, + Nathan Walp) version 0.58 (05/13/2002): * Bulgarian translation added (Thanks, Igel Itzo) |
|
From: Jim S. <jse...@us...> - 2002-05-18 15:42:04
|
Update of /cvsroot/gaim/gaim/src/protocols/jabber
In directory usw-pr-cvs1:/tmp/cvs-serv17104/src/protocols/jabber
Modified Files:
jabber.c
Log Message:
Change password on Jabber server (Thanks, Nathan Walp)
Index: jabber.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/jabber/jabber.c,v
retrieving revision 1.50
retrieving revision 1.51
diff -u -d -r1.50 -r1.51
--- jabber.c 15 May 2002 02:47:55 -0000 1.50
+++ jabber.c 18 May 2002 15:42:01 -0000 1.51
@@ -214,7 +214,8 @@
pool_free(p); /* no need for this anymore! */
return (NULL);
}
- gjc->pass = pstrdup(p, pass);
+
+ gjc->pass = strdup(pass);
gjc->state = JCONN_STATE_OFF;
gjc->was_connected = 0;
@@ -232,6 +233,7 @@
return;
gjab_stop(gjc);
+ free(gjc->pass);
pool_free(gjc->p);
}
@@ -703,6 +705,46 @@
}
}
+static void jabber_change_passwd(struct gaim_connection *gc, char *old, char *new)
+{
+ gjconn gjc = ((struct jabber_data *)gc->proto_data)->gjc;
+
+ if(strcmp(old, gjc->pass))
+ {
+ do_error_dialog(_("Incorrect current password! Password NOT Changed!"),
+ _("Password Change Error!"));
+ }
+ else if(!strcmp(old, new))
+ {
+ do_error_dialog(_("New password same as old password! Password NOT Changed!"),
+ _("Password Change Error!"));
+ }
+ else
+ {
+ xmlnode x, y, z;
+ char *id;
+
+ x = jutil_iqnew(JPACKET__SET, NS_REGISTER);
+ xmlnode_put_attrib(x, "to", gjc->user->server);
+ y = xmlnode_get_tag(x, "query");
+ z = xmlnode_insert_tag(y, "username");
+ xmlnode_insert_cdata(z, gjc->user->user, -1);
+ z = xmlnode_insert_tag(y, "password");
+ xmlnode_insert_cdata(z, new, -1);
+
+ id = gjab_getid(gjc);
+ xmlnode_put_attrib(x, "id", id);
+
+ free(gjc->pass);
+ gjc->pass = strdup(new);
+
+ g_hash_table_insert(gjc->queries, g_strdup(id), g_strdup("change_password"));
+
+ gjab_send(gjc, x);
+ xmlnode_free(x);
+ }
+}
+
/*
* keep track of away msg same as yahoo plugin
*/
@@ -1551,6 +1593,11 @@
* way the user always gets some kind of response.
*/
jabber_handlevcard(gjc, NULL, from);
+ } else if(!strcmp((char *) val, "change_password")) {
+ char buf[BUF_LONG];
+ sprintf(buf,_("Password successfully changed."));
+
+ do_error_dialog(buf, _("Password Change"));
}
}
}
@@ -3127,9 +3174,9 @@
/*
} else if (!strcmp(act, _("Set Dir Info"))) {
show_set_dir(gc);
+ */
} else if (!strcmp(act, _("Change Password"))) {
show_change_passwd(gc);
- */
}
}
@@ -3140,8 +3187,8 @@
m = g_list_append(m, _("Set User Info"));
/*
m = g_list_append(m, _("Set Dir Info"));
- m = g_list_append(m, _("Change Password"));
*/
+ m = g_list_append(m, _("Change Password"));
return m;
}
@@ -3172,7 +3219,7 @@
ret->get_dir = NULL;
ret->dir_search = NULL;
ret->set_idle = jabber_set_idle;
- ret->change_passwd = NULL;
+ ret->change_passwd = jabber_change_passwd;
ret->add_buddy = jabber_add_buddy;
ret->add_buddies = NULL;
ret->remove_buddy = jabber_remove_buddy;
|
|
From: Sean E. <sea...@us...> - 2002-05-16 22:46:45
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv22320 Modified Files: ChangeLog Log Message: Fixed an applet memory leak. Serves me right for not reading the documentation. Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.479 retrieving revision 1.480 diff -u -d -r1.479 -r1.480 --- ChangeLog 15 May 2002 02:35:56 -0000 1.479 +++ ChangeLog 16 May 2002 22:46:42 -0000 1.480 @@ -5,7 +5,8 @@ * Squashed a bug in buddy right-click menu handling that crashed Gaim. In the process: found and eliminated some memory leaks. - + * Fixed a significant applet leak + version 0.58 (05/13/2002): * Bulgarian translation added (Thanks, Igel Itzo) * Taiwanese translation added (Thanks, Paladin Liu) |
|
From: Sean E. <sea...@us...> - 2002-05-16 22:46:45
|
Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv22320/src
Modified Files:
applet.c
Log Message:
Fixed an applet memory leak. Serves me right for not reading the documentation.
Index: applet.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/applet.c,v
retrieving revision 1.30
retrieving revision 1.31
diff -u -d -r1.30 -r1.31
--- applet.c 27 Apr 2002 07:43:53 -0000 1.30
+++ applet.c 16 May 2002 22:46:42 -0000 1.31
@@ -72,18 +72,17 @@
gtk_widget_get_visual(applet)->depth);
gc = gdk_gc_new(cache);
gdk_gc_copy(gc, applet->style->bg_gc[GTK_WIDGET_STATE(applet)]);
-
path = gnome_pixmap_file(name);
- if (path)
+ if (path) {
scale = gdk_pixbuf_new_from_file(path);
- g_free(path);
+ g_free(path);
+ }
if (!scale)
return NULL;
pb = gdk_pixbuf_scale_simple(scale, sizehint, sizehint, GDK_INTERP_HYPER);
gdk_pixbuf_unref(scale);
- dst = g_new0(guchar, sizehint*sizehint*3);
- applet_widget_get_rgb_bg(applet, &dst, &w, &h, &rowstride);
+ applet_widget_get_rgb_bg(APPLET_WIDGET(applet), &dst, &w, &h, &rowstride);
art_affine_identity(affine);
art_rgb_rgba_affine(dst, 0, 0, w, h, rowstride,
@@ -335,8 +334,6 @@
applet = applet_widget_new("gaim_applet");
if (!applet)
g_error(_("Can't create Gaim applet!"));
- applet_widget_send_draw(applet, TRUE);
- gtk_signal_connect(GTK_OBJECT(applet), "do-draw", GTK_SIGNAL_FUNC(update_applet), NULL);
gtk_widget_set_events(applet, gtk_widget_get_events(applet) | GDK_BUTTON_PRESS_MASK);
gtk_widget_realize(applet);
@@ -368,6 +365,8 @@
GTK_SIGNAL_FUNC(applet_change_pixel_size), NULL);
#endif
+ applet_widget_send_draw(applet, TRUE);
+ gtk_signal_connect(GTK_OBJECT(applet), "do-draw", GTK_SIGNAL_FUNC(update_applet), NULL);
gtk_widget_show(icon);
gtk_widget_show(applet);
return 0;
|
|
From: Jim S. <jse...@us...> - 2002-05-16 02:13:48
|
Update of /cvsroot/gaim/gaim/src/protocols/oscar
In directory usw-pr-cvs1:/tmp/cvs-serv22354/src/protocols/oscar
Modified Files:
im.c
Log Message:
Miniscule Improvement in ICQ get status (Thanks, Mark Doliner)
Index: im.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/im.c,v
retrieving revision 1.23
retrieving revision 1.24
diff -u -d -r1.23 -r1.24
--- im.c 5 May 2002 19:02:06 -0000 1.23
+++ im.c 16 May 2002 02:13:45 -0000 1.24
@@ -1995,10 +1995,10 @@
fu32_t state;
len = aimbs_getle16(bs); /* Should be 0x001b */
- free(aimbs_getraw(bs, len)); /* Unknown */
+ aim_bstream_advance(bs, len); /* Unknown */
len = aimbs_getle16(bs); /* Should be 0x000e */
- free(aimbs_getraw(bs, len)); /* Unknown */
+ aim_bstream_advance(bs, len); /* Unknown */
statusmsgtype = aimbs_getle8(bs);
switch (statusmsgtype) {
|
|
From: Jim S. <jse...@us...> - 2002-05-15 02:47:58
|
Update of /cvsroot/gaim/gaim/src/protocols/jabber
In directory usw-pr-cvs1:/tmp/cvs-serv18435/src/protocols/jabber
Modified Files:
jabber.c
Log Message:
Temporary fix for buddy presence errors.
Index: jabber.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/jabber/jabber.c,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -d -r1.49 -r1.50
--- jabber.c 9 May 2002 13:53:12 -0000 1.49
+++ jabber.c 15 May 2002 02:47:55 -0000 1.50
@@ -1017,7 +1017,16 @@
/* keep track of away msg same as yahoo plugin */
jabber_track_away(gjc, p, normalize(b->name), type);
- if (type && (strcasecmp(type, "unavailable") == 0)) {
+ /*
+ * JFIXME: The check for "error" is a temporary fix. We don't want to show the
+ * buddy on-line in this case. Ultimately what we'll want to do is process
+ * "error" the same way as "away" type status and probably have the GUI show,
+ * say, a broken lightbulb?
+ *
+ * Note that there's another check just like this one, below.
+ */
+ if (type && ((strcasecmp(type, "unavailable") == 0) ||
+ (strcasecmp(type, "error") == 0))) {
if (resources) {
g_free(resources->data);
b->proto_data = g_slist_remove(b->proto_data, resources->data);
@@ -1041,7 +1050,11 @@
jabber_track_away(gjc, p, buf, type);
g_free(buf);
- if (type && !strcasecmp(type, "unavailable")) {
+ /*
+ * JFIXME: Here's the other place we have temporary handling of a
+ * presence "error."
+ */
+ if (type && (!strcasecmp(type, "unavailable") || !strcasecmp(type, "error"))) {
struct jabber_data *jd;
if (!jc && !(jc = find_existing_chat(GJ_GC(gjc), who))) {
g_free(buddy);
|
|
From: Jim S. <jse...@us...> - 2002-05-15 02:35:59
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv15984 Modified Files: ChangeLog Log Message: Read all about it! Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.478 retrieving revision 1.479 diff -u -d -r1.478 -r1.479 --- ChangeLog 14 May 2002 18:24:30 -0000 1.478 +++ ChangeLog 15 May 2002 02:35:56 -0000 1.479 @@ -2,6 +2,9 @@ version 0.59 * Hungarian translation added (Thanks, Sutto Zoltan) + * Squashed a bug in buddy right-click menu handling + that crashed Gaim. In the process: found and + eliminated some memory leaks. version 0.58 (05/13/2002): * Bulgarian translation added (Thanks, Igel Itzo) |
|
From: Jim S. <jse...@us...> - 2002-05-15 02:28:04
|
Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv13938/src
Modified Files:
gtkspell.c
Log Message:
Eliminated memory leaks resulting from the way pop-up menus are used.
Removed a couple variables that were no longer used and should have been
removed when SIGCHLD changes were made.
Index: gtkspell.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/gtkspell.c,v
retrieving revision 1.16
retrieving revision 1.17
diff -u -d -r1.16 -r1.17
--- gtkspell.c 28 Mar 2002 20:07:45 -0000 1.16
+++ gtkspell.c 15 May 2002 02:28:01 -0000 1.17
@@ -45,14 +45,12 @@
*/
static pid_t spell_pid = -1;
static int fd_write[2] = {0}, fd_read[2] = {0};
-static int signal_set_up = 0;
/* FIXME? */
static GdkColor highlight = { 0, 255*256, 0, 0 };
static void entry_insert_cb(GtkText *gtktext,
gchar *newtext, guint len, guint *ppos, gpointer d);
-static void set_up_signal();
int gtkspell_running() {
return (spell_pid > 0? spell_pid : 0);
@@ -550,8 +548,17 @@
}
static GtkMenu *make_menu(GList *l, GtkText *gtktext) {
- GtkWidget *menu, *item;
+ static GtkWidget *menu = NULL;
+ GtkWidget *item;
char *caption;
+
+ /*
+ * If a menu already exists, destroy it before creating a new one,
+ * thus freeing-up the memory it occupied.
+ */
+ if(menu)
+ gtk_widget_destroy(menu);
+
menu = gtk_menu_new(); {
caption = g_strdup_printf("Not in dictionary: %s", (char*)l->data);
item = gtk_menu_item_new_with_label(caption);
|
|
From: Jim S. <jse...@us...> - 2002-05-15 02:26:06
|
Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv12906/src
Modified Files:
buddy.c
Log Message:
Squashed bug that caused Gaim crashes when r-click buddy menu was used with
accelerator keys struck multiple times, or accelerator keys in combination
with a mouse click, on prpl menu selections.
Also eliminated memory leaks resulting from the way pop-up menus are used.
Index: buddy.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/buddy.c,v
retrieving revision 1.311
retrieving revision 1.312
diff -u -d -r1.311 -r1.312
--- buddy.c 4 May 2002 04:20:42 -0000 1.311
+++ buddy.c 15 May 2002 02:26:03 -0000 1.312
@@ -610,12 +610,9 @@
static void menu_click(GtkObject *obj, char *who)
{
GList *list = gtk_object_get_user_data(obj);
- GList *first = g_list_first(list);
struct proto_buddy_menu *pbm = list->data;
if (pbm->callback)
pbm->callback(pbm->gc, who);
- g_list_foreach(first, (GFunc)g_free, NULL);
- g_list_free(first);
}
static int handle_click_buddy(GtkWidget *widget, GdkEventButton *event, struct buddy_show *b)
@@ -636,7 +633,8 @@
if (im_options & OPT_IM_ONE_WINDOW)
raise_convo_tab(c);
} else if (event->type == GDK_BUTTON_PRESS && event->button == 3) {
- GtkWidget *menu;
+ static GtkWidget *menu = NULL;
+ static GList *mo_top = NULL;
GtkWidget *button;
GtkWidget *menuitem;
GtkWidget *conmenu;
@@ -644,6 +642,20 @@
struct gaim_connection *g;
/* We're gonna make us a menu right here */
+ /*
+ * If a menu already exists, destroy it before creating a new one,
+ * thus freeing-up the memory it occupied. Same for its associated
+ * (prpl menu items) GList.
+ */
+ if(menu) {
+ gtk_widget_destroy(menu);
+ if(mo_top) {
+ g_list_foreach(mo_top, (GFunc)g_free, NULL);
+ g_list_free(mo_top);
+ mo_top = NULL;
+ }
+ }
+
menu = gtk_menu_new();
button = gtk_menu_item_new_with_label(_("IM"));
@@ -673,7 +685,7 @@
while (cn) {
g = (struct gaim_connection *)cn->data;
if (g->prpl->buddy_menu) {
- GList *mo = g->prpl->buddy_menu(g, b->name);
+ GList *mo = mo_top = g->prpl->buddy_menu(g, b->name);
menuitem = gtk_menu_item_new_with_label(g->username);
gtk_menu_append(GTK_MENU(menu), menuitem);
@@ -702,7 +714,7 @@
} else {
g = (struct gaim_connection *)cn->data;
if (g->prpl->buddy_menu) {
- GList *mo = g->prpl->buddy_menu(g, b->name);
+ GList *mo = mo_top = g->prpl->buddy_menu(g, b->name);
while (mo) {
struct proto_buddy_menu *pbm = mo->data;
@@ -772,7 +784,7 @@
GtkCTreeNode *node;
int *type;
int row, column;
- GtkWidget *menu;
+ static GtkWidget *menu = NULL;
GtkWidget *button;
if (event->button != 3 || event->type != GDK_BUTTON_PRESS)
@@ -783,6 +795,16 @@
node = gtk_ctree_node_nth(GTK_CTREE(edittree), row);
type = gtk_ctree_node_get_row_data(GTK_CTREE(edittree), node);
+
+ /*
+ * If a menu already exists, destroy it before creating a new one,
+ * thus freeing-up the memory it occupied.
+ */
+ if(menu) {
+ gtk_widget_destroy(menu);
+ menu = NULL; /* safety measure */
+ }
+
if (*type == EDIT_GROUP) {
struct group *group = (struct group *)type;
menu = gtk_menu_new();
@@ -1507,11 +1529,18 @@
static void away_callback(GtkWidget *widget, GtkTree *tree)
{
GSList *awy = away_messages;
- GtkWidget *menu;
+ static GtkWidget *menu = NULL;
GtkWidget *menuitem;
if (!awy)
return;
+
+ /*
+ * If a menu already exists, destroy it before creating a new one,
+ * thus freeing-up the memory it occupied.
+ */
+ if(menu)
+ gtk_widget_destroy(menu);
menu = gtk_menu_new();
|
|
From: Jim S. <jse...@us...> - 2002-05-15 02:21:25
|
Update of /cvsroot/gaim/gaim/src
In directory usw-pr-cvs1:/tmp/cvs-serv12342/src
Modified Files:
buddy_chat.c conversation.c gtkimhtml.c
Log Message:
Eliminated memory leaks resulting from the way pop-up menus are used.
Index: buddy_chat.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/buddy_chat.c,v
retrieving revision 1.151
retrieving revision 1.152
diff -u -d -r1.151 -r1.152
--- buddy_chat.c 6 May 2002 19:32:59 -0000 1.151
+++ buddy_chat.c 15 May 2002 02:21:21 -0000 1.152
@@ -846,8 +846,15 @@
c = new_conversation(gtk_object_get_user_data(obj));
set_convo_gc(c, b->gc);
} else if (event->button == 3 && event->type == GDK_BUTTON_PRESS) {
- GtkWidget *menu;
+ static GtkWidget *menu = NULL;
GtkWidget *button;
+
+ /*
+ * If a menu already exists, destroy it before creating a new one,
+ * thus freeing-up the memory it occupied.
+ */
+ if(menu)
+ gtk_widget_destroy(menu);
menu = gtk_menu_new();
Index: conversation.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/conversation.c,v
retrieving revision 1.352
retrieving revision 1.353
diff -u -d -r1.352 -r1.353
--- conversation.c 5 May 2002 01:16:45 -0000 1.352
+++ conversation.c 15 May 2002 02:21:21 -0000 1.353
@@ -3441,13 +3441,20 @@
static gboolean icon_menu(GtkObject *obj, GdkEventButton *e, struct conversation *c)
{
- GtkWidget *menu;
+ static GtkWidget *menu = NULL;
GtkWidget *button;
if (e->button != 3)
return FALSE;
if (e->type != GDK_BUTTON_PRESS)
return FALSE;
+
+ /*
+ * If a menu already exists, destroy it before creating a new one,
+ * thus freeing-up the memory it occupied.
+ */
+ if(menu)
+ gtk_widget_destroy(menu);
menu = gtk_menu_new();
Index: gtkimhtml.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/gtkimhtml.c,v
retrieving revision 1.107
retrieving revision 1.108
diff -u -d -r1.107 -r1.108
--- gtkimhtml.c 5 May 2002 01:06:15 -0000 1.107
+++ gtkimhtml.c 15 May 2002 02:21:21 -0000 1.108
@@ -1764,8 +1764,17 @@
uw = click->data;
if ((x > uw->x) && (x < uw->x + uw->width) &&
(y > uw->y) && (y < uw->y + uw->height)) {
- GtkWidget *menu = gtk_menu_new ();
+ static GtkWidget *menu = NULL;
GtkWidget *button;
+
+ /*
+ * If a menu already exists, destroy it before creating a new one,
+ * thus freeing-up the memory it occupied.
+ */
+ if(menu)
+ gtk_widget_destroy(menu);
+
+ menu = gtk_menu_new();
if (uw->bit->url) {
button = gtk_menu_item_new_with_label ("Open URL");
|
|
From: Rob F. <rob...@us...> - 2002-05-14 18:24:33
|
Update of /cvsroot/gaim/gaim/po In directory usw-pr-cvs1:/tmp/cvs-serv8940/po Modified Files: .cvsignore Added Files: hu.po Log Message: lalala --- NEW FILE: hu.po --- # SOME DESCRIPTIVE TITLE. # Copyright (C) YEAR Free Software Foundation, Inc. # FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. # #, fuzzy msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" "POT-Creation-Date: 2002-05-15 00:00-0400\n" "PO-Revision-Date: 2002-05-12 19:00+0100\n" "Last-Translator: Zoltan Sutto <sut...@br...>\n" "Language-Team: HU <hu...@li...>\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=ISO-8859-2\n" "Content-Transfer-Encoding: 8bit\n" #: src/protocols/gg/gg.c:71 msgid "Available" msgstr "Elérhetö" [...3140 lines suppressed...] #: src/server.c:591 msgid "(1 message)" msgstr "(1 üzenet)" #: src/server.c:783 msgid "Warned" msgstr "Figyelmeztetve" #: src/server.c:876 msgid "Yes" msgstr "Igen" #: src/server.c:877 msgid "No" msgstr "Nem" #: src/server.c:1076 msgid "More Info" msgstr "További információ" Index: .cvsignore =================================================================== RCS file: /cvsroot/gaim/gaim/po/.cvsignore,v retrieving revision 1.19 retrieving revision 1.20 diff -u -d -r1.19 -r1.20 --- .cvsignore 29 Apr 2002 13:15:41 -0000 1.19 +++ .cvsignore 14 May 2002 18:24:30 -0000 1.20 @@ -21,4 +21,5 @@ da.gmo ja.gmo bg.gmo +hu.gmo zh_TW.gmo |
|
From: Rob F. <rob...@us...> - 2002-05-14 18:24:33
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv8940 Modified Files: ChangeLog configure.ac configure.in Log Message: lalala Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.477 retrieving revision 1.478 diff -u -d -r1.477 -r1.478 --- ChangeLog 14 May 2002 14:53:55 -0000 1.477 +++ ChangeLog 14 May 2002 18:24:30 -0000 1.478 @@ -1,6 +1,7 @@ Gaim: The Pimpin' Penguin IM Clone thats good for the soul! version 0.59 + * Hungarian translation added (Thanks, Sutto Zoltan) version 0.58 (05/13/2002): * Bulgarian translation added (Thanks, Igel Itzo) Index: configure.ac =================================================================== RCS file: /cvsroot/gaim/gaim/configure.ac,v retrieving revision 1.65 retrieving revision 1.66 diff -u -d -r1.65 -r1.66 --- configure.ac 14 May 2002 14:53:56 -0000 1.65 +++ configure.ac 14 May 2002 18:24:30 -0000 1.66 @@ -15,7 +15,7 @@ AC_PROG_INSTALL -ALL_LINGUAS="da de es fr ko ru zh_CN pl nl sv fi sk it ja bg zh_TW" +ALL_LINGUAS="da de es fr ko ru zh_CN pl nl sv fi sk it ja bg hu zh_TW" AM_GNU_GETTEXT AC_CYGWIN Index: configure.in =================================================================== RCS file: /cvsroot/gaim/gaim/configure.in,v retrieving revision 1.109 retrieving revision 1.110 diff -u -d -r1.109 -r1.110 --- configure.in 14 May 2002 14:53:56 -0000 1.109 +++ configure.in 14 May 2002 18:24:30 -0000 1.110 @@ -15,7 +15,7 @@ AC_PROG_INSTALL -ALL_LINGUAS="da de es fr ko ru zh_CN pl nl sv fi sk it ja bg zh_TW" +ALL_LINGUAS="da de es fr ko ru zh_CN pl nl sv fi sk it ja bg hu zh_TW" AM_GNU_GETTEXT AC_CYGWIN |
|
From: Sean E. <sea...@us...> - 2002-05-14 14:53:59
|
Update of /cvsroot/gaim/gaim/doc In directory usw-pr-cvs1:/tmp/cvs-serv5725/doc Modified Files: gaim.1 Log Message: zero point fifty-nine Index: gaim.1 =================================================================== RCS file: /cvsroot/gaim/gaim/doc/gaim.1,v retrieving revision 1.52 retrieving revision 1.53 diff -u -d -r1.52 -r1.53 --- gaim.1 3 May 2002 19:24:19 -0000 1.52 +++ gaim.1 14 May 2002 14:53:56 -0000 1.53 @@ -21,7 +21,7 @@ .\" USA. .TH gaim 1 .SH NAME -Gaim v0.58 \- Instant Messaging client +Gaim v0.59 \- Instant Messaging client .SH SYNOPSIS .TP 5 \fBgaim \fI[options]\fR |
|
From: Sean E. <sea...@us...> - 2002-05-14 14:53:59
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv5725 Modified Files: ChangeLog NEWS configure.ac configure.in Log Message: zero point fifty-nine Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.476 retrieving revision 1.477 diff -u -d -r1.476 -r1.477 --- ChangeLog 14 May 2002 02:12:10 -0000 1.476 +++ ChangeLog 14 May 2002 14:53:55 -0000 1.477 @@ -1,5 +1,7 @@ Gaim: The Pimpin' Penguin IM Clone thats good for the soul! +version 0.59 + version 0.58 (05/13/2002): * Bulgarian translation added (Thanks, Igel Itzo) * Taiwanese translation added (Thanks, Paladin Liu) Index: NEWS =================================================================== RCS file: /cvsroot/gaim/gaim/NEWS,v retrieving revision 1.134 retrieving revision 1.135 diff -u -d -r1.134 -r1.135 --- NEWS 14 May 2002 02:29:38 -0000 1.134 +++ NEWS 14 May 2002 14:53:56 -0000 1.135 @@ -1,5 +1,7 @@ -=[ Gaim ]=- The Pimpin' Penguin IM Client That's Good For The Soul! +0.59 + 0.58 (05/13/2002): Rob: Yeah, so, my computer has been bad which is why the release didn't go out on time. Oh well. I would like to welcome Index: configure.ac =================================================================== RCS file: /cvsroot/gaim/gaim/configure.ac,v retrieving revision 1.64 retrieving revision 1.65 diff -u -d -r1.64 -r1.65 --- configure.ac 14 May 2002 02:39:40 -0000 1.64 +++ configure.ac 14 May 2002 14:53:56 -0000 1.65 @@ -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.58]) +AM_INIT_AUTOMAKE([gaim], [0.59cvs]) AC_PREREQ([2.50]) Index: configure.in =================================================================== RCS file: /cvsroot/gaim/gaim/configure.in,v retrieving revision 1.108 retrieving revision 1.109 diff -u -d -r1.108 -r1.109 --- configure.in 14 May 2002 02:39:40 -0000 1.108 +++ configure.in 14 May 2002 14:53:56 -0000 1.109 @@ -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.58]) +AM_INIT_AUTOMAKE([gaim], [0.59cvs]) |
|
From: Sean E. <sea...@us...> - 2002-05-14 02:39:43
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv22530 Modified Files: configure.ac configure.in Log Message: Yup Index: configure.ac =================================================================== RCS file: /cvsroot/gaim/gaim/configure.ac,v retrieving revision 1.63 retrieving revision 1.64 diff -u -d -r1.63 -r1.64 --- configure.ac 4 May 2002 03:34:46 -0000 1.63 +++ configure.ac 14 May 2002 02:39:40 -0000 1.64 @@ -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.58cvs]) +AM_INIT_AUTOMAKE([gaim], [0.58]) AC_PREREQ([2.50]) Index: configure.in =================================================================== RCS file: /cvsroot/gaim/gaim/configure.in,v retrieving revision 1.107 retrieving revision 1.108 diff -u -d -r1.107 -r1.108 --- configure.in 4 May 2002 03:34:46 -0000 1.107 +++ configure.in 14 May 2002 02:39:40 -0000 1.108 @@ -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.58cvs]) +AM_INIT_AUTOMAKE([gaim], [0.58]) |
|
From: Sean E. <sea...@us...> - 2002-05-14 02:29:41
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv15850 Modified Files: NEWS gaim.desktop Log Message: this too Index: NEWS =================================================================== RCS file: /cvsroot/gaim/gaim/NEWS,v retrieving revision 1.133 retrieving revision 1.134 diff -u -d -r1.133 -r1.134 --- NEWS 14 May 2002 02:25:13 -0000 1.133 +++ NEWS 14 May 2002 02:29:38 -0000 1.134 @@ -1,4 +1,4 @@ --=[ Gaim ]=- The Pimpin' Penguin AIM Clone That's Good For The Soul! +-=[ Gaim ]=- The Pimpin' Penguin IM Client That's Good For The Soul! 0.58 (05/13/2002): Rob: Yeah, so, my computer has been bad which is why the release Index: gaim.desktop =================================================================== RCS file: /cvsroot/gaim/gaim/gaim.desktop,v retrieving revision 1.3 retrieving revision 1.4 diff -u -d -r1.3 -r1.4 --- gaim.desktop 8 May 2002 04:12:41 -0000 1.3 +++ gaim.desktop 14 May 2002 02:29:39 -0000 1.4 @@ -1,6 +1,6 @@ [Desktop Entry] Name=Gaim -Comment=Linux Instant Messaging Client +Comment=Multi-protocol Instant Messaging Client Exec=gaim Icon=gaim.xpm Info=Gaim |
|
From: Sean E. <sea...@us...> - 2002-05-14 02:26:19
|
Update of /cvsroot/gaim/gaim/src/protocols/irc
In directory usw-pr-cvs1:/tmp/cvs-serv13071/src/protocols/irc
Modified Files:
irc.c
Log Message:
Because we do more than Linux and AIM.
Index: irc.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/irc/irc.c,v
retrieving revision 1.76
retrieving revision 1.77
diff -u -d -r1.76 -r1.77
--- irc.c 8 May 2002 04:12:41 -0000 1.76
+++ irc.c 14 May 2002 02:26:16 -0000 1.77
@@ -953,8 +953,8 @@
char buf[IRC_BUF_LEN];
if (!g_strncasecmp(msg, "VERSION", 7)) {
- g_snprintf(buf, sizeof(buf), "NOTICE %s :\001VERSION Gaim " VERSION ": The Pimpin "
- "Linux Messaging Client: " WEBSITE "\001\r\n", nick);
+ g_snprintf(buf, sizeof(buf), "NOTICE %s :\001VERSION Gaim " VERSION ": The Penguin Pimpin' "
+ "Multi-protocol Messaging Client: " WEBSITE "\001\r\n", nick);
irc_write(id->fd, buf, strlen(buf));
}
if (!g_strncasecmp(msg, "ACTION", 6)) {
|
|
From: Jim S. <jse...@us...> - 2002-05-14 02:25:16
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv12274 Modified Files: NEWS Log Message: Doo dah, doo dah Index: NEWS =================================================================== RCS file: /cvsroot/gaim/gaim/NEWS,v retrieving revision 1.132 retrieving revision 1.133 diff -u -d -r1.132 -r1.133 --- NEWS 14 May 2002 02:22:27 -0000 1.132 +++ NEWS 14 May 2002 02:25:13 -0000 1.133 @@ -11,6 +11,9 @@ important security fix for MSN and a few nice new features. Not *much* cooler than 0.57--but we're making progress ;) + Jim: Hmmm... Rob said I have to say *something*, so here it is: + Rob's a mango. + 0.57 (04/25/2002): Rob: Not too much in this release, as Sean said below. (This is what happens when the bottom person goes first.) New translation, |
|
From: Sean E. <sea...@us...> - 2002-05-14 02:22:31
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv9805 Modified Files: NEWS Log Message: oh dot five eight Index: NEWS =================================================================== RCS file: /cvsroot/gaim/gaim/NEWS,v retrieving revision 1.131 retrieving revision 1.132 diff -u -d -r1.131 -r1.132 --- NEWS 14 May 2002 02:15:26 -0000 1.131 +++ NEWS 14 May 2002 02:22:27 -0000 1.132 @@ -7,6 +7,10 @@ over the work on our Jabber code as well as doing various other nit picking. He likes to pick nits, nats, and umm, knots, I think. + Sean: This release has a long ChangeLog. Higlights include an + important security fix for MSN and a few nice new features. + Not *much* cooler than 0.57--but we're making progress ;) + 0.57 (04/25/2002): Rob: Not too much in this release, as Sean said below. (This is what happens when the bottom person goes first.) New translation, |
|
From: Rob F. <rob...@us...> - 2002-05-14 02:15:28
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv3817 Modified Files: NEWS Log Message: nots. Index: NEWS =================================================================== RCS file: /cvsroot/gaim/gaim/NEWS,v retrieving revision 1.130 retrieving revision 1.131 diff -u -d -r1.130 -r1.131 --- NEWS 14 May 2002 02:12:10 -0000 1.130 +++ NEWS 14 May 2002 02:15:26 -0000 1.131 @@ -1,6 +1,11 @@ -=[ Gaim ]=- The Pimpin' Penguin AIM Clone That's Good For The Soul! 0.58 (05/13/2002): + Rob: Yeah, so, my computer has been bad which is why the release + didn't go out on time. Oh well. I would like to welcome + Jim Seymour aboard the development team. He's going to be taking + over the work on our Jabber code as well as doing various other + nit picking. He likes to pick nits, nats, and umm, knots, I think. 0.57 (04/25/2002): Rob: Not too much in this release, as Sean said below. (This is |
|
From: Rob F. <rob...@us...> - 2002-05-14 02:12:12
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv698 Modified Files: NEWS ChangeLog gaim.spec.in Log Message: Werd. Index: NEWS =================================================================== RCS file: /cvsroot/gaim/gaim/NEWS,v retrieving revision 1.129 retrieving revision 1.130 diff -u -d -r1.129 -r1.130 --- NEWS 11 May 2002 20:29:39 -0000 1.129 +++ NEWS 14 May 2002 02:12:10 -0000 1.130 @@ -1,6 +1,6 @@ -=[ Gaim ]=- The Pimpin' Penguin AIM Clone That's Good For The Soul! -0.58 (05/11/2002): +0.58 (05/13/2002): 0.57 (04/25/2002): Rob: Not too much in this release, as Sean said below. (This is Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.475 retrieving revision 1.476 diff -u -d -r1.475 -r1.476 --- ChangeLog 11 May 2002 20:29:39 -0000 1.475 +++ ChangeLog 14 May 2002 02:12:10 -0000 1.476 @@ -1,6 +1,6 @@ Gaim: The Pimpin' Penguin IM Clone thats good for the soul! -version 0.58 (05/11/2002): +version 0.58 (05/13/2002): * Bulgarian translation added (Thanks, Igel Itzo) * Taiwanese translation added (Thanks, Paladin Liu) * Better applet transparency Index: gaim.spec.in =================================================================== RCS file: /cvsroot/gaim/gaim/gaim.spec.in,v retrieving revision 1.46 retrieving revision 1.47 diff -u -d -r1.46 -r1.47 --- gaim.spec.in 11 May 2002 20:29:39 -0000 1.46 +++ gaim.spec.in 14 May 2002 02:12:10 -0000 1.47 @@ -93,7 +93,7 @@ rm -r $RPM_BUILD_ROOT %changelog -* Fri May 11 2002 Rob Flynn <ro...@ma...> (0.58 release) +* Mon May 13 2002 Rob Flynn <ro...@ma...> (0.58 release) - Bulgarian translation added (Thanks, Igel Itzo) - Taiwanese translation added (Thanks, Paladin Liu) - Better applet transparency |
|
From: Rob F. <rob...@us...> - 2002-05-11 20:29:42
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv19578 Modified Files: gaim.spec.in ChangeLog NEWS Log Message: Ho Hum Index: gaim.spec.in =================================================================== RCS file: /cvsroot/gaim/gaim/gaim.spec.in,v retrieving revision 1.45 retrieving revision 1.46 diff -u -d -r1.45 -r1.46 --- gaim.spec.in 10 May 2002 14:46:36 -0000 1.45 +++ gaim.spec.in 11 May 2002 20:29:39 -0000 1.46 @@ -93,7 +93,7 @@ rm -r $RPM_BUILD_ROOT %changelog -* Fri May 10 2002 Rob Flynn <ro...@ma...> (0.58 release) +* Fri May 11 2002 Rob Flynn <ro...@ma...> (0.58 release) - Bulgarian translation added (Thanks, Igel Itzo) - Taiwanese translation added (Thanks, Paladin Liu) - Better applet transparency Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.474 retrieving revision 1.475 diff -u -d -r1.474 -r1.475 --- ChangeLog 10 May 2002 14:46:36 -0000 1.474 +++ ChangeLog 11 May 2002 20:29:39 -0000 1.475 @@ -1,6 +1,6 @@ Gaim: The Pimpin' Penguin IM Clone thats good for the soul! -version 0.58 (05/10/2002): +version 0.58 (05/11/2002): * Bulgarian translation added (Thanks, Igel Itzo) * Taiwanese translation added (Thanks, Paladin Liu) * Better applet transparency Index: NEWS =================================================================== RCS file: /cvsroot/gaim/gaim/NEWS,v retrieving revision 1.128 retrieving revision 1.129 diff -u -d -r1.128 -r1.129 --- NEWS 10 May 2002 14:46:36 -0000 1.128 +++ NEWS 11 May 2002 20:29:39 -0000 1.129 @@ -1,6 +1,6 @@ -=[ Gaim ]=- The Pimpin' Penguin AIM Clone That's Good For The Soul! -0.58 (05/10/2002): +0.58 (05/11/2002): 0.57 (04/25/2002): Rob: Not too much in this release, as Sean said below. (This is |
|
From: Jim S. <jse...@us...> - 2002-05-10 22:32:43
|
Update of /cvsroot/gaim/gaim/src/protocols/oscar
In directory usw-pr-cvs1:/tmp/cvs-serv11983/src/protocols/oscar
Modified Files:
ssi.c
Log Message:
Fix for bug i.d. [ 554410 ] Bug in SSI Deleting Last Buddy in Group.
(Thanks, KingAnt)
Index: ssi.c
===================================================================
RCS file: /cvsroot/gaim/gaim/src/protocols/oscar/ssi.c,v
retrieving revision 1.9
retrieving revision 1.10
diff -u -d -r1.9 -r1.10
--- ssi.c 5 May 2002 18:42:11 -0000 1.9
+++ ssi.c 10 May 2002 22:32:41 -0000 1.10
@@ -590,9 +590,9 @@
return -EINVAL;
/* Look up the parent group */
- if (!(parentgroup = aim_ssi_itemlist_finditem(sess->ssi.items, NULL, NULL, AIM_SSI_TYPE_GROUP))) {
+ if (!(parentgroup = aim_ssi_itemlist_find(sess->ssi.items, 0, 0))) {
aim_ssi_addmastergroup(sess, conn);
- if (!(parentgroup = aim_ssi_itemlist_finditem(sess->ssi.items, NULL, NULL, AIM_SSI_TYPE_GROUP)))
+ if (!(parentgroup = aim_ssi_itemlist_find(sess->ssi.items, 0, 0)))
return -ENOMEM;
}
@@ -840,7 +840,7 @@
return -EINVAL;
/* Make delitem a pointer to the aim_ssi_item to be deleted */
- if (!(delitem = aim_ssi_itemlist_finditem(sess->ssi.items, NULL, NULL, AIM_SSI_TYPE_GROUP)))
+ if (!(delitem = aim_ssi_itemlist_find(sess->ssi.items, 0, 0)))
return -EINVAL;
/* Remove delitem from the item list */
@@ -885,7 +885,7 @@
return -EINVAL;
/* Look up the parent group */
- if (!(parentgroup = aim_ssi_itemlist_finditem(sess->ssi.items, NULL, NULL, AIM_SSI_TYPE_GROUP)))
+ if (!(parentgroup = aim_ssi_itemlist_find(sess->ssi.items, 0, 0)))
return -EINVAL;
/* Allocate an array of pointers to each of the items to be deleted */
|
|
From: Rob F. <rob...@us...> - 2002-05-10 14:46:39
|
Update of /cvsroot/gaim/gaim In directory usw-pr-cvs1:/tmp/cvs-serv27555 Modified Files: ChangeLog NEWS gaim.spec.in Log Message: hmmm Index: ChangeLog =================================================================== RCS file: /cvsroot/gaim/gaim/ChangeLog,v retrieving revision 1.473 retrieving revision 1.474 diff -u -d -r1.473 -r1.474 --- ChangeLog 9 May 2002 14:49:24 -0000 1.473 +++ ChangeLog 10 May 2002 14:46:36 -0000 1.474 @@ -1,6 +1,6 @@ Gaim: The Pimpin' Penguin IM Clone thats good for the soul! -version 0.58: +version 0.58 (05/10/2002): * Bulgarian translation added (Thanks, Igel Itzo) * Taiwanese translation added (Thanks, Paladin Liu) * Better applet transparency Index: NEWS =================================================================== RCS file: /cvsroot/gaim/gaim/NEWS,v retrieving revision 1.127 retrieving revision 1.128 diff -u -d -r1.127 -r1.128 --- NEWS 26 Apr 2002 04:28:34 -0000 1.127 +++ NEWS 10 May 2002 14:46:36 -0000 1.128 @@ -1,5 +1,7 @@ -=[ Gaim ]=- The Pimpin' Penguin AIM Clone That's Good For The Soul! +0.58 (05/10/2002): + 0.57 (04/25/2002): Rob: Not too much in this release, as Sean said below. (This is what happens when the bottom person goes first.) New translation, Index: gaim.spec.in =================================================================== RCS file: /cvsroot/gaim/gaim/gaim.spec.in,v retrieving revision 1.44 retrieving revision 1.45 diff -u -d -r1.44 -r1.45 --- gaim.spec.in 26 Apr 2002 01:39:26 -0000 1.44 +++ gaim.spec.in 10 May 2002 14:46:36 -0000 1.45 @@ -93,6 +93,29 @@ rm -r $RPM_BUILD_ROOT %changelog +* Fri May 10 2002 Rob Flynn <ro...@ma...> (0.58 release) +- Bulgarian translation added (Thanks, Igel Itzo) +- Taiwanese translation added (Thanks, Paladin Liu) +- Better applet transparency +- Option to raise buddy list on signons/signoffs +- Formatting of incoming MSN messages +- Get Info from menu multiple-account-aware (thanks Brian Bernas) +- Hide and unhide functions for the filectl plugin. (Thanks, Ari Pollak) +- Added helpful stuff to the Help menu. +- Self-aliasing from the account editor. +- Better selection in GtkIMHtml (Thanks Ben Miller) +- A warning when your OSCAR buddy list is too long (Thanks, Mark Doliner) +- ICQ status messages in OSCAR (Thanks, Mark Doliner) +- Play sound when your name is said in a chat +- Approval dialog for Jabber when somebody wants to subscribe to user's presence. Also gives user the opportunity to add that buddy if not already on the user's buddy list. +- Jabber "Change buddy group" roster synchronization now works again. (This was unknowningly broken when the "out-sourced" Jabber libs were upgraded in 0.56) +- Invalid Jabber I.D.'s no longer crash Gaim. User now notified with pop-up's. +- Jabber Buddy sign-on time support, added in 0.57, removed until and unless an inconsistancy can be resolved. (Thanks, Nathan Walp) +- Bug-fix for potential buffer overflow in Jabber plugin. (Thanks, rwscott) +- Tempfiles used for secure MSN/HotMail login (added in 0.57) are now themselves created securely. +- Secure MSN logins (added in 0.57) no longer blow up on Solaris. +- Timezone support improved. + * Thu Apr 25 2002 Rob Flynn <ro...@ma... (0.57 release) - New authorization method for Yahoo! - Polish translation updated (Thanks Przemyslaw Sulek) |