Mozilla Firefox 3.6 Released
Shining Celebi writes "Mozilla has released Firefox 3.6 today, which adds support for Personas, lightweight themes that can be installed without restarting the browser, and adds further performance improvements to the new Tracemonkey Javascript engine. One of the major goals of the release was to improve startup time and general UI responsiveness, especially the Awesomebar. You can read the full set of release notes here."
If you have the Switch Proxy Tool, I strongly suggest you disable it. Caused all sort of issues when upgrading. If you've already upgraded, right click on the shortcut and run in safe mode, there you can disable it. YMMV.
=================
Unix is very user friendly, it's just picky about who its friends are.
Tried on Windows, performance improvements are immediately noticeable. Wastes less screen space by default. For those who are used to the old look-and-feel can feel a little awkward at first.
Set extensions.checkCompatibility to false and you're good to go.
TechSutra
Firefox 3.6 does beat the newest Chrome on some Javascript benchmarks (and Chrome beats Firefox on others). I think it's safe to say they're in the same ballpark. http://www.fudzilla.com/content/view/17199/1/
Seethis for details.
Best Slashdot Co
Wait until the maintainers put a package in the repository, then update like usual. It's generally not worth installing unofficial packages if an official one is forthcoming.
Give me Classic Slashdot or give me death!
about:config
set mousewheel.withnokey.sysnumlines to false
set mousewheel.withnokey.numlines to 3
As good as new... Wait a second.
The new tab now appears to the right of the current tab when you right click on a link and select "Open Link in New Tab."
I just discovered that after about 5 seconds of "Hey, where'd my new tab go??"
I can see the fnords!
How can I upgrade on Ubuntu?
It won't appear in the main distribution until the new distro release 10.04 (current Codename Lucid Lynx). Possibly someone will stick it into the backports repository (which you would have to enable) or into a PPA (likewise).
If you can't wait, install into /usr/local from mozilla.com (use checkinstall to create a basic deb package so that the package manager knows about it).
"When I first heard Daydream Nation it quite frankly scared the living shit out of me." -- Matthew Stearns
Why do FF developers hate their own extension framework dammit!?
Be careful what you ask for...
Let's imagine for a second that you're writing a HTML web page with some scripting. If this were Chrom(e|ium) you could stop reading here; this is how their extensions work. But as a FF extension writer, you don't get the luxury of preserving your sanity.
Take away all the HTML you know and replace it with XUL, a completely different XML language with a different box model. Actually, you can keep the HTML in addition. You can keep your CSS too - along with getting to learn a metric assload of browser extensions to the syntax and creative ways to hack the existing vocabulary to get results. Want to display an image? XUL doesn't have the <img> tag, or a box model with sufficient control to embed a background image, but hey you can use "list-style-image"! Oh and since it's XUL you get to have fun with overlays, which are like includes except they work in an XML/XSLT way.
At this point, I'd like to mention the average human brain can only hold 7 items in short term memory at once. So far I've only named the bare minimum necessary to make a UI that does nothing. Now to make that clusterfuck do anything, you have to use a dialect of Javascript that makes COBOL look terse. Still not scared? Then you might survive extension-writing long enough to get around to the RDF stuff...
I really don't blame them for hating it.