Mercurial > pidgin.yaz
changeset 8267:62af52b1614a
[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 <tailor@pidgin.im>
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Mon, 16 Feb 2004 04:45:28 +0000 |
parents | b37211166855 |
children | 7cb79236a645 |
files | COPYRIGHT ChangeLog src/gtknotify.c src/gtkprefs.c |
diffstat | 4 files changed, 11 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- 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 <gaim@robflynn.com> Nathan Fredrickson +Chris J. Friesen Free Software Foundation Decklin Foster Adam Fritzler
--- 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)
--- 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;
--- 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;