# HG changeset patch # User Mark Doliner # Date 1076906728 0 # Node ID 62af52b1614a738c04e6c3fd38a4f6d286334138 # Parent b37211166855f5577c281677473d95cca832dc4f [gaim-migrate @ 8990] Support for Mozilla Firefox, compliments of Chris Friesen and Nathan Fredrickson, who are next to each other in the COPYRIGHT file, oddly enough. committer: Tailor Script diff -r b37211166855 -r 62af52b1614a COPYRIGHT --- a/COPYRIGHT Mon Feb 16 04:01:05 2004 +0000 +++ b/COPYRIGHT Mon Feb 16 04:45:28 2004 +0000 @@ -41,6 +41,7 @@ Gavan Fantom (gavan) Rob Flynn Nathan Fredrickson +Chris J. Friesen Free Software Foundation Decklin Foster Adam Fritzler diff -r b37211166855 -r 62af52b1614a ChangeLog --- a/ChangeLog Mon Feb 16 04:01:05 2004 +0000 +++ b/ChangeLog Mon Feb 16 04:45:28 2004 +0000 @@ -6,14 +6,15 @@ * Ability to be invisible on AIM * Chatroom list support (Tim Ringenbach) * Non-ascii character support in AIM chats (Uli Luckas and Marco Ziech) + * Support for Mozilla Firefox (Chris Friesen and Nathan Fredrickson) + * Local IP address information can be changed in Preferences + (Tim Ringenbach) + * Improved local IP address detection (Tim Ringenbach) + * Offline accounts in account drop-down lists are now greyed (Etan Reisner) * Improved accessibility support for screen readers and other accessibility tools (Marc Mulcahy) * Improved accessibility in conversation windows (Nathan Fredrickson) * Keyboard access to context menus via Shift+F10 (Marc Mulcahy) - * Local IP address information can be changed in Preferences - (Tim Ringenbach) - * Improved local IP address detection (Tim Ringenbach) - * Offline accounts in account drop-down lists are now greyed (Etan Reisner) Bug Fixes: * Various buffer overflow fixes (Stefan Esser) diff -r b37211166855 -r 62af52b1614a src/gtknotify.c --- a/src/gtknotify.c Mon Feb 16 04:01:05 2004 +0000 +++ b/src/gtknotify.c Mon Feb 16 04:45:28 2004 +0000 @@ -430,6 +430,8 @@ command = g_strdup_printf("mozilla \"%s\"", uri); } else if (!strcmp(web_browser, "mozilla-firebird")) { command = g_strdup_printf("mozilla-firebird \"%s\"", uri); + } else if (!strcmp(web_browser, "firefox")) { + command = g_strdup_printf("firefox \"%s\"", uri); } else if (!strcmp(web_browser, "custom")) { const char *web_command; diff -r b37211166855 -r 62af52b1614a src/gtkprefs.c --- a/src/gtkprefs.c Mon Feb 16 04:01:05 2004 +0000 +++ b/src/gtkprefs.c Mon Feb 16 04:45:28 2004 +0000 @@ -1290,9 +1290,10 @@ {N_("Mozilla"), "mozilla"}, {N_("Konqueror"), "kfmclient"}, {N_("Galeon"), "galeon"}, - {N_("Firebird"), "mozilla-firebird"} + {N_("Firebird"), "mozilla-firebird"}, + {N_("Firefox"), "firefox"} }; - static const int num_possible_browsers = 6; + static const int num_possible_browsers = 7; GList *browsers = NULL; int i = 0;