Quote:
|
Originally Posted by superbnerd
Is that packages from Dag a stable release becuase it hasn't yet hit my update. when was it released?
|
I installed it Sept 24th, but it seems he's now withdrawn the 0.10 rpm.
1) Shift+Insert works fine
2) Preferences save fine
3) "find as you type" is now an option in preferences>advanced
4) arrow keys work fine
5) I don't use gaim, but have written my own script to launch urls from various applications in new tabs.
Code:
#!/bin/sh
# script to launch url in or existing or new instance of firefox
MXC=/usr/lib/firefox/mozilla-xremote-client
FIREFOX=/usr/bin/firefox
if [ "$1" == "-sametab" ]
then
shift
$MXC "openURL($@)" || $FIREFOX $@ &
else
$MXC "openURL($@,new-tab)" || $FIREFOX $@ &
fi
Try running firefox as root once immediately after installation before running as a normal user. And of course try mv ~/.mozilla ~/old.mozilla.