From: <dat...@us...> - 2006-04-17 18:36:32
|
Revision: 16048 Author: datallah Date: 2006-04-17 11:36:26 -0700 (Mon, 17 Apr 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16048&view=rev Log Message: ----------- Provide easy access to GTK+/Glib runtime versions for debugging. Modified Paths: -------------- trunk/src/gtkdialogs.c Modified: trunk/src/gtkdialogs.c =================================================================== --- trunk/src/gtkdialogs.c 2006-04-17 14:01:11 UTC (rev 16047) +++ trunk/src/gtkdialogs.c 2006-04-17 18:36:26 UTC (rev 16048) @@ -400,6 +400,14 @@ g_string_append(str, " <b>SSL:</b> Gaim was <b><i>NOT</i></b> compiled with any SSL support!<br/>"); #endif +/* This might be useful elsewhere too, but it is particularly useful for + * debugging stuff known to be GTK+/Glib bugs on Windows */ +#ifdef _WIN32 + g_string_append_printf(str, " <b>GTK+ Runtime:</b> %u.%u.%u<br/>" + " <b>Glib Runtime:</b> %u.%u.%u<br/>", + gtk_major_version, gtk_minor_version, gtk_micro_version, + glib_major_version, glib_minor_version, glib_micro_version); +#endif g_string_append(str, "<br/> <b>Library Support</b><br/>"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <the...@us...> - 2006-04-27 22:29:31
|
Revision: 16099 Author: thekingant Date: 2006-04-27 15:29:26 -0700 (Thu, 27 Apr 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16099&view=rev Log Message: ----------- Add Shalom as the current Hebrew translator and move Pavel to the past translators list. I don't need to update this anywhere else, do I? Modified Paths: -------------- trunk/src/gtkdialogs.c Modified: trunk/src/gtkdialogs.c =================================================================== --- trunk/src/gtkdialogs.c 2006-04-27 21:58:30 UTC (rev 16098) +++ trunk/src/gtkdialogs.c 2006-04-27 22:29:26 UTC (rev 16099) @@ -128,7 +128,7 @@ {N_("Finnish"), "fi", "Timo Jyrinki", "tim...@ik..."}, {N_("French"), "fr", "Éric Boumaour", "zon...@us..."}, {N_("Galician"), "gl", "Ignacio Casal Quinteiro", "nac...@gm..."}, - {N_("Hebrew"), "he", "Pavel Bibergal", "cyb...@ho..."}, + {N_("Hebrew"), "he", "Shalom Craimer", "scr...@gm..."}, {N_("Hindi"), "hi", "Ravishankar Shrivastava", "rav...@ya..."}, {N_("Hungarian"), "hu", "Zoltan Sutto", "sut...@ru..."}, {N_("Italian"), "it", "Claudio Satriano", "sat...@na..."}, @@ -180,6 +180,7 @@ {N_("French"), "fr", "Stéphane Pontier", NULL}, {N_("French"), "fr", "Stéphane Wirtel", NULL}, {N_("French"), "fr", "Loïc Jeannin", NULL}, + {N_("Hebrew"), "he", "Pavel Bibergal", NULL}, {N_("Italian"), "it", "Salvatore di Maggio", NULL}, {N_("Japanese"), "ja", "Ryosuke Kutsuna", NULL}, {N_("Japanese"), "ja", "Taku Yasui", NULL}, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rl...@us...> - 2006-05-03 03:04:34
|
Revision: 16129 Author: rlaager Date: 2006-05-02 20:04:26 -0700 (Tue, 02 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16129&view=rev Log Message: ----------- Proper capitalization on GStreamer Modified Paths: -------------- trunk/src/gtkdialogs.c Modified: trunk/src/gtkdialogs.c =================================================================== --- trunk/src/gtkdialogs.c 2006-05-02 22:34:09 UTC (rev 16128) +++ trunk/src/gtkdialogs.c 2006-05-03 03:04:26 UTC (rev 16129) @@ -457,9 +457,9 @@ #ifndef _WIN32 #ifdef USE_GSTREAMER - g_string_append(str, " <b>gstreamer:</b> Enabled<br/>"); + g_string_append(str, " <b>GStreamer:</b> Enabled<br/>"); #else - g_string_append(str, " <b>gstreamer:</b> Disabled<br/>"); + g_string_append(str, " <b>GStreamer:</b> Disabled<br/>"); #endif #endif This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <lsc...@us...> - 2006-05-08 17:13:52
|
Revision: 16147 Author: lschiere Date: 2006-05-07 13:43:44 -0700 (Sun, 07 May 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16147&view=rev Log Message: ----------- (15:59:30) jordi: LSchiere: that should read "to...@so...", not "her@" not sure why that didn't copy right. Modified Paths: -------------- trunk/src/gtkdialogs.c Modified: trunk/src/gtkdialogs.c =================================================================== --- trunk/src/gtkdialogs.c 2006-05-07 19:53:35 UTC (rev 16146) +++ trunk/src/gtkdialogs.c 2006-05-07 20:43:44 UTC (rev 16147) @@ -113,7 +113,7 @@ {N_("Bengali"), "bn", "Samia Nimatullah", "mai...@ya..."}, {N_("Bosnian"), "bs", "Lejla Hadzialic", "le...@gm..."}, {N_("Catalan"), "ca", "Josep Puigdemont", "tra...@so..."}, - {N_("Valencian-Catalan"), "ca@valencia", "Toni Hermoso", "he...@so..."}, + {N_("Valencian-Catalan"), "ca@valencia", "Toni Hermoso", "to...@so..."}, {N_("Valencian-Catalan"), "ca@valencia", "Josep Puigdemont", "tra...@so..."}, {N_("Czech"), "cs", "Miloslav Trmac", "mi...@vo..."}, {N_("Danish"), "da", "Morten Brix Pedersen", "mo...@wt..."}, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rl...@us...> - 2006-06-10 19:01:51
|
Revision: 16244 Author: rlaager Date: 2006-06-10 12:01:40 -0700 (Sat, 10 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16244&view=rev Log Message: ----------- XML does NOT alphabetize between Evolution and Gadu-Gadu. Modified Paths: -------------- trunk/src/gtkdialogs.c Modified: trunk/src/gtkdialogs.c =================================================================== --- trunk/src/gtkdialogs.c 2006-06-10 18:20:46 UTC (rev 16243) +++ trunk/src/gtkdialogs.c 2006-06-10 19:01:40 UTC (rev 16244) @@ -438,12 +438,6 @@ #endif #endif -#ifdef HAVE_LIBXML - g_string_append_printf(str, " <b>XML Parser:</b> libxml2<br/>"); -#else - g_string_append_printf(str, " <b>XML Parser:</b> GMarkup<br/>"); -#endif - #ifdef HAVE_LIBGADU #ifdef _WIN32 g_string_append(str, " <b>Gadu-Gadu library (libgadu):</b> Internal<br/>"); @@ -512,6 +506,12 @@ g_string_append(str, " <b>Tk:</b> Disabled<br/>"); #endif +#ifdef HAVE_LIBXML + g_string_append_printf(str, " <b>XML Parser:</b> libxml2<br/>"); +#else + g_string_append_printf(str, " <b>XML Parser:</b> GMarkup<br/>"); +#endif + #ifndef _WIN32 #ifdef USE_SM g_string_append(str, " <b>X Session Management:</b> Enabled<br/>"); This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rl...@us...> - 2006-06-10 19:03:28
|
Revision: 16245 Author: rlaager Date: 2006-06-10 12:03:24 -0700 (Sat, 10 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16245&view=rev Log Message: ----------- We don't really need to use the _printf() version of g_string_append() to append a plain string. Modified Paths: -------------- trunk/src/gtkdialogs.c Modified: trunk/src/gtkdialogs.c =================================================================== --- trunk/src/gtkdialogs.c 2006-06-10 19:01:40 UTC (rev 16244) +++ trunk/src/gtkdialogs.c 2006-06-10 19:03:24 UTC (rev 16245) @@ -507,9 +507,9 @@ #endif #ifdef HAVE_LIBXML - g_string_append_printf(str, " <b>XML Parser:</b> libxml2<br/>"); + g_string_append(str, " <b>XML Parser:</b> libxml2<br/>"); #else - g_string_append_printf(str, " <b>XML Parser:</b> GMarkup<br/>"); + g_string_append(str, " <b>XML Parser:</b> GMarkup<br/>"); #endif #ifndef _WIN32 This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |
From: <rl...@us...> - 2006-06-11 19:05:49
|
Revision: 16257 Author: rlaager Date: 2006-06-11 12:05:45 -0700 (Sun, 11 Jun 2006) ViewCVS: http://svn.sourceforge.net/gaim/?rev=16257&view=rev Log Message: ----------- SF Patch #1504436 from roast, with changes by me "gaim_gtkdialogs_log() doesn't set initial account value, but shows an initial account. This is confusing because if the user does not use the hint list to select an account (e.g. he types a name in), gaim_gtkdialogs_log_cb() services an empty call. This patch fixes this." Modified Paths: -------------- trunk/src/gtkdialogs.c Modified: trunk/src/gtkdialogs.c =================================================================== --- trunk/src/gtkdialogs.c 2006-06-11 17:50:47 UTC (rev 16256) +++ trunk/src/gtkdialogs.c 2006-06-11 19:05:45 UTC (rev 16257) @@ -798,6 +798,16 @@ gaim_request_field_group_add_field(group, field); field = gaim_request_field_account_new("account", _("_Account"), NULL); + + /* gaim_request_field_account_new() only sets a default value if you're + * connected, and it sets it from the list of connected accounts. Since + * we're going to set show_all here, it makes sense to use the first + * account, not the first connected account. */ + if (gaim_accounts_get_all() != NULL) { + gaim_request_field_account_set_default_value(field, gaim_accounts_get_all()->data); + gaim_request_field_account_set_value(field, gaim_accounts_get_all()->data); + } + gaim_request_field_set_type_hint(field, "account"); gaim_request_field_account_set_show_all(field, TRUE); gaim_request_field_set_visible(field, This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site. |