From: <rl...@us...> - 2006-08-26 06:26:28
|
Revision: 17037 Author: rlaager Date: 2006-08-25 23:26:25 -0700 (Fri, 25 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=17037&view=rev Log Message: ----------- Add QQ to the list of protocols in the About box. Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-08-26 06:26:09 UTC (rev 17036) +++ trunk/gtk/gtkdialogs.c 2006-08-26 06:26:25 UTC (rev 17037) @@ -320,8 +320,8 @@ g_string_append(str, _("Gaim is a modular messaging client capable of using " "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, " - "Novell GroupWise, Lotus Sametime, Zephyr, and Gadu-Gadu " - "all at once. It is written using GTK+.<BR><BR>" + "Novell GroupWise, Lotus Sametime, Zephyr, Gadu-Gadu, " + "and QQ all at once. It is written using GTK+.<BR><BR>" "You may modify and redistribute the program under " "the terms of the GPL (version 2 or later). A copy of the GPL is " "contained in the 'COPYING' file distributed with Gaim. " This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rl...@us...> - 2006-08-26 06:26:44
|
Revision: 17038 Author: rlaager Date: 2006-08-25 23:26:39 -0700 (Fri, 25 Aug 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=17038&view=rev Log Message: ----------- Fixes GtR* Bug #1 Contactify "View User Log" in the Buddies menu. This has been on my TODO list forever. Yay for long trips with the laptop. * Gary to Richard, via IM ;) Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-08-26 06:26:25 UTC (rev 17037) +++ trunk/gtk/gtkdialogs.c 2006-08-26 06:26:39 UTC (rev 17038) @@ -809,6 +809,7 @@ { char *username; GaimAccount *account; + GSList *cur; account = gaim_request_fields_get_account(fields, "account"); @@ -818,9 +819,25 @@ if (username != NULL && *username != '\0' && account != NULL) { GaimGtkBuddyList *gtkblist = gaim_gtk_blist_get_default_gtk_blist(); + GSList *buddies; gaim_gtk_set_cursor(gtkblist->window, GDK_WATCH); + buddies = gaim_find_buddies(account, username); + for (cur = buddies; cur != NULL; cur = cur->next) + { + GaimBlistNode *node = cur->data; + if ((node != NULL) && ((node->prev != NULL) || (node->next != NULL))) + { + gaim_gtk_log_show_contact((GaimContact *)node->parent); + g_slist_free(buddies); + gaim_gtk_clear_cursor(gtkblist->window); + g_free(username); + return; + } + } + g_slist_free(buddies); + gaim_gtk_log_show(GAIM_LOG_IM, username, account); gaim_gtk_clear_cursor(gtkblist->window); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <the...@us...> - 2006-09-06 10:04:37
|
Revision: 17179 http://svn.sourceforge.net/gaim/?rev=17179&view=rev Author: thekingant Date: 2006-09-06 03:04:34 -0700 (Wed, 06 Sep 2006) Log Message: ----------- fix a warning gtkdialogs.c:1006: warning: no previous prototype for ?\226?\128?\152gaim_gtkdialogs_merge_groups_cb?\226?\128?\153 Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-09-06 05:24:13 UTC (rev 17178) +++ trunk/gtk/gtkdialogs.c 2006-09-06 10:04:34 UTC (rev 17179) @@ -1001,7 +1001,7 @@ } } -void +static void gaim_gtkdialogs_merge_groups_cb(struct _GaimGroupMergeObject *GGP) { gaim_blist_rename_group(GGP->parent, GGP->new_name); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sa...@us...> - 2006-09-07 22:19:00
|
Revision: 17184 http://svn.sourceforge.net/gaim/?rev=17184&view=rev Author: sadrul Date: 2006-09-07 15:18:54 -0700 (Thu, 07 Sep 2006) Log Message: ----------- Plug a small memory-leak, and mark a string for translation. Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-09-07 17:53:25 UTC (rev 17183) +++ trunk/gtk/gtkdialogs.c 2006-09-07 22:18:54 UTC (rev 17184) @@ -1001,10 +1001,17 @@ } } +static void free_ggmo(struct _GaimGroupMergeObject *ggp) +{ + g_free(ggp->new_name); + g_free(ggp); +} + static void gaim_gtkdialogs_merge_groups_cb(struct _GaimGroupMergeObject *GGP) { gaim_blist_rename_group(GGP->parent, GGP->new_name); + free_ggmo(GGP); } void @@ -1017,8 +1024,8 @@ g_return_if_fail(new_name != NULL); text = g_strdup_printf( - "You are about to merge the group called %s into the group " - "called %s. Do you want to continue?", source->name, new_name); + _("You are about to merge the group called %s into the group " + "called %s. Do you want to continue?"), source->name, new_name); ggp = g_new(struct _GaimGroupMergeObject, 1); ggp->parent = source; @@ -1026,7 +1033,7 @@ gaim_request_action(source, NULL, _("Merge Groups"), text, 0, ggp, 2, _("_Merge Groups"), G_CALLBACK(gaim_gtkdialogs_merge_groups_cb), - _("Cancel"), NULL); + _("Cancel"), G_CALLBACK(free_ggmo)); g_free(text); } This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lsc...@us...> - 2006-09-11 17:35:51
|
Revision: 17251 http://svn.sourceforge.net/gaim/?rev=17251&view=rev Author: lschiere Date: 2006-09-11 10:35:48 -0700 (Mon, 11 Sep 2006) Log Message: ----------- <F10>(13:34:38) v3rt1g0: commit 17250 commited a syntax error (13:35:08) v3rt1g0: missing }, (13:35:17) v3rt1g0: in gtkdialogs.c Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-09-11 16:51:42 UTC (rev 17250) +++ trunk/gtk/gtkdialogs.c 2006-09-11 17:35:48 UTC (rev 17251) @@ -139,7 +139,7 @@ {N_("Galician"), "gl", "Ignacio Casal Quinteiro", "nac...@gm..."}, {N_("Gujarati"), "gu", "Ankit Patel", "ank...@us..."}, {N_("Gujarati"), "gu", "Kartik Mistry", "kar...@gm..."}, - {N_("Gujarati"), "gu", "Gujarati Language Team", "ind...@li..." + {N_("Gujarati"), "gu", "Gujarati Language Team", "ind...@li..."}, {N_("Hebrew"), "he", "Shalom Craimer", "scr...@gm..."}, {N_("Hindi"), "hi", "Ravishankar Shrivastava", "rav...@ya..."}, {N_("Hungarian"), "hu", "Zoltan Sutto", "sut...@ru..."}, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lsc...@us...> - 2006-09-11 18:34:41
|
Revision: 17253 http://svn.sourceforge.net/gaim/?rev=17253&view=rev Author: lschiere Date: 2006-09-11 11:34:36 -0700 (Mon, 11 Sep 2006) Log Message: ----------- (14:33:36) LSchiere2: ankit_patel is going to drive me crazy, changing his mind left and right Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-09-11 18:29:35 UTC (rev 17252) +++ trunk/gtk/gtkdialogs.c 2006-09-11 18:34:36 UTC (rev 17253) @@ -139,7 +139,6 @@ {N_("French"), "fr", "Éric Boumaour", "zon...@us..."}, {N_("Galician"), "gl", "Ignacio Casal Quinteiro", "nac...@gm..."}, {N_("Gujarati"), "gu", "Ankit Patel", "ank...@us..."}, - {N_("Gujarati"), "gu", "Kartik Mistry", "kar...@gm..."}, {N_("Gujarati"), "gu", "Gujarati Language Team", "ind...@li..."}, {N_("Hebrew"), "he", "Shalom Craimer", "scr...@gm..."}, {N_("Hindi"), "hi", "Ravishankar Shrivastava", "rav...@ya..."}, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rl...@us...> - 2006-10-26 06:19:00
|
Revision: 17586 http://svn.sourceforge.net/gaim/?rev=17586&view=rev Author: rlaager Date: 2006-10-25 23:18:51 -0700 (Wed, 25 Oct 2006) Log Message: ----------- Add NetworkManager to the library section of the About box. Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-10-26 02:42:42 UTC (rev 17585) +++ trunk/gtk/gtkdialogs.c 2006-10-26 06:18:51 UTC (rev 17586) @@ -534,6 +534,12 @@ g_string_append(str, " <b>Mono:</b> Disabled<br/>"); #endif +#ifdef HAVE_LIBNM + g_string_append(str, " <b>NetworkManager:</b> Enabled<br/>"); +#else + g_string_append(str, " <b>NetworkManager:</b> Disabled<br/>"); +#endif + #ifdef HAVE_NSS g_string_append(str, " <b>Network Security Services (NSS):</b> Enabled<br/>"); #else This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rl...@us...> - 2006-11-02 02:57:44
|
Revision: 17653 http://svn.sourceforge.net/gaim/?rev=17653&view=rev Author: rlaager Date: 2006-11-01 18:57:25 -0800 (Wed, 01 Nov 2006) Log Message: ----------- nosnilmot claims Gaim supports SIP/SIMPLE and Bonjour. Now I can believe him. Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-11-02 00:18:34 UTC (rev 17652) +++ trunk/gtk/gtkdialogs.c 2006-11-02 02:57:25 UTC (rev 17653) @@ -329,9 +329,10 @@ g_string_append(str, _("Gaim is a modular messaging client capable of using " - "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, " - "Novell GroupWise, Lotus Sametime, Zephyr, Gadu-Gadu, " - "and QQ all at once. It is written using GTK+.<BR><BR>" + "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE" + "Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, " + "Gadu-Gadu, and QQ all at once. " + "It is written using GTK+.<BR><BR>" "You may modify and redistribute the program under " "the terms of the GPL (version 2 or later). A copy of the GPL is " "contained in the 'COPYING' file distributed with Gaim. " This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lsc...@us...> - 2006-11-10 04:54:16
|
Revision: 17717 http://svn.sourceforge.net/gaim/?rev=17717&view=rev Author: lschiere Date: 2006-11-09 20:54:11 -0800 (Thu, 09 Nov 2006) Log Message: ----------- Credit is a good thing Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-11-09 23:12:29 UTC (rev 17716) +++ trunk/gtk/gtkdialogs.c 2006-11-10 04:54:11 UTC (rev 17717) @@ -77,6 +77,7 @@ {"Etan 'deryni' Reisner", N_("developer"), NULL}, {"Tim 'marv' Ringenbach", N_("developer"), NULL}, {"Luke 'LSchiere' Schierer", N_("support"), "lsc...@us..."}, + {"Megan 'Cae' Schneider", N_("support/Q&A") NULL}, {"Evan Schoenberg", N_("developer"), NULL}, {"Stu 'nosnilmot' Tomlinson", N_("developer"), NULL}, {"Nathan 'faceprint' Walp", N_("developer"), NULL}, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <de...@us...> - 2006-11-10 05:18:15
|
Revision: 17718 http://svn.sourceforge.net/gaim/?rev=17718&view=rev Author: deryni9 Date: 2006-11-09 21:18:10 -0800 (Thu, 09 Nov 2006) Log Message: ----------- Quality Assurance tends to be QA as far as I know, also compiling is good. Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-11-10 04:54:11 UTC (rev 17717) +++ trunk/gtk/gtkdialogs.c 2006-11-10 05:18:10 UTC (rev 17718) @@ -77,7 +77,7 @@ {"Etan 'deryni' Reisner", N_("developer"), NULL}, {"Tim 'marv' Ringenbach", N_("developer"), NULL}, {"Luke 'LSchiere' Schierer", N_("support"), "lsc...@us..."}, - {"Megan 'Cae' Schneider", N_("support/Q&A") NULL}, + {"Megan 'Cae' Schneider", N_("support/QA"), NULL}, {"Evan Schoenberg", N_("developer"), NULL}, {"Stu 'nosnilmot' Tomlinson", N_("developer"), NULL}, {"Nathan 'faceprint' Walp", N_("developer"), NULL}, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <the...@us...> - 2006-11-10 09:06:44
|
Revision: 17730 http://svn.sourceforge.net/gaim/?rev=17730&view=rev Author: thekingant Date: 2006-11-10 01:06:39 -0800 (Fri, 10 Nov 2006) Log Message: ----------- Change email address for a translator Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-11-10 08:27:42 UTC (rev 17729) +++ trunk/gtk/gtkdialogs.c 2006-11-10 09:06:39 UTC (rev 17730) @@ -167,7 +167,7 @@ {N_("Serbian"), "sr", "Danilo Šegan", "ds...@gm..."}, {N_("Serbian"), "sr", "Aleksandar Urosevic", "ur...@us..."}, {N_("Slovak"), "sk", "Richard Golier", "go...@gm..."}, - {N_("Slovenian"), "sl", "Martin Srebotnjak", "fi...@us..."}, + {N_("Slovenian"), "sl", "Martin Srebotnjak", "miles @ filmsi . net"}, {N_("Albanian"), "sq", "Besnik Bleta", "be...@pr..."}, {N_("Swedish"), "sv", "Tore Lundqvist", "tl...@mi..."}, {N_("Tamil"), "ta", "Viveka Nathan K", "viv...@us..."}, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sa...@us...> - 2006-11-13 20:09:50
|
Revision: 17745 http://svn.sourceforge.net/gaim/?rev=17745&view=rev Author: sadrul Date: 2006-11-13 12:09:36 -0800 (Mon, 13 Nov 2006) Log Message: ----------- Fix bug #1594978: Missing comma in About text Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-11-13 06:47:19 UTC (rev 17744) +++ trunk/gtk/gtkdialogs.c 2006-11-13 20:09:36 UTC (rev 17745) @@ -331,7 +331,7 @@ g_string_append(str, _("Gaim is a modular messaging client capable of using " - "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE" + "AIM, MSN, Yahoo!, Jabber, ICQ, IRC, SILC, SIP/SIMPLE, " "Novell GroupWise, Lotus Sametime, Bonjour, Zephyr, " "Gadu-Gadu, and QQ all at once. " "It is written using GTK+.<BR><BR>" This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <sea...@us...> - 2006-11-27 19:29:08
|
Revision: 17830 http://svn.sourceforge.net/gaim/?rev=17830&view=rev Author: seanegan Date: 2006-11-27 11:29:00 -0800 (Mon, 27 Nov 2006) Log Message: ----------- Make About dialog fit on 800x600 Modified Paths: -------------- trunk/gtk/gtkdialogs.c Modified: trunk/gtk/gtkdialogs.c =================================================================== --- trunk/gtk/gtkdialogs.c 2006-11-27 12:12:43 UTC (rev 17829) +++ trunk/gtk/gtkdialogs.c 2006-11-27 19:29:00 UTC (rev 17830) @@ -295,11 +295,10 @@ } GAIM_DIALOG(about); - gtk_window_set_default_size(GTK_WINDOW(about), 450, -1); gtk_window_set_title(GTK_WINDOW(about), _("About Gaim")); gtk_window_set_role(GTK_WINDOW(about), "about"); gtk_window_set_resizable(GTK_WINDOW(about), TRUE); - gtk_window_set_default_size(GTK_WINDOW(about), 340, 550); /* Golden ratio in da hizzy */ + gtk_window_set_default_size(GTK_WINDOW(about), 340, 450); hbox = gtk_hbox_new(FALSE, GAIM_HIG_BORDER); gtk_container_set_border_width(GTK_CONTAINER(hbox), GAIM_HIG_BORDER); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |