<?xml version='1.0' encoding='UTF-8'?><?xml-stylesheet href="http://www.blogger.com/styles/atom.css" type="text/css"?><feed xmlns='http://www.w3.org/2005/Atom' xmlns:openSearch='http://a9.com/-/spec/opensearchrss/1.0/' xmlns:georss='http://www.georss.org/georss' xmlns:gd='http://schemas.google.com/g/2005' xmlns:thr='http://purl.org/syndication/thread/1.0'><id>tag:blogger.com,1999:blog-17188930</id><updated>2012-01-27T01:21:40.316+01:00</updated><category term='linux'/><category term='certificates'/><category term='dom'/><category term='gfx'/><category term='av'/><category term='restartless'/><category term='venkman'/><category term='mathml'/><category term='gtk'/><category term='l10n'/><category term='printing'/><category term='composer'/><category term='mailnews'/><category term='bookmarks'/><category term='sync'/><category term='addons'/><category term='ui'/><category term='ldap'/><category term='css'/><category term='breakpad'/><category term='dns'/><category term='svg'/><category term='mac'/><category term='cz'/><category term='history'/><category term='aus'/><category term='ssl'/><category term='windows'/><category term='domi'/><category term='compiling'/><category term='plugins'/><category term='addressbook'/><title type='text'>SeaMonkey Trunk Tracker</title><subtitle type='html'>SeaMonkey Trunk: Bugs And Features</subtitle><link rel='http://schemas.google.com/g/2005#feed' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/posts/default'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default?max-results=100'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/'/><link rel='hub' href='http://pubsubhubbub.appspot.com/'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><generator version='7.00' uri='http://www.blogger.com'>Blogger</generator><openSearch:totalResults>86</openSearch:totalResults><openSearch:startIndex>1</openSearch:startIndex><openSearch:itemsPerPage>100</openSearch:itemsPerPage><entry><id>tag:blogger.com,1999:blog-17188930.post-504560984736887870</id><published>2012-01-27T01:21:00.000+01:00</published><updated>2012-01-27T01:21:40.327+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='sync'/><category scheme='http://www.blogger.com/atom/ns#' term='restartless'/><category scheme='http://www.blogger.com/atom/ns#' term='addons'/><title type='text'>Add-ons Sync Prefs: A Restartless Add-on for SeaMonkey 2.8</title><content type='html'>Ever since I &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=576970"&gt;ported Sync to SeaMonkey&lt;/a&gt; (2.1), the list of supported engines had been fixed: Bookmarks, History, Passwords, Preferences, and Tabs. With Firefox 11, the Sync developers added a new engine capable of syncing add-ons (or more precisely, which add-ons are installed). Since the Sync back-end is shared code, SeaMonkey 2.8 will include it, too. But while Firefox 11 will include UI for activating the new Add-ons engine, SeaMonkey 2.8 will lack it. This is because the Firefox changes landed pretty close to the l10n freeze so we were not able to port them in time. SeaMonkey 2.9 will include the UI changes, but why wait so long?&lt;br /&gt;&lt;br /&gt;On January 31st, SeaMonkey 2.7 will be released (well, that's the plan). A few days later, the first beta of SeaMonkey 2.8 will follow. People like me who are on the beta channel will upgrade directly from 2.7b5 (ETA today) to 2.8b1. This is when my main working environment will be ready for Add-ons Sync.&lt;br /&gt;&lt;br /&gt;Now I was wondering what the SeaMonkey developers could do to allow users of SeaMonkey 2.8 (on aurora, beta or release) to enable/disable the Add-ons Sync engine through preferences UI. Well, the answer is simple: Provide an add-on that adds the corresponding option!&lt;br /&gt;&lt;br /&gt;I decided early on to give it a try myself and create that add-on. I also felt that users were probably more likely to install such an add-on if it didn't interrupt their work flow (i.e. not require a restart of the application, which in the case of SeaMonkey is often used for both browsing and mail) and took care to not break anything if it was installed on an incompatible version of SeaMonkey (say, 2.7 or 2.9). The first requirement could be solved through writing a restartless add-on, the latter by adding explicit checks to the code.&lt;br /&gt;&lt;br /&gt;I quickly found some documentation for restartless add-ons on MDN (though they are called "&lt;a href="https://developer.mozilla.org/en/Extensions/Bootstrapped_extensions"&gt;bootstrapped&lt;/a&gt;" there). Unlike classic add-ons (which rely on XUL overlays and usually consist of many files and levels), a restartless add-on can be as simple as two files: The &lt;a href="https://developer.mozilla.org/en/Install_Manifests"&gt;install manifest&lt;/a&gt; (install.rdf) and the code, written in JavaScript (bootstrap.js).&lt;br /&gt;&lt;br /&gt;I guess for someone new to Mozilla-specific code, starting from scratch like this could be hard. During the development I faced several issues that you would probably not have seen with a classic XUL overlay approach. The Add-ons SDK might have been a better alternative if I had intended to write an add-on for Firefox, but since this one is SeaMonkey-only and given the requirements, there was not much of a choice.&lt;br /&gt;&lt;br /&gt;The main issue I faced was actually in shared XBL code (&lt;a href="http://mxr.mozilla.org/mozilla-central/source/toolkit/content/widgets/preferences.xml"&gt;preferences.xml&lt;/a&gt;): The constructor and destructor of &lt;a href="https://developer.mozilla.org/en/XUL/preference"&gt;preference elements&lt;/a&gt; throw if the element in question is not inside a &lt;a href="https://developer.mozilla.org/en/XUL/preferences"&gt;preferences element&lt;/a&gt;. What is probably always the case with XUL (including overlays) is not true for elements dynamically added or removed through JavaScript (&lt;a href="https://developer.mozilla.org/En/DOM/Node.cloneNode"&gt;cloneNode&lt;/a&gt;/&lt;a href="https://developer.mozilla.org/En/DOM/Node.removeChild"&gt;removeChild&lt;/a&gt;). In the end I had to replace cloneNode by &lt;a href="https://developer.mozilla.org/En/DOM/document.createElement"&gt;createElement&lt;/a&gt; and stop using removeChild (i.e. the preference element is left in the preferences window until it is closed; if the add-on is disabled while the window is still open, the preference element just gets disabled).&lt;br /&gt;&lt;br /&gt;Another surprise was that JavaScript errors inside bootstrap.js are reported as warnings in the Error Console. So if you enable the Errors filter, you won't see these warnings and assume everything is alright, while in fact the add-on does not work at all! Brilliant. :-(&lt;br /&gt;&lt;br /&gt;Anyway, I was finally able to finish the add-on (with &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=713087"&gt;friendly help&lt;/a&gt; from Neil Rashbrook), upload it to AMO, and get it fully reviewed. :-) &lt;a href="https://addons.mozilla.org/addon/add-ons-sync-prefs/"&gt;Here it is.&lt;/a&gt; &lt;br /&gt;&lt;br /&gt;Now of course none of this would have been possible without…&lt;br /&gt;&lt;ul&gt;&lt;li&gt;the Toolkit add-ons back-end developers&lt;/li&gt;&lt;li&gt;the MDN authors (in addition to the above linked pages, I valued most: &lt;a href="https://developer.mozilla.org/en/Using_nsIXULAppInfo"&gt;Using nsIXULAppInfo&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsIVersionComparator"&gt;nsIVersionComparator&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en/JavaScript_code_modules/Services.jsm"&gt;Services.jsm&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en/XPCOM_Interface_Reference/nsIPrefBranch"&gt;nsIPrefBranch&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en/XUL/window"&gt;window&lt;/a&gt; and &lt;a href="https://developer.mozilla.org/en/DOM/window"&gt;window&lt;/a&gt;, &lt;a href="https://developer.mozilla.org/en/XUL/prefpane"&gt;prefpane&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Mark Finkle (&lt;a href="http://starkravingfinkle.org/blog/2011/01/bootstrap-jones-adventures-in-restartless-add-ons/"&gt;his blog post&lt;/a&gt; was very helpful for getting started!)&lt;/li&gt;&lt;li&gt;MXR (development is just no fun without it!) &lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;&lt;i&gt;Note: If you look at &lt;a href="https://addons.mozilla.org/files/browse/142282/file/bootstrap.js"&gt;the source code&lt;/a&gt; you might see that the prefs handling (user vs. default prefs) is not perfect yet. This is something that both Neil and Kris Maglione (AMO reviewer) pointed out, but which I deliberately disregarded for the first version of the add-on.&lt;/i&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-504560984736887870?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/504560984736887870/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=504560984736887870' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/504560984736887870'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/504560984736887870'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2012/01/add-ons-sync-prefs-restartless-add-on.html' title='Add-ons Sync Prefs: A Restartless Add-on for SeaMonkey 2.8'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-37051052172014290</id><published>2011-12-24T17:22:00.000+01:00</published><updated>2011-12-24T17:22:14.940+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='addons'/><title type='text'>SeaMonkey 2.7 Beta 1 is Compatible by Default</title><content type='html'>Today, on Christmas Eve (local time), SeaMonkey 2.7 Beta 1 will be released. This version features something that will probably make a huge difference to ordinary users: Compatible-by-default add-ons (called CBD in the following). This is basically a change of opinion regarding add-on compatibility: Instead of assuming that an add-on is &lt;i&gt;not&lt;/i&gt; compatible with a new application version, we will henceforth assume &lt;i&gt;that it is&lt;/i&gt;, which should better reflect reality. Switching to a faster release cycle (with less ground-breaking, incompatible changes per release) certainly helped this come true.&lt;br /&gt;&lt;br /&gt;So far, support channels have seen many complaints from users who didn't want to upgrade to a new version of SeaMonkey because their favorite add-ons didn't work with it (yet). Sometimes people only upgraded later, or only when they were told how to override compatibility checks (e.g. using the &lt;acronym lang="en" title="Add-on Compatibility Reporter"&gt;ACR&lt;/acronym&gt;).&lt;br /&gt;&lt;br /&gt;Unlike Firefox add-ons, SeaMonkey add-ons did never benefit from automatic compatibility bumps on &lt;acronym lang="en" title="addons.mozilla.org"&gt;AMO&lt;/acronym&gt;. Thus as far as SeaMonkey was concerned, if the add-on developers didn't do the bump themselves, it was up to each individual user to take measures if they wanted to keep their add-ons active. And of course they did. Finding no UI option for that, they asked on the support channels, delayed the update, or gave up.&lt;br /&gt;&lt;br /&gt;Now if you take a look at the &lt;a href="https://wiki.mozilla.org/SeaMonkey/AddonCompat"&gt;SeaMonkey Add-on Compatibility Tracking&lt;/a&gt; page, you'll easily see that about half the add-ons listed under the AMO category are not marked compatible with the current stable version of SeaMonkey (or better). Add-on authors generally got better at bumping compatibility, but it's still a manual task as far as SeaMonkey is concerned.&lt;br /&gt;&lt;br /&gt;So what's different with the new CBD feature? Simply put, almost all of that other half from above will be compatible with SeaMonkey 2.7 Beta 1. Automatically. Without any end-user having to change or install anything in addition. That's what I call a UX win! :-) [1]&lt;br /&gt;&lt;br /&gt;So, why not all add-ons from the above list? Because some restrictions apply. For CBD to take effect for a SeaMonkey add-on, the following requirements need to be met: &lt;br /&gt;&lt;ol&gt;&lt;li&gt;The add-on is compatible with at least SeaMonkey 2.1 or Toolkit 2.0 (the matching Firefox version is 4.0, which is also their lower bound for CBD). This makes sense since that was when fully SeaMonkey adopted the Places back-end (formerly use for history only, then for bookmarks, too) and added Sync support. [2]&lt;/li&gt;&amp;nbsp;&lt;li&gt;The add-on does not contain binary components (this rules out popular add-ons like Lightning and Enigmail).&lt;/li&gt;&amp;nbsp;&lt;li&gt;The add-on does not claim to only support a later version of SeaMonkey than the one that is currently running the check (in other words: the add-on minVersion must not be larger than the app version).&lt;/li&gt;&amp;nbsp;&lt;li&gt;The add-on did not opt out of CBD (by setting the strictCompatibility flag in install.rdf or on AMO).&lt;/li&gt;&lt;/ol&gt;&lt;br /&gt;&lt;br /&gt;From my experience, the majority of frequently used SeaMonkey add-ons pass all of these checks. So instead of instructing all users with add-on compatibility issues to install the ACR, we can now limit that advice to those who want to test and give feedback for Beta, Aurora and trunk builds. With CBD, the ACR cannot be used to enable old (pre-2.1) add-ons anymore anyway.&lt;br /&gt;&lt;br /&gt;That's it for our next beta, but there's more! In early 2012, when SeaMonkey 2.9 hits Beta, users on that channel will be able to have Sync distribute their installed add-ons across multiple instances of SeaMonkey (provided the add-ons are available from AMO). Note that Firefox will ship the new feature one release earlier (it landed very close to the Aurora uplift, which is the cut-off for changes that affect localization), but that's not too bad since this feature doesn't work across applications anyway.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;Now what's left to say? Merry Christmas everyone! Let there be peace on earth.&lt;br /&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;[1]: Thanks to everyone who worked on this feature! I know you primarily have Firefox on multiple platforms in mind when you develop things in Toolkit, but still.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;[2]: Toolkit/&lt;acronym lang="en" title="Add-ons Manager"&gt;AOM&lt;/acronym&gt; &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=680845"&gt;Bug 680845&lt;/a&gt; still applies, i.e. if an add-on is marked as compatible with SeaMonkey on AMO, installation will fail if the add-on's install.rdf doesn't list SeaMonkey.&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;&lt;br /&gt;&lt;/span&gt;&lt;br /&gt;&lt;span style="font-size: x-small;"&gt;Note to self: Contact the developers of the add-ons listed under 2.0x since these will not benefit from CBD as-is, though at least some of them still work with current SeaMonkey version for sure, e.g. Nostalgy. &lt;b&gt;If anyone reads this and shares my concerns, feel free to help (e.g. using the ACR to give feedback), it is surely appreciated!&lt;/b&gt;&lt;/span&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-37051052172014290?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/37051052172014290/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=37051052172014290' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/37051052172014290'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/37051052172014290'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2011/12/seamonkey-27-beta-1-is-compatible-by.html' title='SeaMonkey 2.7 Beta 1 is Compatible by Default'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-5849336401132233563</id><published>2011-12-13T00:36:00.000+01:00</published><updated>2011-12-13T00:36:31.862+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='windows'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>11-12-13</title><content type='html'>&lt;div style="color: #666666;"&gt;&lt;i&gt;&lt;span style="font-size: x-small;"&gt;[Note: This post is quite different from those I made in the past. Long story short: Due to time constraints I will hardly ever be able to revive the old SeaMonkey Trunk Tracker style of release updates or even complete the missing ones. That's not too bad, though, since I'm now responsible for the SeaMonkey website, which includes the list of changes per release (of which we have more now, as you know). This allows me to re-focus this blog on what it is actually about: tracking trunk development. The below is probably a good example of what is still to come.]&lt;/span&gt;&lt;/i&gt;&lt;/div&gt;&lt;br /&gt;Welcome back! It's 11-12-13 now (at least in my timezone) and I feel this is the perfect time to share something with you that just landed on trunk.&lt;br /&gt;&lt;br /&gt;If you are building SeaMonkey or Thunderbird on Windows, you can now finally replace this:&lt;br /&gt;&lt;br /&gt;&lt;blockquote class="tr_bq" style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;make -f client.mk&lt;/blockquote&gt;&lt;br /&gt;or this:&lt;br /&gt;&lt;br /&gt;&lt;blockquote class="tr_bq" style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;autoconf-2.13&lt;br /&gt;cd mozilla&lt;br /&gt;autoconf-2.13&lt;br /&gt;cd js/src&lt;br /&gt;autoconf-2.13&lt;br /&gt;mkdir -p $MOZ_OBJDIR&lt;br /&gt;cd $MOZ_OBJDIR&lt;br /&gt;../comm-central/configure&lt;br /&gt;time python -O ../comm-central/mozilla/build/pymake/make.py&lt;/blockquote&gt;&lt;br /&gt;by this:&lt;br /&gt;&lt;br /&gt;&lt;blockquote class="tr_bq" style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;time python -OO mozilla/build/pymake/make.py -f client.mk&lt;/blockquote&gt;&lt;br /&gt;and replace this:&lt;br /&gt;&lt;br /&gt;&lt;blockquote class="tr_bq" style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;mk_add_options MOZ_OBJDIR=/e/mozilla-src/comm-central-build&lt;/blockquote&gt;&lt;br /&gt;by this:&lt;br /&gt;&lt;br /&gt;&lt;blockquote class="tr_bq" style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;mk_add_options MOZ_OBJDIR=e:/mozilla-src/comm-central-build&lt;/blockquote&gt;&lt;br /&gt;and add back this:&lt;br /&gt;&lt;br /&gt;&lt;blockquote class="tr_bq" style="font-family: &amp;quot;Courier New&amp;quot;,Courier,monospace;"&gt;mk_add_options MOZ_MAKE_FLAGS=-j8&lt;/blockquote&gt;&lt;br /&gt;in your .mozconfig and there you'll have it: Parallelized building on Windows, using pymake! On a fast PC like mine (i7) you can get a full debug build done from scratch in only about 25 minutes now, without the fear of experiencing intermittent hangs. :-)&lt;br /&gt;&lt;br /&gt;Thanks go to all the people who worked on pymake and especially the ones who fixed the last issue on comm-central (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=706905"&gt;Bug 706905&lt;/a&gt;).&lt;br /&gt;&lt;br /&gt;BTW: AFAICS the comm-central client.mk is still missing some pymake-related fixes that were recently made to the mozilla-central equivalent, especially &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=707512"&gt;Bug 707512&lt;/a&gt; and &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=643167"&gt;Bug 643167&lt;/a&gt;. Please correct me if I'm wrong.&lt;br /&gt;&lt;br /&gt;In the next issue I'm going to talk about compatible-by-default extensions (a.k.a. add-ons) and the implications for SeaMonkey. Stay tuned!&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-5849336401132233563?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/5849336401132233563/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=5849336401132233563' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/5849336401132233563'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/5849336401132233563'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2011/12/11-12-13.html' title='11-12-13'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-1390792453475235534</id><published>2011-03-12T19:12:00.003+01:00</published><updated>2011-03-12T19:18:04.474+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gfx'/><category scheme='http://www.blogger.com/atom/ns#' term='plugins'/><category scheme='http://www.blogger.com/atom/ns#' term='addons'/><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='av'/><category scheme='http://www.blogger.com/atom/ns#' term='cz'/><category scheme='http://www.blogger.com/atom/ns#' term='ui'/><category scheme='http://www.blogger.com/atom/ns#' term='printing'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='aus'/><category scheme='http://www.blogger.com/atom/ns#' term='venkman'/><category scheme='http://www.blogger.com/atom/ns#' term='composer'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='history'/><category scheme='http://www.blogger.com/atom/ns#' term='l10n'/><category scheme='http://www.blogger.com/atom/ns#' term='bookmarks'/><category scheme='http://www.blogger.com/atom/ns#' term='domi'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>2.1 Beta 2 Roundup</title><content type='html'>Welcome back! It's been a while, and this time I'm especially late since Beta 2 already shipped a month ago. But fear not, there's also news to tell: On trunk, both &lt;a href="http://www.hacksrus.com/%7Eginda/venkman/"&gt;Venkman&lt;/a&gt; (JavaScript Debugger) and &lt;a href="http://chatzilla.hacksrus.com/"&gt;ChatZilla&lt;/a&gt; are finally working again, which means they'll also do in the upcoming (and last) Beta 3. Additionally, SeaMonkey 2.1 Beta 3 will show download progress in the Windows 7 taskbar, display plugins in MailNews feeds and allow to &lt;a href="http://home.kairo.at/blog/2011-03/my_probably_last_major_seamonkey_patch"&gt;add a search bar&lt;/a&gt; (as in Firefox) to the browser (including suggestions and engine management).&lt;br /&gt;&lt;br /&gt;For Beta 2, the biggest part was the integration of &lt;a href="http://www.mozilla.com/firefox/sync/"&gt;Sync&lt;/a&gt;. All in all it took more than four months of review and dozens of iterations to get to the point where it could land on trunk. Of course none of that would have been possible without the effort of the original Weave and Firefox Sync developers in the first place, who built a product that is both easy to use and secure by design. The implementation as of Beta 2 is not complete yet; on trunk the Preferences dialog has already been redesigned and further changes are about to happen (mainly porting the easy setup screen for adding devices).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Highlights:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Add a Keyword for this Search&lt;/li&gt;&lt;li&gt;Add-on Manager improvements   &lt;/li&gt;&lt;li&gt;Data Manager final integration&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Deferred Session Restore&lt;/li&gt;&lt;li&gt;Delete news messages from local storage&lt;/li&gt;&lt;li&gt;DoNotTrack header&lt;/li&gt;&lt;li&gt;DOM Inspector Enhanced Box Model Viewer&lt;/li&gt;&lt;li&gt;Doorhangers&lt;br /&gt; &lt;/li&gt;&lt;li&gt;HTML5 Forms API&lt;/li&gt;&lt;li&gt;Lightweight themes (Personas) on Address Book, Composer and MailNews&lt;/li&gt;&lt;li&gt;Remember page zoom per site&lt;/li&gt;&lt;li&gt;Mac PPC dropped, 64-bit added for 10.6 Snow Leopard&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Omnijar&lt;/li&gt;&lt;li&gt;OpenType improvements&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Scrollable browser tab bar and All Tabs button&lt;/li&gt;&lt;li&gt;Sync&lt;/li&gt;&lt;li&gt;WebGL and D3D&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt; MailNews:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Do not stop copy to IMAP folder action without any error message (handle errors trying to stream next message) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601900"&gt;Bug 601900&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add support for retrieving new mail by time delay or during startup to Unix Mailspool account type (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=480945"&gt;Bug 480945&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make attachment code for apple encode 64-bit compatible (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537900"&gt;Bug 537900&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Let user choose signature separator (new mail.identity.default.suppress_signature_separator pref) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=58406"&gt;Bug 58406&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Replace server-based archiving prefs by identity-based ones (mail.identity.default.archive_granularity, mail.identity.default.archive_keep_folder_structure) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517514"&gt;Bug 517514&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent copying messages/folders from local to IMAP from failing due to virus checker interfering with temp file handling (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601900"&gt;Bug 601900&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not automatically mark IMAP Draft messages as read (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470746"&gt;Bug 470746&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure default alert sound plays on Mac when new email arrives (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594355"&gt;Bug 594355&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix new mail icon for libxul builds (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=598942"&gt;Bug 598942&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make lightweight themes / Personas work in the Composer window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579739"&gt;Bug 579739&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make lightweight themes / Personas work in the MailNews window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579738"&gt;Bug 579738&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not use disk cache if storing the message in the offline store (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531033"&gt;Bug 531033&lt;/a&gt;)&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Remove unused prefs from mailnews.js (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=610289"&gt;Bug 610289&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove unused mailnews.use_received_date pref (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=607265"&gt;Bug 607265&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove unused pref mail.imap.mime_parts_on_demand_max_depth (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=623685"&gt;Bug 623685&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Expand single or last message ID in headers display by default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=611738"&gt;Bug 611738&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Support IMAP AUTH EXTERNAL with TLS and given client certificate (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=286581"&gt;Bug 286581&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Introduce deletion of newsgroup messages, differentiating between Cancel and Delete (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=250141"&gt;Bug 250141&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix parsing and compaction of local folders &gt; 4 GB (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608449"&gt;Bug 608449&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Polish the MailNews search dialog on Mac and fix some obsolete styles for all OSs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613358"&gt;Bug 613358&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Support balloon notifications for new messages on Windows (pref: mail.biff.show_balloon) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=605972"&gt;Bug 605972&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix handling of forwarded flag on IMAP servers that do not support the flag (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=561292"&gt;Bug 561292&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Detect corrupt offline store and disk cache entries for IMAP messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531033"&gt;Bug 531033&lt;/a&gt;)&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Fix some cases of copies of messages ending up in offline store (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=609683"&gt;Bug 609683&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not try to open appledouble attachments as appledouble and do not make attachments disappear when appledouble is registered (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579682"&gt;Bug 579682&lt;/a&gt;)&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Open links from Address Cards like links from MailNews (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=116114"&gt;Bug 116114&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not open selected message in new tab for middle click on scrollbar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518545"&gt;Bug 518545&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Port several composeStartup fixes from Thunderbird (e.g. for attachment file names passed in from the command line, support accents and encoding) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=617011"&gt;Bug 617011&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Improve print format of attachment file names (remove content-type and content-encoding) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=544984"&gt;Bug 544984&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix opening messages found with Advanced Search by double click (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=545420"&gt;Bug 545420&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use folder semaphore to prevent IMAP offline store corruption (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531033"&gt;Bug 531033&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure bottom signature does not appear inside the quotation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=614949"&gt;Bug 614949&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;Make sure deleting a message from a collapsed thread does not cause all other messages to disappear from the subject pane&lt;/span&gt;&lt;/span&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=593525"&gt;Bug 593525&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Reduce wake up frequency of IMAP threads for possibly lower power consumption (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613184"&gt;Bug 613184&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure import from Apple Mail.app does not break messages or causes data loss (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531245"&gt;Bug 531245&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make the "count the size of attachments" feature work for .eml attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=606699"&gt;Bug 606699&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Show correct message for error saving to Drafts folder, and retry saves to Sent folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=257735"&gt;Bug 257735&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Set forwarded flag on messages forwarded inline by message filters (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=624337"&gt;Bug 624337&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Keep IMAP offline stores up-to-date when messages are moved/copied (including fcc/save as draft) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=574441"&gt;Bug 574441&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Show size in attachment list (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=26517"&gt;Bug 26517&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Correct the attachment header for inline text attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=609992"&gt;Bug 609992&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make Ctrl+F4 work in tabmail (but not on Mac OS X) and add better keyboard Tab navigation on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=628918"&gt;Bug 628918&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make Print Preview work in viewsource and MailNews again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=629900"&gt;Bug 629900&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make -compose command line options like bcc work if they are the first or only argument (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=627999"&gt;Bug 627999&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Improve message composition logic performance (especially for forwarding many messages as attachments) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=293100"&gt;Bug 293100&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent empty news articles when selecting during download from news server (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=540288"&gt;Bug 540288&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make F5 reload the view as in the browser (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=79397"&gt;Bug 79397&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add ability to detach grandchildren with MIME multipart/alternative (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=351224"&gt;Bug 351224&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add check for &gt; 4 GB folder when appending to local Sent/Drafts folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=598104"&gt;Bug 598104&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add ability to drag feed URL from header pane (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=606992"&gt;Bug 606992&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Convert composition security options for encrypt into a single menu item (with checkbox) like signing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537219"&gt;Bug 537219&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make Select Thread work in cross folder virtual/saved searched/unified folders again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=544983"&gt;Bug 544983&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix text field context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=623590"&gt;Bug 623590&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix renaming folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588006"&gt;Bug 588006&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not show disabled menu items (like Insert/Format in MailNews Compose) as enabled on hover (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=609422"&gt;Bug 609422&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix mail reply painting issue (prevent documents loaded in mail editors to set up their own editors using the designMode or contentEditable APIs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616590"&gt;Bug 616590&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix collapsed folders appearing without children in MailNews subscription manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=592633"&gt;Bug 592633&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Address Book:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Make lightweight themes/Personas work in the Address Book window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608966"&gt;Bug 608966&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add placeholdeer to Bookmarks and Address Book sidebars' search fields (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=610517"&gt;Bug 610517&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use GTK theme settings for background and text color in Address Book Output Panel (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616699"&gt;Bug 616699&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Bookmarks:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Improve Places File Bookmark (Ctrl+D) dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=586947"&gt;Bug 586947&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Turn bookmarks panel into an arrow panel (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590105"&gt;Bug 590105&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add missing treelines to bookmarks sidebar and manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620531"&gt;Bug 620531&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Improve speed of managing multiple bookmarks in the Bookmarks Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613034"&gt;Bug 613034&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent bookmarks initialization locking with the first visit addition (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620068"&gt;Bug 620068&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make the primary bookmarked indicator asynchronous (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620066"&gt;Bug 620066&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Initially import bookmarks from resource: scheme for Omnijar compatibility (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=628079"&gt;Bug 628079&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Update bookmark tag list when manually adding, renaming, or deleting (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=627416"&gt;Bug 627416&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure tags of bookmarks are not lost when using undo after a cut or delete (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=597995"&gt;Bug 597995&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Download Manager:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Make sure downloading of a file from a password protected directory does not fail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=607560"&gt;Bug 607560&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove all files left behind when a download is canceled (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=593815"&gt;Bug 593815&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure automatic updates do not get stalled when installed version is newer than a downloaded update restored using Windows system restore (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601701"&gt;Bug 601701&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Help:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Split mail_help.xhtml to several files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=246405"&gt;Bug 246405&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Clarify and update Help for Copies &amp;amp; Folders Account Settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608152"&gt;Bug 608152&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Document option "Only check for new mail after opening Mail &amp;amp; Newsgroups" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=525973"&gt;Bug 525973&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Document MailNews Default Account (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=227152"&gt;Bug 227152&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Document shortcuts for Text Viewing, Navigation and Selection (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=232063"&gt;Bug 232063&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Locales:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Add Finnish (fi) locale (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=609883"&gt;Bug 609883&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Audio/Video:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Turn on OpenGL LayerManager for fullscreen video (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=556547"&gt;Bug 556547&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Never play audio/video automatically in an editor (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601881"&gt;Bug 601881&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Work around alsa-pulse bug that causes hangs after resuming audio from pause (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=573924"&gt;Bug 573924&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Ensure video controls don't show when we can't load a resource (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595009"&gt;Bug 595009&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Ensure video controls resize correctly when showing and hiding status overlay (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=604885"&gt;Bug 604885&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not initiate media buffering before decode hits the end of downloaded data (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=623637"&gt;Bug 623637&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Create media cache temp files with correct permissions and remove stray ones after 30s of idle time on Windows (initial wait time 3min) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572579"&gt;Bug 572579&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Restore playback statistics to enable more accurate media buffering duration calculation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=623637"&gt;Bug 623637&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add support for StereoMode element (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=584259"&gt;Bug 584259&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Adjust ALSA start threshold to reduce the chance of deadlocking when recovering from under-run (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=615134"&gt;Bug 615134&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Add-ons:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Fix installer for trunk builds (after Omnijar) so extensions are also installed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=629037"&gt;Bug 629037&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add keyboard Ctrl+Shift+A shortcut to open Add-on Manager (and change MailNews Select Thread to Alt+Shift+A) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591483"&gt;Bug 591483&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not lose pending installs/upgrades when upgrading to the new Add-on Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=568251"&gt;Bug 568251&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Update the UI with the new add-on details when bootstrapped add-ons are upgraded (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=596336"&gt;Bug 596336&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Clear XUL fastload when new extensions are installed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=606076"&gt;Bug 606076&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make revealing and hiding bootstrapped add-ons in non-profile install locations work correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=553017"&gt;Bug 553017&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add final visual style and graphics to Add-on Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601022"&gt;Bug 601022&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow upgrading an add-on to an add-on with a different ID (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=412819"&gt;Bug 412819&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make Get Add-ons tab the default selection in a new profile (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=610764"&gt;Bug 610764&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Accelerate building the add-on lists (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=614416"&gt;Bug 614416&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow add-ons to opt out of metadata collection (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=603409"&gt;Bug 603409&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add loading and error states to the Get Add-ons view (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601143"&gt;Bug 601143&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Ignore removed add-ons during update check (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616457"&gt;Bug 616457&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Support paid results in the add-ons search result (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=562790"&gt;Bug 562790&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Pass Addon object to custom about dialogs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=610661"&gt;Bug 610661&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Recover gracefully from a broken extensions.bootstrappedAddon (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=619607"&gt;Bug 619607&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Hide the disable button for add-ons that are waiting to install (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616620"&gt;Bug 616620&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Default Search to searching for available add-ons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=611459"&gt;Bug 611459&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove Disable item from context menu for already disabled extensions and plugins (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616633"&gt;Bug 616633&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Automatically install add-ons distributed with the application into the user's profile (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474289"&gt;Bug 474289&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove last updated date and sorting bar from Add-on Manager list view (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=623207"&gt;Bug 623207&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Group add-ons in list view according to their status (enabled, disabled, etc.) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=624808"&gt;Bug 624808&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove add-on author name and link from Add-on Manager list view (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=623211"&gt;Bug 623211&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow the tab key to only move to the items relevant to the selected extension (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=563912"&gt;Bug 563912&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Download metadata for new add-ons when installed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595915"&gt;Bug 595915&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow restarting extension downloads after failure (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=593535"&gt;Bug 593535&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure failed extension downloads can be resumed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=593535"&gt;Bug 593535&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent multiple add-on entries in list view when downloading an update (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=618760"&gt;Bug 618760&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove Pause button and make Cancel button work on download progress widget (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581361"&gt;Bug 581361&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use InstallTrigger for XPI links (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=593025"&gt;Bug 593025&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Rollback updates when file operations fail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=587088"&gt;Bug 587088&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Throw an exception if illegal arguments are passed to InstallTrigger.install (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608680"&gt;Bug 608680&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Support no contribution amount (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=617493"&gt;Bug 617493&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Only show Available Updates pane when pending updates are available (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591024"&gt;Bug 591024&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not show hidden pane when clicking a few pixels down from Plugins (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=612053"&gt;Bug 612053&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix display for long descriptions in detail view (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=624175"&gt;Bug 624175&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Hide version numbers for lightweight themes (Personas) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580298"&gt;Bug 580298&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;&lt;/span&gt;   &lt;span style="font-weight: bold;"&gt;Session Store:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Support form restore for securely transmitted sites (HTTPS) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=603090"&gt;Bug 603090&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use Deferred Session Restore (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=614220"&gt;Bug 614220&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Preferences:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Update Cache preferences panel for new cache size heuristic (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594744"&gt;Bug 594744&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add preference for accessibility.blockautorefresh and Hardware Acceleration (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465303"&gt;Bug 465303&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Change the "No Proxy for" list UI from a textbox to a textarea (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613198"&gt;Bug 613198&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Update hardware acceleration preference for layer prefs tri-state (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=625318"&gt;Bug 625318&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add preference for link diversion restrictions (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=583625"&gt;Bug 583625&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add preference for do-not-track HTTP header (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=630270"&gt;Bug 630270&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Sync:&lt;br /&gt;&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Port Sync UI to SeaMonkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=576970"&gt;Bug 576970&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Update Modern for Sync UI and fix about:sync-tabs theming (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=612172"&gt;Bug 612172&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Hide context menu separator if about:sync-tabs is empty (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=628163"&gt;Bug 628163&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add a pref (services.sync.log.appender.debugLog.enabled) to control Sync back-end logging (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=599928"&gt;Bug 599928&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;DOM Inspector:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Make sure Inspect Contained Document followed by View Stylesheets works correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=112674"&gt;Bug 112674&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent "Error: getSelectedItem is not defined" when switching from jsObject viewer to DOM viewer in document pane (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=617053"&gt;Bug 617053&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow selecting/scrolling properties tree in CSS Rules viewer after undoing a deletion (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620149"&gt;Bug 620149&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow to watch a11y events for the whole application (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=551404"&gt;Bug 551404&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make the DOM Nodes viewer currentIndex-clean and do more intelligent rebuilding (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=589299"&gt;Bug 589299&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add Inspect in New Window to the Edit menu and give it a shortcut (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588071"&gt;Bug 588071&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add Inspect in New Window to the stylesheets viewer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=606821"&gt;Bug 606821&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Disable DOM Nodes viewer's context menu's Paste and Insert menus if no items are enabled (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=589300"&gt;Bug 589300&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add Copy URI and View File to stylesheets viewer's context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=607080"&gt;Bug 607080&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add tooltips to Inspect menus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=612333"&gt;Bug 612333&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add Copy URI and View File to XBL Bindings Viewer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613718"&gt;Bug 613718&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow navigating DOM Inspector mouselessly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=256244"&gt;Bug 256244&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add Enhanced Box Model Viewer, showing all data at once and with bold style for significant data (value!=0) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=615156"&gt;Bug 615156&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;HTML5:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Add support for the track element to the HTML5 parser (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620664"&gt;Bug 620664&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add :-moz-ui-invalid pseudo-class (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=605124"&gt;Bug 605124&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Graphics:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Handle device removal when using D3D10 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=604271"&gt;Bug 604271&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Block D3D9 on Windows 2000 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=603204"&gt;Bug 603204&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Enable GL shadow layer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=602428"&gt;Bug 602428&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Enable D3D10 layers by default (new layers.prefer-d3d9 pref replaces layers.use-d3d10) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=605547"&gt;Bug 605547&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix anti-aliasing problem of D2D (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=548964"&gt;Bug 548964&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Turn the layer acceleration prefs into a tri-state (removes layers.accelerate-all and layers.accelerate-none and adds layers.acceleration.disabled and layers.acceleration.force-enabled) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=623446"&gt;Bug 623446&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add 3D Vision stereoscopic rendering support to D3D10 layers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=617220"&gt;Bug 617220&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Disable OpenGL layers by default on Mac OS 10.5 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=583499"&gt;Bug 583499&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Honor the gfx.color_management.force_srgb pref when it is set as a default pref in addition to being set as a user pref (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608030"&gt;Bug 608030&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Block WebGL on OpenGL on Intel cards on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=625118"&gt;Bug 625118&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Only white-list Intel, NVIDIA and ATI, but block old drivers for ATI and NVIDIA older than June 2010 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=623338"&gt;Bug 623338&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Rename webgl.prefer_gl pref to webgl.prefer-native-gl and introduce webgl.force-enabled and webgl.disabled prefs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=628403"&gt;Bug 628403&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not enable OpenGL on Mac OS 10.6 before minor version 3 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=629016"&gt;Bug 629016&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Re-enable WebGL on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=578877"&gt;bug 578877&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Create prefs (one per nsIGfxInfo feature) that override the built-in blacklist if set (pref branch gfx.blacklist. suffixes: direct2d, layers.direct3d9, layers.direct3d10, layers.direct3d10-1, layers.opengl, webgl.opengl, webgl.angle) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=625160"&gt;Bug 625160&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Reset animations when .src is changed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594771"&gt;Bug 594771&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Stop animated GIFs looping too often (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=222176"&gt;Bug 222176&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix GIFs not animating on page reload (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601723"&gt;Bug 601723&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Linux:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Make F5 reload on other platforms than Windows (enable it for Linux/Unix only, since we don't want it on Mac) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509954"&gt;Bug 509954&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make Helper Applications panel in Preferences window usable on a non-Gnome system (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=606998"&gt;Bug 606998&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Mac:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Set minimum required OS version for Mac builds (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=604666"&gt;Bug 604666&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Style the Findbar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=605586"&gt;Bug 605586&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Enable full screen mode on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=606297"&gt;Bug 606297&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Adjust default IPC prefs for Mac 64-bit support and dropping PPC (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=614231"&gt;Bug 614231&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Polish the Edit Filter dialog on Mac and fix some obsolete styles (all OSs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=614382"&gt;Bug 614382&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use RTL-friendly scrollbuttons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=624161"&gt;Bug 624161&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Adopt CSS for click-through (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=611857"&gt;Bug 611857&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Improve MailNews (tab)scrollbox arrows/buttons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=602568"&gt;Bug 602568&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use a better focus ring color in the MailNews search dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620797"&gt;Bug 620797&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Style the bookmarks arrow panel (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620132"&gt;Bug 620132&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not open two windows when opening external links on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531552"&gt;Bug 531552&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Compiling:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Add --enable-profiling configure option (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=604871"&gt;Bug 604871&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Adapt PYTHON_VERSION check (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613811"&gt;Bug 613811&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Transition LDAP SDKs to Mercurial (pull the LDAP c-sdk from Mercurial rather than CVS) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506601"&gt;Bug 506601&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Require SP1 of VC8 EE to build successfully, obsolete VC7.1 and VC8 without its SP1 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=610936"&gt;Bug 610936&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Update required Cairo version to 1.10 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608484"&gt;Bug 608484&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Require system libpng to be at version 1.4.1 or later (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608483"&gt;Bug 608483&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Provide an intelligible error when switching from gmake to pymake or vice versa on an absolutely configured objdir (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608173"&gt;Bug 608173&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Support startup timeline (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=604849"&gt;Bug 604849&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow to build GConf and GnomeVFS/GIO support independently (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=545343"&gt;Bug 545343&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Link 32-bit Windows builds with LARGEADDRESSAWARE (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=556382"&gt;Bug 556382&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Require GTK+ 2.4.0 or later for compilation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=621962"&gt;bug 621962&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Enable crashreporter on Win64 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580623"&gt;Bug 580623&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove MSVC 6 support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508760"&gt;Bug 508760&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix DirectX SDK platform detection (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=622158"&gt;Bug 622158&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Require SP1 of VC8 EE to build (successfully); Obsolete VC7.1 and VC8 without its SP1 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=610936"&gt;Bug 610936&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Disable ctypes on x86/MSVC if MASM is unavailable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=551724"&gt;Bug 551724&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add --enable-profiling configure option (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=592923"&gt;Bug 592923&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;General:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Fix Undo Close Tab for tabs that are only in the bfundo cache (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=597637"&gt;Bug 597637&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Accept middle-click for the new tab button (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=603095"&gt;Bug 603095&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make findbar appear above content and style it properly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=605622"&gt;Bug 605622&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove Bloglines from the feed reader options (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=603132"&gt;Bug 603132&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Focus on content for Tools/Search the Web or clicking the search button (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=606858"&gt;Bug 606858&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make &lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;full screen window controls, bookmark overflow chevron and tab/sidebar close button&lt;/span&gt;&lt;/span&gt; more visible against dark lightweight themes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=610408"&gt;Bug 610408&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not ignore "Always use Google to subscribe to feeds" setting (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=612265"&gt;Bug 612265&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add Firefox Sidebar API to SeaMonkey Sidebar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=399310"&gt;Bug 399310&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make removing entries in Data Manager trees select the next entry (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=597994"&gt;Bug 597994&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix accessibility.typeaheadfind.usefindbar=false for View Source and Help windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=626985"&gt;Bug 626985&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not hide the invalid form popup if the user types in an invalid form control (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620079"&gt;Bug 620079&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Notify when installing a lightweight theme but e.g. Modern is current which means that a restart is needed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594776"&gt;Bug 594776&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use doorhangers for geolocation, login manager, application/add-on installations, indexedDB and other notifications (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595810"&gt;Bug 595810&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Deal with saved POST data in functions loading entries e.g. from Places (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=553459"&gt;Bug 553459&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add ability to open Data Manager to a specific domain (and panel) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588418"&gt;Bug 588418&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add an icon to the Data Manager tab (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=615014"&gt;Bug 615014&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Decode IDN punycode in Data Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591324"&gt;Bug 591324&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Switch SeaMonkey UI to open Data Manager instead of other windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588419"&gt;Bug 588419&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make Esc key cancel Forget tab in Data Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613087"&gt;Bug 613087&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make DEL key set permission tab entry back to default in Data Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613086"&gt;Bug 613086&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add ability to add permissions in Data Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588417"&gt;Bug 588417&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add a possibility to Data Manager to only list domains of a certain data type (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613795"&gt;Bug 613795&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Switch to relevant tab for first domain with data in Data Manager when managing Permissions/Passwords (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=619098"&gt;Bug 619098&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix Domain search in Data Manager with IDN (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=629678"&gt;Bug 629678&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remember zoom value on a site-specific basis (using Toolkit ZoomManager) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=386363"&gt;Bug 386363&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Give life to SeaMonkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616874"&gt;Bug 616874&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Warn people on startup if they run an old build with updates disabled (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581319"&gt;Bug 581319&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Update status bar correctly after switching tabs (and add support for the onUpdateCurrentBrowser notification) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=583317"&gt;Bug 583317&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make SeaMonkey tab bar scrollable to cope with tab overflow (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=484968"&gt;Bug 484968&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Support arrow panels in Modern and turn doorhangers into arrow panels (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=617661"&gt;Bug 617661&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make doorhanger menulist display correctly in Modern (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=617661"&gt;Bug 617661&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent clicking miscellaneous Location Bar icons from selecting the text (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=619309"&gt;Bug 619309&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Provide screen reader accessibility for doorhanger notifications (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=617333"&gt;Bug 617333&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add "Add a Keyword for this Search" to websites' search fields (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=332538"&gt;Bug 332538&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Switch SeaMonkey to Omnijar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588067"&gt;Bug 588067&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Update right pane tree of Bookmark Manager when deleting a selected folder in the left pane tree (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=627408"&gt;Bug 627408&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Enable the window resizer when the status bar is turned off (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=627755"&gt;Bug 627755&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent Sidebar from opening by default in new profiles (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=630124"&gt;Bug 630124&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent &lt;span id="summary_alias_container"&gt; &lt;span id="short_desc_nonedit_display"&gt;Location Bar from remembering invalid (Server not found) URLs&lt;/span&gt;&lt;/span&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=627416"&gt;Bug 627416&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fail to load with invalid port number instead of using default port (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537381"&gt;Bug 537381&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement File.slice (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=575946"&gt;Bug 575946&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Truncate long text when pasting text that is longer than maxlength of text control (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=603556"&gt;Bug 603556&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add support for app.support.vendor, show it on about:support and remove support for general.useragent.vendor and vendorSub (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591573"&gt;Bug 591573&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Disable OOPP for Java on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=603417"&gt;Bug 603417&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not hide doorhanger text when lightweight themes (Personas) are installed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=604464"&gt;Bug 604464&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix lightweight themes (Personas) chrome painting when entering/exiting full screen mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=604318"&gt;Bug 604318&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not crash on closing print preview with iframe, position:fixed and input (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595337"&gt;Bug 595337&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent browser from stalling with connections left hanging in TCP close wait state (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=606719"&gt;Bug 606719&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Let build system provide an intelligible error when switching from gmake to pymake or vice-versa on an absolutely configured objdir (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608173"&gt;Bug 608173&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not handle files being dropped in an editable area (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512717"&gt;Bug 512717&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Ctrl+clicking on a text control border followed by an editing operation (e.g. paste) removes the table cell from a non-editable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424627"&gt;Bug 424627&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure pressing Enter in a paragraph with an id attribute does not create a second paragraph of same ID (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=607584"&gt;Bug 607584&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure caret is available when an iframe is put into design mode when it already has focus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=542317"&gt;Bug 542317&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure bottom of spellchecker underline is painted in input element with certain fonts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=548964"&gt;Bug 548964&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make ui.trackpoint_hack.enabled pref update live and add ui.window_class_override pref (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594977"&gt;Bug 594977&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Install Updates only installs the first update in the list (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=597397"&gt;Bug 597397&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Recover from a corrupt database or incorrect schema after startup (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=602577"&gt;Bug 602577&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Show four rows for select multiple by default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=603141"&gt;Bug 603141&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not crash when FIPS softtoken checksum verification fails (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521849"&gt;Bug 521849&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Recover from a corrupt database or incorrect schema after startup (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=602577"&gt;Bug 602577&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make installer add OOPP process plugin-container.exe to ShimInclusionList to prevent Windows Media Player from falling back to version 6.4 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=609106"&gt;Bug 609106&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make the More Encodings sub menus non-localizable &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=610638"&gt;Bug 610638&lt;/a&gt;&lt;/li&gt;&lt;li&gt;Insert image files dropped onto editable areas as data: URI image (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=609632"&gt;Bug 609632&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make dropping arbitrary image files on editable areas actually work (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=609632"&gt;Bug 609632&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add pref (notification.disabled) to disable desktop notifications (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=605370"&gt;Bug 605370&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Try to lock the main exe multiple times before giving up updating the application on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=611186"&gt;Bug 611186&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow updating when files to be patched are in use on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466778"&gt;Bug 466778&lt;/a&gt;)&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Start in Safe Mode if Shift is pressed during application startup on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=602562"&gt;Bug 602562&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not truncate print job name to only 30 characters (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531606"&gt;Bug 531606&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Always strip leading "?" from keyword search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608198"&gt;Bug 608198&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Only rewrite pluginreg.dat upon plugins list construction if there were changes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613679"&gt;Bug 613679&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Accelerate TCP connection retries in HTTP (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=592284"&gt;Bug 592284&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add a pref (dom.allowXULXBL_for_file) to enable XUL and XBL for file: scheme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595397"&gt;Bug 595397&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use proper escaping in form submission names and values and treat textareas with an empty name the way that IE handles them (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448611"&gt;Bug 448611&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not make an element invalid if the value length is higher than the maxlength value (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613021"&gt;Bug 613021&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make invalid output element block form submission (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613113"&gt;Bug 613113&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Scroll the whole selection into view, not just the focus point when finding on a page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=559993"&gt;Bug 559993&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Keep trying to scroll content into view even if it is clipped out (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=539949"&gt;Bug 539949&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fire reorder event on XUL tree when treeview is changed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=614552"&gt;Bug 614552&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Improve support for "Vary: Cookie" header (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468426"&gt;Bug 468426&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Only show "Available Updates" pane when pending updates are available (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591024"&gt;Bug 591024&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not treat body of HTTP 304 response as a HTTP/0.9 response to subsequent HTTP request (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=363109"&gt;Bug 363109&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;File fragmentation on update fix for partial updates which are by far the worst culprit (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570058"&gt;Bug 570058&lt;/a&gt;) - investigate small writes&lt;br /&gt; &lt;/li&gt;&lt;li&gt;HTTP Cache: use directory tree to store cache file (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=597224"&gt;Bug 597224&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Disable WebSockets by default (pref network.websocket.override-security-block) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616733"&gt;Bug 616733&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Disable accelerated SYN retry (workaround for &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=614677"&gt;bug 614677&lt;/a&gt; and &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=613977"&gt;bug 613977&lt;/a&gt;)&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Add architecture and list of invalid plugins to pluginreg (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616271"&gt;Bug 616271&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Only check plugin validity once (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=616271"&gt;Bug 616271&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;IndexedDB: Notifications should auto-dismiss in some circumstances (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595253"&gt;Bug 595253&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;File size of pluginreg.dat increases steadily (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620114"&gt;Bug 620114&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Shift key for safe mode conflicts with Windows shortcut key (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=619866"&gt;Bug 619866&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix editor's handling of surrogate-pair combining marks with backspace (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=332636"&gt;Bug 332636&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Report some memory information with Windows crash reports (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493779"&gt;Bug 493779&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Autoscroll stops unintentionally while page is scrolling (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=605127"&gt;Bug 605127&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Disable navigator.mozNotification by default (notification.feature.enabled pref) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=607860"&gt;Bug 607860&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not strip LFs following a pre or textarea (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=620267"&gt;Bug 620267&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent partially themed UI on first run after upgrade while using third-party theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=621475"&gt;Bug 621475&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix View By Date and Site sorting for History sidebar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=621843"&gt;Bug 621843&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix alignment of common dialog icon and text (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=608604"&gt;Bug 608604&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make arrow panels use the direction of the anchor (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=619223"&gt;Bug 619223&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove the possibility of other components breaking application update where possible (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595078"&gt;Bug 595078&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Display DirectWrite version in about:support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=624970"&gt;Bug 624970&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Present error page when someone tries to access remote XUL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=623482"&gt;Bug 623482&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make the DOM timeout clamp a pref (dom.min_timeout_value) and enforce that it is non-negative (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=625256"&gt;Bug 625256&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Show correct last modified time for local files (fix DST/UTC handling) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=377307"&gt;Bug 377307&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent FTP list parse error when list returns double space between date and file name (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=543805"&gt;Bug 543805&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Evaluate the graphics blacklist and set the per-feature "cache" prefs based on the results (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=625160"&gt;Bug 625160&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Display non-customizable menubars correctly when a lightweight theme (Persona) is applied (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=617578"&gt;Bug 617578&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Improve the position of the arrow for arrow panels (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=626605"&gt;Bug 626605&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Detect corrupt places.sqlite and replace it on next startup (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=609286"&gt;Bug 609286&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure drag and drop is not disabled when a plugin is open in another tab on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=626157"&gt;Bug 626157&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Disable hinting when printing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490475"&gt;bug 490475&lt;/a&gt;)&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Implement do-not-track HTTP header to express user intent to halt tracking across sites (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=628197"&gt;Bug 628197&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Accelerate adding and removing lines in big textareas (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=597627"&gt;Bug 597627&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add font cache size info to about:support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=629611"&gt;Bug 629611&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix preference locking by reading defaults/autoconfig/* from Omnijar as appropriate (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595522"&gt;Bug 595522&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not strip characters when using Copy Link Location (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=377392"&gt;Bug 377392&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not close pop-ups when a window is lowered while dragging (prevent Bookmarks menu from closing) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=618248"&gt;Bug 618248&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Create focus styles for split menu buttons in pop-up (doorhanger) notifications (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595271"&gt;Bug 595271&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix page context menu after dismissing notification bar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=614152"&gt;Bug 614152&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make Password Manager work with input[type=email] (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=600551"&gt;Bug 600551&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-1390792453475235534?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/1390792453475235534/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=1390792453475235534' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/1390792453475235534'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/1390792453475235534'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2011/03/beta-2-roundup.html' title='2.1 Beta 2 Roundup'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-5113535641403378630</id><published>2010-10-14T00:05:00.002+02:00</published><updated>2010-10-14T00:11:15.452+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gfx'/><category scheme='http://www.blogger.com/atom/ns#' term='plugins'/><category scheme='http://www.blogger.com/atom/ns#' term='addons'/><category scheme='http://www.blogger.com/atom/ns#' term='av'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='aus'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='history'/><category scheme='http://www.blogger.com/atom/ns#' term='ldap'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='bookmarks'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>2.1 Beta 1 Roundup</title><content type='html'>Here we go again! After three alphas, the first of two betas of SeaMonkey 2.1 is just around the corner (ETA next week). As always, the Mozilla platform progressed at a fast pace (I stopped counting the Firefox 4 betas a while ago already, but they are close to shipping another one of those as well from what I can tell). In addition to better HTML5, CSS and WebM support, faster JavaScript and Add-on Manager improvements, some attention was paid to details like adding the ability to cancel modal dialog loops, too.&lt;br /&gt;&lt;br /&gt; The list of improvements made to SeaMonkey is also quite noteworthy, though. Robert Kaiser (KaiRo) has been especially busy, bringing both the new &lt;a href="http://home.kairo.at/blog/2010-07/data_manager_1_0"&gt;Data Manager&lt;/a&gt; (which will replace the various password and permission managers in the next beta), &lt;a href="http://home.kairo.at/blog/2010-09/opensearch_support_in_seamonkey"&gt;OpenSearch support&lt;/a&gt; and a fast bookmarking icon in the location bar (similar to the star icon in Firefox) to SeaMonkey. And that is on top of the Places-based bookmarks integration and support for lightweight themes (Personas) that he added during the alpha period!&lt;br /&gt;&lt;br /&gt; In a joint effort together with the Thunderbird developers, support for building SeaMonkey with libxul was added (and is now the default) which was a prerequisite for enabling plugin crash recovery (&lt;acronym title="Out-of-Process Plugins" lang="en"&gt;OOPP&lt;/acronym&gt;). Firefox features this since version 3.6, and now we do, too. &lt;img style="width: 19px; height: 19px;" alt=":-)" src="data:image/gif;base64,R0lGODlhEwATAKIAAP//AMzMAGZmAP8zAAAAAP///wAAAAAAACH5BAEAAAUALAAAAAATABMAAANVWLrUTisyEoC1oUlFr8dQRHykFRad+Y0gdzlv86KVKdsskOUAjHu312rFK5GCRWDMJDACBKxGrTcFXTIo4CPY41QJgzAP69IWT14nWSL97DaiLVqRAAA7" /&gt;&lt;br /&gt;&lt;br /&gt; One of the biggest problems users have had with SeaMonkey was websites that rendered incorrectly, were inaccessible or otherwise misbehaved. In many cases this could be traced back to poor browser detection, a.k.a. User Agent sniffing. KaiRo has blogged about the issue multiple times in the past (e.g. in &lt;a href="http://home.kairo.at/blog/2007-12/web_discrimination_or_browser_racism"&gt;Web Discrimination Or Browser Racism?&lt;/a&gt;) and even proposed &lt;a href="http://home.kairo.at/blog/2007-06/a_possible_idea_for_user_agents"&gt;a possible solution&lt;/a&gt;. Unfortunately no-one accepted the challenge. Time went by, but no solution was found. In the end, the SeaMonkey Council faced the truth and &lt;a href="http://blog.drapostles.org/archives/49"&gt;opted for enabling a new pref by default&lt;/a&gt; that makes SeaMonkey appear like Firefox to websites that use User Agent sniffing to detect browsers. Starting with 2.1 Beta 1, SeaMonkey users should have no need to fake their User Agent string anymore. Ideally, websites should work just as well as in Firefox now.&lt;br /&gt;&lt;br /&gt; Some smaller changes include a new pref for opening new tabs relative to the current one and a Paste and Go option in the location bar. The "Report a Broken Website" functionality has been removed, mostly because it suggested that someone would take care of &lt;a href="http://reporter.mozilla.org/"&gt;the reports&lt;/a&gt; when in fact that was not the case.&lt;br /&gt;&lt;br /&gt; According to current plans, the only major feature left to be implemented for SeaMonkey 2.1 (scheduled for Beta 2 and having some larger impact on &lt;acronym title="localization" lang="en"&gt;l10n&lt;/acronym&gt;) is the integration of &lt;a href="http://www.mozilla.com/firefox/sync/"&gt;Sync&lt;/a&gt; (f.k.a. Weave). This will be very similar to what is already included in Minefield (Firefox trunk nightlies), but available from both the browser and MailNews component, paving the way for future extensions (e.g. &lt;a href="http://code.google.com/p/weave-mailnews-sync/"&gt;MailNews Sync&lt;/a&gt;, see &lt;a href="http://hariniachala.blogspot.com/"&gt;Harini's Webspace&lt;/a&gt;).&lt;br /&gt;&lt;br /&gt; Before we come to the list of notable changes between SeaMonkey 2.1 Alpha 3 and Beta 1 (see below), one more good news: The next version of the &lt;a href="https://addons.mozilla.org/addon/15003/"&gt;Add-on Compatibility Reporter&lt;/a&gt; will be compatible with SeaMonkey! Once it becomes available at &lt;acronym title="addons.mozilla.org" lang="en"&gt;AMO&lt;/acronym&gt;, give it a try and report your findings!&lt;br /&gt; &lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Progress:&lt;br /&gt;&lt;/span&gt; &lt;ul&gt;&lt;li&gt;split mail_help.xhtml to several files: almost done (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=246405"&gt;Bug 246405&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;doorhangers instead of notification bars: preliminary support (login manager) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595810"&gt;Bug 595810&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Sync integration: get Tabs sync to work for SeaMonkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=567583"&gt;Bug 567583&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;MailNews:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;add In-Reply-To or References header when forwarding a message (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=583587"&gt;Bug 583587&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;auto sync newly added messages more quickly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=562115"&gt;Bug 562115&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add account name to POP3 status message (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=66860"&gt;Bug 66860&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while copying IMAP folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531568"&gt;Bug 531568&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;stop partially downloaded messages from getting into the offline store (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572974"&gt;Bug 572974&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement getBrowser() in MailNews windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588895"&gt;Bug 588895&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make the Account Manager window resizable on all platforms (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591649"&gt;Bug 591649&lt;/a&gt;)&lt;span style="font-family: monospace;"&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;use internationalized date for printing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=294356"&gt;Bug 294356&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not scan plugin directories unnecessarily while loading messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=599119"&gt;Bug 599119&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash right after startup (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=573071"&gt;Bug 573071&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show inserted images during composition if new mail started through external mailto: call (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531437"&gt;Bug 531437&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow sending mail to postmaster (do not violate RFCs 821 and 2821) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=383739"&gt;Bug 383739&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add icons to MailNews tabs list (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=593944"&gt;Bug 593944&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to import vCards (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=79709"&gt;Bug 79709&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make all header fields tabbable, not just "Subject" and "Date" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479579"&gt;Bug 479579&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Address Book:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;remove "Check online presence (AOL)" from Address Book Tools menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594081"&gt;Bug 594081&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix LDAP searching (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=585917"&gt;Bug 585917&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Bookmarks:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;show special icon for Unsorted Bookmarks entry in menu of Bookmarks button in Personal Toolbar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=586056"&gt;Bug 586056&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;provide a fast bookmarking button in the location bar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=589601"&gt;Bug 589601&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Download Manager:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;make Pause button work in Download Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588351"&gt;Bug 588351&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent downloads from being stored in the cache (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=55307"&gt;Bug 55307&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;internationalize decimal separator in Download Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=597852"&gt;Bug 597852&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;Help:&lt;/span&gt;  &lt;ul&gt;&lt;li&gt;update Help for the new location of the 'Check for Updates' menu item (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=597172"&gt;Bug 597172&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Audio/Video:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;support Audio Data API: Get, Manipulate, Play &amp;amp; Save (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490705"&gt;Bug 490705&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not assume first WebM track is video (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=596111"&gt;Bug 596111&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement buffered support for WebM (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570904"&gt;Bug 570904&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Troubleshooting Information:&lt;/span&gt;&lt;br /&gt; &lt;ul&gt;&lt;li&gt;add User Agent to about:support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591776"&gt;Bug 591776&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add the ability for a DOM window to tell when it is accelerated and show that in about:support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590841"&gt;Bug 590841&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;expose Graphics feature status block reason in about:support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=600620"&gt;Bug 600620&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Preferences:&lt;/span&gt;&lt;br /&gt; &lt;ul&gt;&lt;li&gt;add pref (mailnews.ui.deleteMarksRead) to allow restoring old behavior of Move to Trash (do not mark as read) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465116"&gt;Bug 465116&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to configure whether to open tabs relative to the current one (browser.tabs.insertRelatedAfterCurrent pref) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588122"&gt;Bug 588122&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove support for appending arbitrary data to the User Agent string via general.useragent.extra.* prefs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581008"&gt;Bug 581008&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pref (gfx.direct2d.disabled) to unconditionally disable Direct2D (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590335"&gt;Bug 590335&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pref (layers.prefer-opengl) to enable OpenGL on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=593093"&gt;Bug 593093&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove general.useragent.extra User Agent pref, add UI for general.useragent.compatMode.firefox and turn it on by default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591327"&gt;Bug 591327&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support signed updates in SeaMonkey (new prefs, e.g. app.update.log) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=593135"&gt;Bug 593135&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable WebGL by default (pref webgl.enabled_for_all_sites), excluding Linux x64 for now (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=596720"&gt;Bug 596720&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;turn on Direct3D accelerated layers (layers.accelerate-all pref) by default on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581212"&gt;Bug 581212&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow turning on Direct3D 10 layers through a pref (layers.use-d3d10) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546514"&gt;Bug 546514&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;adjust IPC prefs for PPC/i386 universal build&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt; (new prefix is dom.ipc.plugins.enabled.i386) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=600378"&gt;Bug 600378&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable SSL false start (security.ssl.enable_false_start pref) by default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591523"&gt;Bug 591523&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ignore middlemouse.contentLoadURL if general.autoScroll is true (middle-clicking to stop autoscroll should not activate clipboard address loading) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=534248"&gt;Bug 534248&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;if dom.disable_window_flip pref is true, block .blur() and .focus() if opener is different from the caller (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=369306"&gt;Bug 369306&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow applications to specify the first update timer interval via a pref (app.update.timerFirstInterval) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594986"&gt;Bug 594986&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Add-ons:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;integrate Add-on Manager with browser session history (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=562797"&gt;Bug 562797&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update compatibility information for installed add-ons when the application is upgraded (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=557956"&gt;Bug 557956&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add install button to the Add-on Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=567127"&gt;Bug 567127&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;visually differentiate between installed add-ons and available add-ons in list of search results (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581084"&gt;Bug 581084&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow undo of uninstalling disabled add-ons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=585339"&gt;Bug 585339&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;expose outdated plugins in Add-on Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=563135"&gt;Bug 563135&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not report add-ons as incompatible if they are already incompatible with the current version (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=592785"&gt;Bug 592785&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add context-related state change entries to context menu of add-ons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591465"&gt;Bug 591465&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not extract extensions into profile directory, but install/store as XPI file (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=533038"&gt;Bug 533038&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove the "Check for Updates Automatically" menu item from the Add-on Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595744"&gt;Bug 595744&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add loading and error states to the Get Add-ons view (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601143"&gt;Bug 601143&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow installing add-ons from FTP servers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=599158"&gt;Bug 599158&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show the compatibility dialog for new profiles (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588440"&gt;Bug 588440&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename the Themes pane to Appearance (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=565300"&gt;Bug 565300&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support specifying an XPI hash through the initial HTTPS request such that redirects to HTTP can be followed securely (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591070"&gt;Bug 591070&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow installs and updates from non-built in certificate (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435743"&gt;Bug 435743&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;provide ability "Update all now" within 'Available Updates' screen (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=587970"&gt;Bug 587970&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show thumbnails instead of full screenshot in detail view (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=593217"&gt;Bug 593217&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make installTrigger function available in IFRAMEs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=589598"&gt;Bug 589598&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Remove buttons easier to discover in list view (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590201"&gt;Bug 590201&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;CSS:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;implement the CSS3 pseudo-classes :required and :optional for HTML (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506554"&gt;Bug 506554&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change valid/invalid form elements state to use CSS3 pseudo-classes :valid and :invalid (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558788"&gt;Bug 558788&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for calc() to 'vertical-align', 'text-indent', '{margin,padding}-{top,right,bottom,left}' and '-moz-margin-{start,end}', -moz-border-radius and -moz-outline-radius properties (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=585715"&gt;Bug 585715&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add calc() support for outline-width and column-gap (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=363249"&gt;Bug 363249&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support calc() on background-position, background-size, -moz-transform-origin, and background-image gradient stop positions. (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594934"&gt;Bug 594934&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove support for min() and max() in calc() (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=363249"&gt;Bug 363249&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement :-moz-submit-invalid pseudo-class applying on submit buttons when the form is invalid (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580575"&gt;Bug 580575&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename -moz-box-shadow to box-shadow (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590039"&gt;Bug 590039&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add -moz-device-pixel-ratio media query (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474356"&gt;Bug 474356&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt; &lt;span id="short_desc_nonedit_display"&gt;change -moz-border-radius* properties to css3-background names&lt;/span&gt;&lt;/span&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451134"&gt;Bug 451134&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;HTML5:&lt;br /&gt;&lt;/span&gt; &lt;ul&gt;&lt;li&gt;implement list attribute (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=556007"&gt;Bug 556007&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement datalist element (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=555840"&gt;Bug 555840&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement formaction for input and button elements (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566160"&gt;Bug 566160&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement input type="email" &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=555559"&gt;(Bug 555559&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement pattern attribute for input elements (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=345512"&gt;Bug 345512&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement input type="url" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=344615"&gt;Bug 344615&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement required attribute (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=345822"&gt;Bug 345822&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement HTML 5's Constraint Validation API (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=345624"&gt;Bug 345624&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement formtarget for input and button which override form target attribute (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566064"&gt;Bug 566064&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement @formmethod and @formenctype (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=582412"&gt;Bug 582412&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement form attribute (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588683"&gt;Bug 588683&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement formnovalidate attribute for submit controls (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=589696"&gt;Bug 589696&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt; &lt;span id="short_desc_nonedit_display"&gt;implement fieldset element disabled attribute&lt;/span&gt;&lt;/span&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=557087"&gt;Bug 557087&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement novalidate attribute for form elements (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=556013"&gt;Bug 556013&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;filter items shown in list dropdown with current field value by default; use mozNoFilter attribute to disable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595067"&gt;Bug 595067&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove PUT and DELETE form methods (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=600813"&gt;Bug 600813&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add UI for invalidformsubmit (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=599745"&gt;Bug 599745&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Linux:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;reformat x86-on-x86_64 part of Linux User Agent string (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590258"&gt;Bug 590258&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement bilinear filtering of upscaled images for Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=422179"&gt;Bug 422179&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;scrollboxes should use native scroll arrow (Default theme) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=585935"&gt;Bug 585935&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Mac:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;allow to open Bookmark Manager if all windows are closed on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=586363"&gt;Bug 586363&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to open Add-on Manager if all windows are closed on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=586360"&gt;Bug 586360&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Compiling:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;require version 2.5 of python (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=550959"&gt;Bug 550959&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;end-of-life Python 2.4 for build support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=599743"&gt;Bug 599743&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;automatically set TOPSRCDIR and MOZ_OBJDIR when using pymake (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=592575"&gt;Bug 592575&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add -s (silent) support to pymake (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=542582"&gt;Bug 542582&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove options from configure (e.g. --disable-view-source, --disable-jsloader and --disable-inspector-apis) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546177"&gt;Bug 546177&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let build system honor --disable-printing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=362455"&gt;Bug 362455&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let client.mk define MOZ_OBJDIR if it is not set (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=589507"&gt;Bug 589507&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use YASM to compile libvpx on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=583849"&gt;Bug 583849&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;error out on packaging if not using libxul (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=598644"&gt;Bug 598644&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove wifi scanning code on Windows for versions less than XP SP3 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=600235"&gt;Bug 600235&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;General:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;implement a Data Manager unifying cookie, permission, password, and form data management (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=569341"&gt;Bug 569341&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add OpenSearch support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=410613"&gt;Bug 410613&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add "Paste and Go" to the context menu of the location bar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=599833"&gt;Bug 599833&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow deselecting optional installer components (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590575"&gt;Bug 590575&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Find Again work when Find As You Type isn't using the find bar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=97023"&gt;Bug 97023&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reuse empty tabs for loading content (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=589659"&gt;Bug 589659&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Alt+Home keyboard shortcut work again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=587398"&gt;Bug 587398&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make keywords matching case insensitive again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590081"&gt;Bug 590081&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove Reporter from SeaMonkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590102"&gt;Bug 590102&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove compreg/xpti.dat at the right location (&lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594571"&gt;Bug 594571&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash if source profile is not available during migration (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601347"&gt;Bug 601347&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support linking application components into libxul (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=597465"&gt;Bug 597465&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;switch to a default configuration of libxul with all comm-central libs being linked into libxul (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=394502"&gt;Bug 394502&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use out-of-process-plugins (OOPP) framework in SeaMonkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=545716"&gt;Bug 545716&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;link JS staticially for libxul builds, only currently supported on non-Windows platforms (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=601128"&gt;Bug 601128&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make notifications from sidebar documents work again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=589910"&gt;Bug 589910&lt;/a&gt;)&lt;br /&gt;  &lt;/li&gt;&lt;li&gt;make clearing cache on shutdown work again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580892"&gt;Bug 580892&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make drop down menus for back and forward buttons middle-/Ctrl-clickable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=529240"&gt;Bug 529240&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;save media resources when doing 'Save As' on a page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449141"&gt;Bug 449141&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display external URIs correctly while they load (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=586340"&gt;Bug 586340&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show new prefs in about:config while a filter is applied (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=251431"&gt;Bug 251431&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show the default cursor for disabled splitters (Default theme) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=589570"&gt;Bug 589570&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable XUL for pages, unless user specifically opts in for domain (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546857"&gt;Bug 546857&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement moz-device: protocol handler (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=507749"&gt;Bug 507749&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable basic stereoscopic rendering support for Direct3D 9 layers with 3D Vision (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=584255"&gt;Bug 584255&lt;/a&gt;)&lt;br /&gt;  &lt;/li&gt;&lt;li&gt;implement Strict-Transport-Security (was: ForceTLS) &lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;to allow sites to specify HTTPS-only connections&lt;/span&gt;&lt;/span&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495115"&gt;Bug 495115&lt;/a&gt;,       &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590825"&gt;Bug 590825&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure restart after closing application from fullscreen mode displays fullscreen UI (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=575195"&gt;Bug 575195&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow file input .click() to bring up filepicker (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=36619"&gt;Bug 36619&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;notify user when the certificate attribute check fails during application update (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=583408"&gt;Bug 583408&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;after several background update check failures, notify user that check for new version should be done manually (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595455"&gt;Bug 595455&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rework Windows installer for 64 bit (install into 'Program Files', write to 64 bit registry hives, etc.) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=568949"&gt;Bug 568949&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable hardware acceleration in Safe Mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=591139"&gt;Bug 591139&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;lower threshold for large cache entry eviction: &lt;/span&gt;&lt;/span&gt;set max cache entry size to be MIN(5MB, 1/8 cache capacity) (was: 64 MB/2) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=81640"&gt;Bug 81640&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;skip caching if Content-Length is greater than eviction size (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=588507"&gt;Bug 588507&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;raise cookies per basedomain limit to 150 (was: 50) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590611"&gt;Bug 590611&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make SSL pages work when using NTLM proxy (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=592197"&gt;Bug 592197&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make running application with "-profile /tmp/newdir" work again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581182"&gt;Bug 581182&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make -1 as port number fail to load instead of causing default port to be used (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537381"&gt;Bug 537381&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make disabled selects with size and multiple still look disabled (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=594737"&gt;Bug 594737&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;give users a way out of inifinite modal dialog loops (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=61098"&gt;Bug 61098&lt;/a&gt;)&lt;br /&gt;  &lt;/li&gt;&lt;li&gt;port duplicateTabIn function (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=595483"&gt;Bug 595483&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;apply Persona/lwtheme correctly to sidebar headers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581382"&gt;Bug 581382&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix some missed issues regarding Personas and sidebar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=599621"&gt;Bug 599621&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make it possible to undo close tab synchronously after closing tab (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=528582"&gt;Bug 528582&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not insert non-breaking spaces when multiple spaces typed in pre-wrap-styled text (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=592592"&gt;Bug 592592&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make maxlength in textarea prevent newline characters from being inserted (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=590554"&gt;Bug 590554&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ability to paste HTML as plain text (shortcut Cmd+Option+Shift+V on Mac) in contenteditable areas (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=410986"&gt;Bug 410986&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-5113535641403378630?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/5113535641403378630/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=5113535641403378630' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/5113535641403378630'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/5113535641403378630'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2010/10/21-beta-1-roundup.html' title='2.1 Beta 1 Roundup'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-7384117019654002794</id><published>2010-08-27T00:44:00.002+02:00</published><updated>2010-08-27T00:46:30.450+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='addons'/><category scheme='http://www.blogger.com/atom/ns#' term='svg'/><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='av'/><category scheme='http://www.blogger.com/atom/ns#' term='ui'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='aus'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='venkman'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='bookmarks'/><category scheme='http://www.blogger.com/atom/ns#' term='domi'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>2.1 Alpha 3 Roundup</title><content type='html'>Here it is, with a small delay: The SeaMonkey 2.1 Alpha 3 Roundup.&lt;br /&gt;&lt;br /&gt;Since the last alpha, some major changes appeared on trunk. KaiRo was especially busy, landing both &lt;a href="http://home.kairo.at/?d=w&amp;amp;i=1&amp;amp;m=v&amp;amp;f.tags=places"&gt;Places-based bookmarks&lt;/a&gt; and&lt;a href="http://home.kairo.at/?d=w&amp;amp;i=1&amp;amp;m=v&amp;amp;f.tags=lwtheme"&gt; Lightweight Themes (Personas)&lt;/a&gt; support for the browser, and his &lt;a href="http://home.kairo.at/?d=w&amp;amp;i=1&amp;amp;m=v&amp;amp;f.tags=Data+Manager"&gt;Data Manager&lt;/a&gt; integration has already gone through several reviews. As always, the &lt;a href="https://wiki.mozilla.org/SeaMonkey:Features:2.1"&gt;SeaMonkey 2.1 features&lt;/a&gt; page gives a good impression of the overall progress.&lt;br /&gt;&lt;br /&gt;Developers will surely appreciate that the JavaScript Debugger (Venkman) is usable again after the &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=568691"&gt;XPCOM components registration changes&lt;/a&gt; broke it.&lt;br /&gt;&lt;br /&gt;For the platform changes, have a look at the Firefox Beta release notes (&lt;a href="http://www.mozilla.com/en-US/firefox/4.0b2/releasenotes/"&gt;b2&lt;/a&gt;, &lt;a href="http://www.mozilla.com/en-US/firefox/4.0b3/releasenotes/"&gt;b3&lt;/a&gt;, &lt;a href="http://www.mozilla.com/en-US/firefox/4.0b4/releasenotes/"&gt;b4&lt;/a&gt;).&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;&lt;br /&gt;Progress:&lt;br /&gt;&lt;/span&gt; &lt;ul&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;use out-of-process plugins (OOPP) framework in SeaMonkey (&lt;/span&gt;&lt;/span&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=545716"&gt;Bug 545716&lt;/a&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;):&lt;/span&gt;&lt;/span&gt; convert MailNews to the external API (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=377319"&gt;Bug 377319&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;split mail_help.xhtml to several files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=246405"&gt;Bug 246405&lt;/a&gt;): Preferences, Account Settings, Working Offline&lt;/li&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt;e&lt;span id="short_desc_nonedit_display"&gt;xpose camera functionality to web content (&lt;/span&gt;&lt;/span&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451674"&gt;Bug 451674&lt;/a&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;): &lt;/span&gt;&lt;/span&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;add camera button to file input elements&lt;/span&gt;&lt;/span&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=567323"&gt;Bug 567323&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable Bookmarks with the Sync add-on (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=585845"&gt;Bug 585845&lt;/a&gt;): the &lt;a href="http://home.kairo.at/blog/2010-08/places_bookmarks_landed_in_seamonkey"&gt;bookmarks system has been reworked&lt;/a&gt; to use the Places framework shared with Firefox (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=498596"&gt;Bug 498596&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable Tabs with the Sync add-on (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=567583"&gt;Bug 567583&lt;/a&gt;): implemented methods of the Firefox TabBrowser API (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558614"&gt;Bug 558614&lt;/a&gt;, &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558673"&gt;Bug 558673&lt;/a&gt;, &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579845"&gt;Bug 579845&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt;p&lt;span id="short_desc_nonedit_display"&gt;ort Sync UI to SeaMonkey (&lt;/span&gt;&lt;/span&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=576970"&gt;Bug 576970&lt;/a&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;): landed &lt;/span&gt;&lt;/span&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;&lt;/span&gt;&lt;/span&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=571902"&gt;Bug 571902&lt;/a&gt;) &lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;and enabled (&lt;/span&gt;&lt;/span&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=571896"&gt;Bug 571896&lt;/a&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;) &lt;/span&gt;&lt;/span&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;on Firefox trunk&lt;/span&gt;&lt;/span&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;&lt;/span&gt;&lt;/span&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;&lt;br /&gt;    &lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;make SeaMonkey build with libxul (&lt;/span&gt;&lt;/span&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=394502"&gt;Bug 394502&lt;/a&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;): &lt;/span&gt;&lt;/span&gt;build xpfe autocomplete from comm-central build.mk files instead of mozilla/ (&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;&lt;/span&gt;&lt;/span&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450781"&gt;Bug 450781&lt;/a&gt;)&lt;br /&gt;  &lt;/li&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="alias_nonedit_display"&gt;&lt;/span&gt;&lt;span id="short_desc_nonedit_display"&gt;implement Indexed Database API (&lt;/span&gt;&lt;/span&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=553412"&gt;Bug 553412&lt;/a&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;): asynchronous API implemented&lt;/span&gt;&lt;/span&gt;&lt;/li&gt;&lt;li&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;Direct2D (D2D) support: enabled in nightlies (&lt;/span&gt;&lt;/span&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=549116"&gt;Bug 549116&lt;/a&gt;&lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;), status &lt;/span&gt;&lt;/span&gt;exposed to about:support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=587102"&gt;Bug 587102&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;set correct file permissions when saving or detaching an attachment (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=533976"&gt;Bug 533976&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;if SMTP server doesn't advertise auth mechanisms, try to send mail directly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=534158"&gt;Bug 534158&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add option to keep the folders structure when archiving (no configuration UI yet, pref example: mail.server.server1.archive_keep_folder_structure) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=573392"&gt;Bug 573392&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not display return receipt notification bar for local mail after the first time the user responds to the request (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558543"&gt;Bug 558543&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix pasting images into the Compose window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572637"&gt;Bug 572637&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure clicking Get Mail for POP twice or during startup (while first round not finished) does not show alert "This folder is being processed. Please wait until processing is complete to get messages." (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=392680"&gt;Bug 392680&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure setting POP/IMAP port to the default value for the security setting that is not selected does not get reset (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580764"&gt;Bug 580764&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure importing HTML mail from Outlook does not import emails as plain text (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=250878"&gt;Bug 250878&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix loading multipart/mixed messages from the memory/disk cache (non-offline IMAP) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=565852"&gt;Bug 565852&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not fetch audio parts inline when doing IMAP mime parts on demand (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=584523"&gt;Bug 584523&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure title value of HTML signature file does not show up in signature (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572290"&gt;Bug 572290&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure imported Japanese email from Outlook does not show as garbled text (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=547119"&gt;Bug 547119&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure to display multipart/alternative messages with inline part and text/plain part (when name of Content-Type and/or filename of Content-Disposition: inline is specified for mail body part with text/xxx in multipart/alternative) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=551698"&gt;Bug 551698&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix handling of stat errors and do not stat noselect folders when checking individual folders for new messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581707"&gt;Bug 581707&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix saving authentication method "normal password" as a preference (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580270"&gt;Bug 580270&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Address Book:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;make Address Book toolbars customizable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=575956"&gt;Bug 575956&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Bookmarks:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;remove old bookmarks system code (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580663"&gt;Bug 580663&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add management UI for Places-based bookmarks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580662"&gt;Bug 580662&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;switch browser UI to Places-based bookmarks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580660"&gt;Bug 580660&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;initialize and migrate Places-based bookmarks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580658"&gt;Bug 580658&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add new Places core for bookmarks (and history) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=580656"&gt;Bug 580656&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make the Modern theme work nicely with Places-based bookmarks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=584752"&gt;Bug 584752&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove double separator in menu of Bookmarks button in the Personal Toolbar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=586050"&gt;Bug 586050&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Download Manager:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;make sure executing files via the Download Manager causes Win7 compatibility mode to apply to the downloaded file and not the application (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=567497"&gt;Bug 567497&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Help:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;update Help for new Link Behavior preference panel (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=574609"&gt;Bug 574609&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove references to nonexistent IDs from Help (excluding those of two follow-up bugs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=582710"&gt;Bug 582710&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;DOM Inspector:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;fix menu bar keyboard navigation issue (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=346725"&gt;Bug 346725&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make strings in the XBL Bindings viewer easier to read (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=586149"&gt;Bug 586149&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;JavaScript Debugger (Venkman):&lt;/span&gt; &lt;ul&gt;&lt;li&gt;load script source for files loaded by mozIJSSubScriptLoader.loadSubScript (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449673"&gt;Bug 449673&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update for the new component registration world (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=576869"&gt;Bug 576869&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix Display Profile Data to actually show something (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460633"&gt;Bug 460633&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display array elements in sequence when an array is expanded (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=213494"&gt;Bug 213494&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;exclude add-on components when excluding chrome files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=356267"&gt;Bug 356267&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Audio/Video:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;implement the accept attribute for audio/*, video/* (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=565272"&gt;Bug 565272&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;buffer non-autobuffer videos upon first playback to ensure smooth playback (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=543769"&gt;Bug 543769&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;send correct Accept header when requesting video and audio resources (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=489071"&gt;Bug 489071&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix sound output via libesd if no esound daemon is running (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579877"&gt;Bug 579877&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Ogg support for HTMLMediaElement.buffered (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462957"&gt;Bug 462957&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add WAV support for HTMLMediaElement.buffered (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462957"&gt;Bug 462957&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add on* event handler property support for media events (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=569301"&gt;Bug 569301&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Preferences:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;move the Link Behaviour preferences from the tabs pane to a separate pane (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570970"&gt;Bug 570970&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove redundant pref-offline UI which was commented out since 2001 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=577514"&gt;Bug 577514&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;perform case-insensitive comparison in the Add Languages dialog (e.g. find match between "en-US", set via intl.accept_languages, and "en-us") (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=370387"&gt;Bug 370387&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Add-on Manager:&lt;br /&gt;&lt;/span&gt; &lt;ul&gt;&lt;li&gt;show Language category if there are no locale packs installed but some are pending install (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572561"&gt;Bug 572561&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;place Preferences button for add-ons in the entry of the digest view (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=562890"&gt;Bug 562890&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show version number in the list view for all types of add-ons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=562052"&gt;Bug 562052&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make ratings display-only (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=567131"&gt;Bug 567131&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;notify the application when add-on installs triggered by webpages fail or complete (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=552965"&gt;Bug 552965&lt;/a&gt;, &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=553455"&gt;Bug 553455&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for searching add-ons on AMO via the search bar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558287"&gt;Bug 558287&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show Add-on Manager multiple times (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566593"&gt;Bug 566593&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support multi-package XPIs in the new add-ons manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=552742"&gt;Bug 552742&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement the &lt;a href="https://bug562622.bugzilla.mozilla.org/attachment.cgi?id=442478"&gt;automatic vs. manual update design mockup&lt;/a&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=562622"&gt;Bug 562622&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Linux:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;make dragging the menubar drag the window on GTK themes where that should work (and also fix GTK resize drags to initialize drag better) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566480"&gt;Bug 566480&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add a scriptable interface to operating-system performance measurement APIs (Linux only for now) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=568863"&gt;Bug 568863&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Mac:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;make lightweight themes / Personas work with the browser on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579737"&gt;Bug 579737&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix query icon for new Places UI (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=586026"&gt;Bug 586026&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add toggletoolbar=true to the windows that should have a Mac toolbar toggle pill (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=536904"&gt;Bug 536904&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;add --disable-webm besides --disable-wave and --disable-ogg to configure for non-audio environment (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572635"&gt;Bug 572635&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add -r/--rev option to control tag/revision to pull in client.py (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=556394"&gt;Bug 556394&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make it even easier to build with pymake (set MOZ_OBJDIR and detect TOPSRCDIR automatically) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572529"&gt;Bug 572529&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add configure option (--with-ccache) to use ccache (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=577636"&gt;Bug 577636&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make --with-ccache more powerful (add ability to detect ccache automatically) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579704"&gt;Bug 579704&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;require yasm for architectures where we have code for it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=582955"&gt;Bug 582955&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add jemalloc support for Windows x64 build (VC 2005/2008) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572937"&gt;Bug 572937&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use showIncludes for a substantial build perf win with pymake (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518136"&gt;Bug 518136&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;default to tabbed browsing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505311"&gt;Bug 505311&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change Restart dialog button labels from Cancel/Restart to Restart Later/Now (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=561176"&gt;Bug 561176&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make lightweight themes / Personas work with the browser window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=563261"&gt;Bug 563261&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make the tab bar look better in the default theme, including lightweight themes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579732"&gt;Bug 579732&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve the security button look in the default theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579731"&gt;Bug 579731&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;default to Find toolbar instead of inline FAYT/Find dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=97023"&gt;Bug 97023&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;focus FAYT/Find on correct tab so that it returns correct results (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=584630"&gt;Bug 584630&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure making changes in Page Info Permissions take effect on HTTPS sites (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579747"&gt;Bug 579747&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;draw Page Info tabs correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581686"&gt;Bug 581686&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove gopher references from SeaMonkey code (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572389"&gt;Bug 572389&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make about: link the SeaMonkey website and release notes, override Toolkit's about: (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=555939"&gt;Bug 555939&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make tabbrowser tell Gecko which tab is active and which is not (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=585264"&gt;Bug 585264&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;load favicon images into faviconService when allowed to (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=585515"&gt;Bug 585515&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure favicons are set on the right tab (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=585511"&gt;Bug 585511&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Platform:&lt;br /&gt;&lt;/span&gt; &lt;ul&gt;&lt;li&gt;add error console logging for missing/incorrect command-line handlers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579497"&gt;Bug 579497&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use GDI shaper by default on Windows XP and handle bitmap fonts better (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=561304"&gt;Bug 561304&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ignore 'www.' when searching in the location bar (strip out www. from found URLs and the query after already stripping off http:// etc. (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461483"&gt;Bug 461483&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure windows are never movable in fullscreen mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=574861"&gt;Bug 574861&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;bump Gecko version to 2.0x (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570022"&gt;Bug 570022&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;switch back to the default theme if the previous theme is made incompatible by an application update (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=565064"&gt;Bug 565064&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove xpti.dat caching which harms us in runtime and code complexity (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570488"&gt;Bug 570488&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make about:cache and about:cache-entry pretty (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=538813"&gt;Bug 538813&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not send the useless crypto token in the UA string (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572668"&gt;Bug 572668&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove the UI language from the UA string and navigator.appVersion (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572656"&gt;Bug 572656&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove "Windows;" from the UA string (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=581783"&gt;Bug 581783&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;a tag with target attribute and window.open('foo', 'bar') should not be treated identically by browser.link.restriction (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=351235"&gt;Bug 351235&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change -moz-resize to resize (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=553576"&gt;Bug 553576&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not create temporary moz-screenshot.jpg when pasting images into rich text editors (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490879"&gt;Bug 490879&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not hard code get_discard_timer_ms, use a pref (image.mem.min_discard_timeout_ms) instead (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478398"&gt;Bug 478398&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement -moz-font-feature-settings and -moz-font-language-override in CSS (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=511339"&gt;Bug 511339&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reorder size and position events in nsXULWindow so windows are positioned before they are shown (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=574690"&gt;Bug 574690&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement the SVG load event in text/html, make the SVG load event in XML async and only supported on svg tag (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=552938"&gt;Bug 552938&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;check X-Frame-Options header and redirect to about:blank if need be (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475530"&gt;Bug 475530&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;split about:memory reporting into more detailed sections for SQLite (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=575667"&gt;Bug 575667&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up createElement() (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566466"&gt;Bug 566466&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support undo uninstall for restartless and already disabled add-ons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=553494"&gt;Bug 553494&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement -moz-appearance: button-arrow-up/down/next/previous (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=412773"&gt;Bug 412773&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support TrueType kerning in the harfbuzz font shaper back-end (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=575695"&gt;Bug 575695&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support a.text as defined in HTML5 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=573258"&gt;Bug 573258&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for signed AUS update snippet (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=544442"&gt;Bug 544442&lt;/a&gt;)&lt;br /&gt;  &lt;/li&gt;&lt;li&gt;implement the HTML5 hidden attribute (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=567663"&gt;Bug 567663&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add experimental MozTouch events (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508906"&gt;Bug 508906&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not trigger multiple Master Password prompts when filling form logins in multiple tab (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=499233"&gt;Bug 499233&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make InstallTrigger support cross-process communication (asynchronous with an optional callback) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=550936"&gt;Bug 550936&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable TLS false start by default and add a pref (security.ssl.enable_false_start) to disable it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=583908"&gt;Bug 583908&lt;/a&gt;)&lt;br /&gt;  &lt;/li&gt;&lt;li&gt;prevent a body-less window (title bar only) from appearing at the upper left corner of the screen (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=579421"&gt;Bug 579421&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent toolbar elements from losing the command attribute when removing and reinserting them (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=540838"&gt;Bug 540838&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable WebGL shader validation and remove obsolete texture API (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=584815"&gt;Bug 584815&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ANGLE/D3D WebGL support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=583838"&gt;Bug 583838&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pref (accessibility.mouse_focuses_formcontrol) to allow form elements to be focused when clicked (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=577316"&gt;Bug 577316&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make pc, in, mm and cm be a fixed number of CSS pixels (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537890"&gt;Bug 537890&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-7384117019654002794?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/7384117019654002794/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=7384117019654002794' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/7384117019654002794'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/7384117019654002794'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2010/08/21-alpha-3-roundup.html' title='2.1 Alpha 3 Roundup'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-6408369339447718947</id><published>2010-07-12T01:46:00.001+02:00</published><updated>2010-07-12T01:48:51.758+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gfx'/><category scheme='http://www.blogger.com/atom/ns#' term='addons'/><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='av'/><category scheme='http://www.blogger.com/atom/ns#' term='mathml'/><category scheme='http://www.blogger.com/atom/ns#' term='ui'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='history'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>2.1 Alpha 2 Roundup</title><content type='html'>So, now that the distraction has come to an end (congratulations, Spain!), back to business. SeaMonkey (and Thunderbird) trunk has been broken for the last week or so due to the &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=568691"&gt;XPCOM components registration changes&lt;/a&gt;. The tree is still closed, but it looks much better now than in the past few days. Time to add some more &lt;a href="https://wiki.mozilla.org/SeaMonkey:Features:2.1"&gt;SeaMonkey 2.1 features&lt;/a&gt;!&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Upcoming:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="http://home.kairo.at/?d=w&amp;amp;i=1&amp;amp;m=v&amp;amp;f.tags=places"&gt;Places-based bookmarks&lt;/a&gt;&lt;/li&gt;&lt;li&gt;&lt;a href="http://home.kairo.at/?d=w&amp;amp;i=1&amp;amp;m=v&amp;amp;f.tags=lwtheme"&gt;Lightweight Themes (Personas)&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;li&gt;&lt;a href="http://home.kairo.at/?d=w&amp;amp;i=1&amp;amp;m=v&amp;amp;f.tags=Data+Manager"&gt;Data Manager&lt;/a&gt;&lt;br /&gt; &lt;/li&gt;&lt;/ul&gt;  Otherwise, &lt;a href="http://www.seamonkey-project.org/releases/seamonkey2.1a2/"&gt;SeaMonkey 2.1 Alpha 2&lt;/a&gt; has been released. The following is an overview of noteworthy changes contained in that release. Also have a look at the &lt;a href="http://www.mozilla.com/en-US/firefox/4.0b1/releasenotes/"&gt;Firefox 4 Beta 1 release notes&lt;/a&gt; for some more platform changes.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Notable Changes:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;The Add-on Manager has been rewritten and now opens within a new tab or browser window. Read &lt;a href="http://www.oxymoronical.com/blog/tag/extension-manager"&gt;Mossop's blog&lt;/a&gt; for more information.&lt;/li&gt;&lt;li&gt;The video back-end now supports WebM/VP8 (use yasm if compiling on Linux!).&lt;br /&gt; &lt;/li&gt;&lt;li&gt;The Troubleshooting Information page (about:support), which features a short-hand for accessing your profile folder, can now be opened from the Help menu (not the Tools menu, as mentioned in the 2.1 Alpha 1 Roundup).&lt;/li&gt;&lt;li&gt;The Download Manager now allows your to drag files and URLs to and from it, e.g. to the desktop or Explorer window.&lt;/li&gt;&lt;li&gt;The View Source window includes a Find Bar now, like the one in the Help viewer and Firefox, but at the top of the window.&lt;br /&gt; &lt;/li&gt;&lt;li&gt;The MailNews components now supports saving multiple messages as individual files in a directory.&lt;/li&gt;&lt;li&gt;The MailNews thread pane and other trees now feature alternating backgrounds on Mac and Linux.&lt;br /&gt; &lt;/li&gt;&lt;li&gt;The MailNews Search toolbar is gone, in favor of elements that can be used in customizable toolbars. The bar might eventually return (cf. Thunderbird's &lt;span style="text-decoration: underline;"&gt;&lt;/span&gt;&lt;a href="http://mozillalabs.com/messaging/quick-filter/"&gt;Quick Filter&lt;/a&gt; bar), but for now its elements have been moved to an own, full-sized toolbar (which can of course be disabled and all its elements be moved to other toolbars).&lt;/li&gt;&lt;li&gt;The Search and Go browser buttons are customizable now, too.&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Gopher is gone.&lt;br /&gt; &lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Progress:&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=545716" title="NEW - Use out-of-process-plugins (OOPP) framework in SeaMonkey"&gt;OOPP&lt;/a&gt; prerequisite: &lt;span id="summary_alias_container"&gt;&lt;span id="short_desc_nonedit_display"&gt;Convert mailnews to frozen/external linkages&lt;/span&gt;&lt;/span&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=377319"&gt;Bug 377319&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515734"&gt;Windows 7 taskbar support&lt;/a&gt; prerequisite: Support setting AppUserModelID per top level window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=560846"&gt;Bug 560846&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;MailNews:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Process attachments with "Content-Type:" line containing a line break properly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=543813"&gt;Bug 543813&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix reordering of newsgroups using drag &amp;amp; drop: Port d&amp;amp;d code from TB, introducing Services.jsm to SeaMonkey MailNews (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=556887"&gt;Bug 556887&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix getting POP3 mail after resuming from sleep mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466933"&gt;Bug 466933&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Format large numbers in main window message size (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=516787"&gt;Bug 516787&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not retry IMAP move copies since that most likely will result in duplicates (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=403603"&gt;Bug 403603&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure HTML editor does not delete lines below Return on certain emails composed in Outlook 2003 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=554806"&gt;Bug 554806&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure irregular message updates header pane on message view ('undisclosed-recipients' should show up) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=549931"&gt;Bug 549931&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix crash when POP3 server closed connection while trying to show a password prompt (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=556249"&gt;Bug 556249&lt;/a&gt;)&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Fix saving IMAP drafts offline on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=397910"&gt;Bug 397910&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Fix accessing third account and local mail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=397744"&gt;Bug 397744&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add ability to save multiple messages as individual files in directory (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=555972"&gt;Bug 555972&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use custom icon for Go -&gt; Local Folders -&gt; Outbox (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475509"&gt;Bug 475509&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make Search, Folder Location and Views widgets for MailNews customizable toolbars (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521927"&gt;Bug 521927&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prompt for client certificate password when making TLS connection to IMAP server (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=568929"&gt;Bug 568929&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make message copy action to IMAP on incoming POP3 mail succeed with quarantining turned on for antivirus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=387361"&gt;Bug 387361&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make replay of offline IMAP operations succeed if the network connection is down when going online (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=567773"&gt;Bug 567773&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure signature of previously selected account is removed when switching between accounts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566825"&gt;Bug 566825&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove duplicate certificate in chain from S/MIME signed emails (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=354273"&gt;Bug 354273&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use correct date for mail imported from Outlook Sent folder (avoid timezone confusion) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=309932"&gt;Bug 309932&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make the internal archiving code work for any set of messages, thus being nicer to extensions (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570578"&gt;Bug 570578&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make archiving of read-only folders do a copy, not a move (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=573278"&gt;Bug 573278&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Rename "Unsent Messages" to "Outbox" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475511"&gt;Bug 475511&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Alert undoing IMAP delete (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=571800"&gt;Bug 571800&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not crash when subscribed to IMAP folder '/' (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=562104"&gt;Bug 562104&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Restore ability to save or detach IMAP attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572065"&gt;Bug 572065&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add ability to open mork DBs asynchronously (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570582"&gt;Bug 570582&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Handle multiline subject headers that contain CR+HTAB instead of CR+SPC correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460443"&gt;Bug 460443&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Address Book:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Make Mailing List dialog resizable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=534831"&gt;Bug 534831&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use &lt;hbox align="end"&gt; instead of spacers to align the labels in the Mailing List dialog header sections (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=555452"&gt;Bug 555452&lt;/a&gt;)&lt;/hbox&gt;&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;Download Manager:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Make downloads work if temporary directory is encrypted on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=199473"&gt;Bug 199473&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add possibility to drag URL/file to/from SeaMonkey's Download Manager (copy/move to desktop/folder) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=192728"&gt;Bug 192728&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make downloads list honor Always Remember Helper Application (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=569898"&gt;Bug 569898&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Avoid disk cache overflow when downloading large files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=443067"&gt;Bug 443067&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Honor browser.download.manager.scanWhenDone pref (Windows policy settings integration) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=569204"&gt;Bug 569204&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;&lt;/span&gt;&lt;span style="font-weight: bold;"&gt;Audio/Video:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Update Modern theme for HTML5 video controls CSS transition (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558746"&gt;Bug 558746&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add libvpx VP8 decoding library / WebM (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566247"&gt;Bug 566247&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add HTMLMediaElement.canPlayType support for WebM (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566245"&gt;Bug 566245&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement a raw video decoder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508082"&gt;Bug 508082&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Increase the default media cache size from 50MB to 500MB (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572235"&gt;Bug 572235&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Session Store:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Do not write sessionstore.js to disk for read-only events (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558646"&gt;Bug 558646&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Restore windows at the saved position without moving them around on the screen (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558641"&gt;Bug 558641&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow 3rd party cookies for session only (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=565475"&gt;Bug 565475&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Change default to allow third party session cookies (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570630"&gt;Bug 570630&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure that the Location Bar does not stop working and not allow any input (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=567655"&gt;Bug 567655&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure no tabs are stuck in zombie mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558996"&gt;Bug 558996&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Preferences:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Replace "Download retention" with "Download history" in Browser preferences [ (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566484"&gt;Bug 566484&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add new Add-on Manager UI preferences (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=554007"&gt;Bug 554007&lt;/a&gt;,     &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=561600"&gt;Bug 561600&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove extensions.getMore* preferences (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=530102"&gt;Bug 530102&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add a pref to disable accelerated layers by force (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=565387"&gt;Bug 565387&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Linux:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Show jemalloc stats in about:memory on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=557935"&gt;Bug 557935&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make changes to the GTK widget to support GL accelerated rendering (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=565833"&gt;Bug 565833&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement OpenType font shaping using HarfBuzz and provide a pref to use this or platform back-end (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449292"&gt;Bug 449292&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Mac:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Remove splitter cursor overrides (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558668"&gt;Bug 558668&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Certificates:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Disable the Get Certificate button on the Certificate exception dialog when the certificate is being retrieved in the background (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=523742"&gt;Bug 523742&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Compiling:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Add build option "--with-debug-label" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=565191"&gt;Bug 565191&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow a single option to control tag/revision to pull in client.py (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=556394"&gt;Bug 556394&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Require system libpng to be at version 1.4.1 or later (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=551438"&gt;Bug 551438&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add jemalloc support for Windows x64 build (VC 2005 / 2008) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521193"&gt;Bug 521193&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;HTML5:&lt;br /&gt;&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Implement input type="tel" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=557620"&gt;Bug 557620&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement input type="search" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=456229"&gt;Bug 456229&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement autofocus attribute (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546995"&gt;Bug 546995&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement control attribute for label element (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=562932"&gt;Bug 562932&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement the accept attribute for the form and file upload controls form "image/*" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=377624"&gt;Bug 377624&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Let select size default to 4 when 'multiple' attribute is present (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=551846"&gt;Bug 551846&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove support for table@align=abscenter/absmiddle/middle (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=559834"&gt;Bug 559834&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Enable Web Sockets (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472529"&gt;Bug 472529&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;CSS:&lt;br /&gt;&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Rename -moz-background-size to background-size. (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=549809"&gt;Bug 549809&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add support for background-clip and background-origin in the background shorthand (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=549809"&gt;Bug 549809&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add -moz-background-clip: content (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=549809"&gt;Bug 549809&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove -moz- prefix from (-moz-background-origin|-moz-background-clip|-moz-background-size) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570939"&gt;Bug 570939&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;General:&lt;/span&gt; &lt;ul&gt;&lt;li&gt;Make site icons work in Places (History window for now, bookmarks once switched) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=554908"&gt;Bug 554908&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Highlight odd tree rows in trees with multiple columns in Gnomestripe and Pinstripe themes. Implement and use ::-moz-tree-row(multicol) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=282127"&gt;Bug 282127&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement new Add-on Manager UI for SeaMonkey (about:addons) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=561600"&gt;Bug 561600&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add notification bar hook for new Add-on Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=561600"&gt;Bug 561600&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make notification bars open the Add-on Manager in browser rather than its own window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=572049"&gt;Bug 572049&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Catch and handle nicely 'malformed URI sequence' when migrating passwords from the legacy storage to the new (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=530079"&gt;Bug 530079&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Open the Add-on Manager in a tab (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566905"&gt;Bug 566905&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add about:support (Troubleshooting Information page), including Help menu item (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=545110"&gt;Bug 545110&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use D3D9 layers back-end as the preferred hardware back-end for Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546515"&gt;Bug 546515&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not copy elements with visibility:hidden, visibility:collapse, or display:none to the clipboard (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=39098"&gt;Bug 39098&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Enable Cleartype content rendering by default on Windows XP (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=504698"&gt;Bug 504698&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Overlay Suite features onto Toolkit View Source window and use that instead of an own implementation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=411754"&gt;Bug 411754&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make View Source optionally open in text/plain helper application (ExternalViewSource) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=8589"&gt;Bug 8589&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Disable forcing on Cleartype for system fonts for now (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=504698"&gt;Bug 504698&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure non-ASCII characters are decoded correctly after using Customize on a toolbar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479107"&gt;Bug 479107&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement Unicode Ideographic Variation Sequence (IVS) support in Windows font back-end (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=552460"&gt;Bug 552460&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Increase the maximum number of disk cache entries from 8192 to 16384 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=175600"&gt;Bug 175600&lt;/a&gt;)&lt;br /&gt; &lt;/li&gt;&lt;li&gt;Implement core support for RFC-2597/2598/3168 Quality-of-Service (DSCP) marking (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=529921"&gt;Bug 529921&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Enable relimit (JavaScript RegExp-related) by default and find out if it breaks the Web (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=452451"&gt;Bug 452451&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Port GetDefaultFeedReader to SeaMonkey shell service (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=471346"&gt;Bug 471346&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Do not show website favicon during toolbar customisation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=569318"&gt;Bug 569318&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove navigator.preference (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=568059"&gt;Bug 568059&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure a web page generated by POST is not retried as GET when Save Frame As is used and the page is no longer in the cache (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=485196"&gt;Bug 485196&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add support for STIX Fonts 1.0 to MathML (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=569195"&gt;Bug 569195&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make sure carret does not disappear when clicking in an empty contenteditable element that has focus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=550434"&gt;Bug 550434&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Allow listing directories on Sysax FTP server (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=523127"&gt;Bug 523127&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Deliver a better English language dictionary (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479334"&gt;Bug 479334&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Remove Gopher support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=388195"&gt;Bug 388195&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Stop reading/writing xpti.dat and incrementally loading XPT files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=570488"&gt;Bug 570488&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Prevent Customize toolbar sheet from moving when selecting the show dropdown menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=566424"&gt;Bug 566424&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement Firefox TabBrowser API: loadTabs(), loadOneTab() and change addTab() to get feature parity (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558614"&gt;Bug 558614&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Implement Firefox TabBrowser API: getIcon() (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558673"&gt;Bug 558673&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make Search and Go buttons widgets for browser customizable toolbar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=529647"&gt;Bug 529647&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use transparent resizer images (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=554810"&gt;Bug 554810&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Make copying/pasting lists not add # in plain text mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=365805"&gt;Bug 365805&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use the uninstall.log to uninstall the previous version before installing when upgrading an existing install (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=367539"&gt;Bug 367539&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-6408369339447718947?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/6408369339447718947/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=6408369339447718947' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/6408369339447718947'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/6408369339447718947'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2010/07/21-alpha-2-roundup.html' title='2.1 Alpha 2 Roundup'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-8634694697272866910</id><published>2010-05-31T01:56:00.005+02:00</published><updated>2010-05-31T02:05:44.830+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='av'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='history'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>2.1 Alpha 1 Roundup</title><content type='html'>&lt;p&gt;Welcome back! This update comes a lot later than I initially thought. On the upside I can present you with an more-or-less overview of changes between the last stable release and the first SeaMonkey 2.1 alpha version which has just been released two weeks ago (for the platform changes, see &lt;a href="http://www.mozilla.com/en-US/firefox/3.6/releasenotes/"&gt;Firefox 3.6&lt;/a&gt; and &lt;a href="http://www.mozilla.org/projects/devpreview/releasenotes/"&gt;Mozilla Developer Preview (1.9.3 alpha)&lt;/a&gt;). Parallelly, SeaMonkey 2.0.5 is expected to be released tomorrow (Pacific time). The changes contained in the stable branch releases are part of the release notes nowadays so I will not track or repeat them here.&lt;/p&gt;   &lt;p&gt;Since the first alpha has been cut, new features have already been pushed to the trunk, and more are to come. The &lt;a href="https://wiki.mozilla.org/SeaMonkey:Features:2.1"&gt;SeaMonkey 2.1 Features&lt;/a&gt; wiki page tracks the overall progress of major new features. Short teaser of what is already available in trunk nightly builds:&lt;/p&gt; &lt;ul&gt;&lt;li&gt;The Add-on Manager has been rewritten and now opens within a new tab or browser window.&lt;/li&gt;&lt;li&gt;The Troubleshooting Information page (about:support), which features a short-hand for accessing your profile folder, can now be opened from the Tools menu.&lt;/li&gt;&lt;li&gt;You can now drag files and URLs to and from the Download Manager, e.g. to the desktop or Explorer window.&lt;/li&gt;&lt;li&gt;You can now save multiple messages as individual files in a directory.&lt;/li&gt;&lt;/ul&gt; &lt;p&gt;Here is a list of &lt;span style="font-weight: bold;"&gt;notable SeaMonkey changes between versions 2.0 and 2.1 Alpha 1&lt;/span&gt;:&lt;/p&gt;    &lt;p style="font-weight: bold;"&gt;MailNews&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;make sure images added to an HTML message body do not get an incorrect "attachment" disposition (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=525955"&gt;Bug 525955&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure that a plain text attachment with application/octet-stream content type shows inline (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=532603"&gt;Bug 532603&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;only ask for master password if not already logged into the Software Security Device (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=534462"&gt;Bug 534462&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow using multiple instances of the Forward filter action (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=523892"&gt;Bug 523892&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Forward Inline filter action (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=312025"&gt;Bug 312025&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make nsMessenger.cpp 64-bit compatible (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=519021"&gt;Bug 519021&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make nsMsgAttachmentHandler 64-bit compatible (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558246"&gt;Bug 558246&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow offline stores &gt;4GB (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=532323"&gt;Bug 532323&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;extend local folder size limit to 4GB on Mac OS X (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=538512"&gt;Bug 538512&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add a space between "The message was sent successfully but could not be copied to your Sent folder." and "Would you like to return to the compose window?" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=528600"&gt;Bug 528600&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support semicolon (;) as email address separator (e.g. in To: field) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=242693"&gt;Bug 242693&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure messages marked manually as Junk are moved to Junk folder even if user does not check "Enable adaptive junk mail controls for this account" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=487610"&gt;Bug 487610&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure main body part of IMAP message is downloaded when Display Attachments Inline is off and folder is not set for offline use (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=246415"&gt;Bug 246415&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure internal message selection state is correct after toggling folder pane off/on and switching tabs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=545674"&gt;Bug 545674&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure IMAP folder size is calculated correctly when condstore is used (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=548584"&gt;Bug 548584&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when message contains a mailto: URL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546900"&gt;Bug 546900&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support drag&amp;amp;drop of single message to desktop/file system window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537448"&gt;Bug 537448&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;wrap the message pane in a hbox for Thunderbird compatibility (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=544661"&gt;Bug 544661&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when setting message charset (related to mailnews.sendInBackground pref) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537404"&gt;Bug 537404&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use Create Folder as confirm button label in New Folder dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495939"&gt;Bug 495939&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support libnotify/libindicate notifications for new mail alerts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478463"&gt;Bug 478463&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix Mac dock double count of unread messages on startup (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=516477"&gt;Bug 516477&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure attachments with octet-stream content type are accessible (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=538407"&gt;Bug 538407&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reintroduce menulist-menupopup CSS class to allow styling of folder submenus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=542837"&gt;Bug 542837&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rewrite authentication logic for IMAP, POP and SMTP (new pref: mail.server.default.authMethod) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=525238"&gt;Bug 525238&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show Yes/No buttons instead of OK/Cancel in NNTP cancel dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=168231"&gt;Bug 168231&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;handle IMAP servers that drop the connection on STARTTLS (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=549457"&gt;Bug 549457&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use Rename as confirm button label in Rename Folder dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495940"&gt;Bug 495940&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add recognition of SHA-2 hashes when verifying S/MIME messages with detached signatures (application/pkcs7-signature) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=541334"&gt;Bug 541334&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not indent username label in SMTP server prefs dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=554404"&gt;Bug 554404&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix crash doing STATUS on IMAP folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=550455"&gt;Bug 550455&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support "needs body" for custom filter actions (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=555051"&gt;Bug 555051&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while closing standalone mail window of RSS item while still loading (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=288172"&gt;Bug 288172&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add account name to IMAP alert messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=66860"&gt;Bug 66860&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;extend MailNews back-end to allow detachment to folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531757"&gt;Bug 531757&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure filter junk status "Not Junk" sticks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=556786"&gt;Bug 556786&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure URL with JA characters attached in compose window is shown correctly in attachment box (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=161156"&gt;Bug 161156&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable Save As dialog of mail compose window to handle non-ASCII filenames (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=161791"&gt;Bug 161791&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure compacting with IMAP delete model does not mess up offline store or leak temp files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546384"&gt;Bug 546384&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add emails to CC list (instead of BCC) automatically when sending email (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=269728"&gt;Bug 269728&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use buffered file I/O to help performance with profiles on networked file systems (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=539389"&gt;Bug 539389&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add new pref mail.biff.use_new_count_in_mac_dock to allow "New Mail" count for Mac dock icon instead of unread mail count (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518828"&gt;Bug 518828&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make IMAP password prompts serial, using new asynchronuous prompter service (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=557622"&gt;Bug 557622&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure manually marking a message as NOT JUNK is sufficient and message does not get refiled as junk (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=540385"&gt;Bug 540385&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix Forward Inline with non-default charset (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=494912"&gt;Bug 494912&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure cancelling the master password prompt does not bring up a second one for each connection (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=560740"&gt;Bug 560740&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;hook up POP3 to asynchronous prompt service and make its password prompts serial again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=557625"&gt;Bug 557625&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;import settings from Windows Mail on Vista and Windows Live Mail on XP/Vista/Windows 7 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=394687"&gt;Bug 394687&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure viewing an HTML mail is not too slow for POP and local folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=545126"&gt;Bug 545126&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not close Search Messages dialog when hitting Enter but start the search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=543160"&gt;Bug 543160&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Kerberos/GSSAPI authentication does not fail when hostname is changed after account creation(&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=530319"&gt;Bug 530319&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change label of Rebuild Summary File button to Repair Folder in Folder Properties and add an explanation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=564610"&gt;Bug 564610&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while deleting message header with POP account (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=540074"&gt;Bug 540074&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use notification bar for return receipt confirmation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=539066"&gt;Bug 539066&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;p style="font-weight: bold;"&gt;Address Book&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;support LDAP address book names with cyrillic/chinese letters (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=536437"&gt;Bug 536437&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure "-addressbook" command line option does not disable Resize/Maximize window menu items (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=330914"&gt;Bug 330914&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve handling of BirthYear in birthday field for pre-1900 dates (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=522642"&gt;Bug 522642&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;p style="font-weight: bold;"&gt;Download Manager&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;provide new CSS for Download Manager clearListButton on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=536903"&gt;Bug 536903&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve download progress dialogs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=513691"&gt;Bug 513691&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rewrite broken FTP file upload dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467524"&gt;Bug 467524&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;p&gt;&lt;span style="font-weight: bold;"&gt;History&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;switch Places history to asynchronous expiration (removed browser.history_expire_* prefs, added places.history.enabled and places.database.cache_to_memory_percentage prefs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=536374"&gt;Bug 536374&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;adapt Help for Places history changes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546936"&gt;Bug 546936&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;p style="font-weight: bold;"&gt;Audio/Video&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;add full screen video playback to SeaMonkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=531576"&gt;Bug 531576&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;span style="font-weight: bold;"&gt;Session Store&lt;/span&gt; &lt;ul&gt;&lt;li&gt;limit old close tab method to three tabs (&lt;span id="the-code"&gt;&lt;span class="s"&gt;browser.tabs.max_tabs_undo&lt;/span&gt;&lt;/span&gt; pref) and use Session Restore for additional tabs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=530735"&gt;Bug 530735&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to save/restore referrer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=524369"&gt;Bug 524369&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up cookie saving (run after each page load) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=524371"&gt;Bug 524371&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support input type=file multiple (Session Store part) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=547710"&gt;Bug 547710&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;move writing sessionstore.js off the main thread (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=547406"&gt;Bug 547406&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not consider closed windows as open (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=548228"&gt;Bug 548228&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;introduce sessionstore-browser-state-restored notification representing the end of the setBrowserState operation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=548211"&gt;Bug 548211&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for HTML5 History.pushState(), History.replaceState() methods (Session Store parts) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558652"&gt;Bug 558652&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;increase Session Store interval to 15s (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558649"&gt;Bug 558649&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reduce uses of aNode.localName and namespaceURI in XPath generation (speed up counting sibling nodes) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558645"&gt;Bug 558645&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure getBrowserState does not return two entries for one window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558639"&gt;Bug 558639&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not set focus to minimized windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558638"&gt;Bug 558638&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;skip windows that are closed but not yet destroyed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558636"&gt;Bug 558636&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;only save form data for fields that do not have the default value (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=561728"&gt;Bug 561728&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;p&gt;&lt;span style="font-weight: bold;"&gt;Preferences&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;sync Applications Preferences pane and Modern application picker CSS with what Firefox has (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=538164"&gt;Bug 538164&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;sync pref-smartupdate.* prefs with Firefox (add UI for app.update.auto and app.update.mode prefs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=541665"&gt;Bug 541665&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;p&gt;&lt;span style="font-weight: bold;"&gt;Linux&lt;/span&gt;&lt;br /&gt;&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;make sure Customize Toolbars window is not too small on Linux (does not cut off "Restore defaults" button) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=439134"&gt;Bug 439134&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove Copy Image Location from context menu now that Copy Image copies image location again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469481"&gt;Bug 469481&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;p style="font-weight: bold;"&gt;Compiling&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;make sure "make distclean" fully cleans an hg src build (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=446690"&gt;Bug 446690&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make l10n nightly updates work (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=539938"&gt;Bug 539938&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add warning if configure or config.status are out of date (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=541657"&gt;Bug 541657&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove MSVC6 support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508760"&gt;Bug 508760&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove BUILD_OFFICIAL in favor of MOZILLA_OFFICIAL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=542297"&gt;Bug 542297&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove iconv requirement for updater on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=543230"&gt;Bug 543230&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;drop configure support for cairo-mac widget toolkit (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=543212"&gt;Bug 543212&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add --hg-clone-options option to client.py (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508955"&gt;Bug 508955&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;require python &gt;= 2.4 to build (and &gt;=2.5 on Windows hosts) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=427750"&gt;Bug 427750&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow client.py network attempts to restart themselves in case of failures; add a '--retries' option (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=538528"&gt;Bug 538528&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;drop support for --disable-xpfe-components configure option (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=552222"&gt;Bug 552222&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;substitute Windows-style paths in configure when building with pymake (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=550657"&gt;Bug 550657&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;export more header files to build Enigmail against SDK (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=562059"&gt;Bug 562059&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;  &lt;p style="font-weight: bold;"&gt;General&lt;/p&gt;  &lt;ul&gt;&lt;li&gt;port several bugfixes from Toolkit View Source (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537377"&gt;Bug 537377&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement browser.tabs.closeWindowWithLastTab functionality on SeaMonkey to avoid closing browser with last tab (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=533125"&gt;Bug 533125&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure an empty title attribute inhibits tooltips (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=264001"&gt;Bug 264001&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add 48x48 icon for the migration wizard (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512732"&gt;Bug 512732&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;auto hide menubar in full screen mode instead of hiding it completely (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=540629"&gt;Bug 540629&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add context variable to extensions.update.url pref indicating the context of the check (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=540087"&gt;Bug 540087&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Print Preview show up (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=543205"&gt;Bug 543205&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve appearance of cascading menulists in the Modern theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=542842"&gt;Bug 542842&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix misalignment in --help command line option output (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=546296"&gt;Bug 546296&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove obsolete 'Java Console' item from Tools menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=511884"&gt;Bug 511884&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Crash Reporter send correct URL when crashing during pageload (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=548208"&gt;Bug 548208&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;sync Page Info with Firefox (list background images in Media, resize images correctly when using scaling) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=550469"&gt;Bug 550469&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure View Background Image context menu item is not always grayed out (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=549612"&gt;Bug 549612&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Profile Importer not treat error as fatal when reading from Windows registry (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=537525"&gt;Bug 537525&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Stop button is disabled when SeaMonkey opens a blank window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=74571"&gt;Bug 74571&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add API for getting web progress notifications for all tabs; introduce support for preventing websites from auto-refreshing (accessibility.blockautorefresh pref) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=558995"&gt;Bug 558995&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure drag&amp;amp;drop of links to contents area does not fail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=560443"&gt;Bug 560443&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix context menu IDs and accesskeys (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=487692"&gt;Bug 487692&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure history.pushState does not forget favicon and feeds (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=557374"&gt;Bug 557374&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure closing a window with multiple tabs produces a warning (if configured like that) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=525386"&gt;Bug 525386&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support resizable textareas in the Modern theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=553937"&gt;Bug 553937&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add CSS styling for about:memory to the Modern theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=547458"&gt;Bug 547458&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add CSS styling for about:support to the Modern theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=561668"&gt;Bug 561668&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-8634694697272866910?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/8634694697272866910/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=8634694697272866910' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/8634694697272866910'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/8634694697272866910'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2010/05/21-alpha-1-roundup.html' title='2.1 Alpha 1 Roundup'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-4418936961972341451</id><published>2009-10-23T22:30:00.005+02:00</published><updated>2009-10-24T02:50:23.571+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='addons'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='venkman'/><category scheme='http://www.blogger.com/atom/ns#' term='composer'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='ldap'/><category scheme='http://www.blogger.com/atom/ns#' term='history'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='bookmarks'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>SeaMonkey 2.0 Goes Gold</title><content type='html'>After years of development, the SeaMonkey Project is finally about to release another major stable version, SeaMonkey 2.0, early next week. Great efforts have been made by a team of volunteers to take the successor of the Mozilla Suite to the next level. Since SeaMonkey 2.0 is building upon the same platform as Firefox 3.5 and Thunderbird 3.0, it now shares many back-ends with them, including browsing (Gecko), messaging (MailNews) and other central technologies like XUL, Toolkit, the TraceMonkey JavaScript engine and more. Naturally their developers deserve our great appreciation and respect, too.&lt;br /&gt;&lt;br /&gt;This post is not meant to anticipate the official announcement; after all this is not the official SeaMonkey blog. Hence I will just refer you to that. The Release Notes that will undoubtedly be linked from the announcement will also contain a list of major changes since the previous stable version, SeaMonkey 1.1. For further details, have a look at the archives of this blog.&lt;br /&gt;&lt;br /&gt;One thing worth noting, though, is the availability of extensions (add-ons). While a few of them are obsoleted by SeaMonkey 2.0 itself (e.g. Undo Close Tab, Crash Recovery and Forumzilla) and some others work if you disable the extension compatibility check, the majority probably needs some &lt;a href="http://developer.mozilla.org/En/Extensions_support_in_SeaMonkey_2"&gt;adjustments&lt;/a&gt;. Extension authors should know that SeaMonkey 2 now supports the same extension installation interface like Firefox and also many of the internal interfaces. For example it was quite easy to make the current version of the &lt;a href="http://downloadstatusbar.mozdev.org/"&gt;Download Statusbar&lt;/a&gt; extension fully support SeaMonkey 2.0 now that the suite uses the same download management back-end (but different front-end!) as Firefox—an extension that dropped support for the Mozilla Suite in 2003 due to the lack of support for exactly that new back-end! I think we can expect some updated/modified versions of popular add-ons at &lt;a href="https://addons.mozilla.org/seamonkey/"&gt;AMO&lt;/a&gt; and/or the &lt;a href="http://xsidebar.mozdev.org/"&gt;xSidebar&lt;/a&gt; hub shortly after the release. Still I would like to encourage all add-on developers, irrespective of whether they created extensions or themes for Firefox, Thunderbird or SeaMonkey, to revisit their products and check if supporting SeaMonkey 2 is feasible.&lt;br /&gt;&lt;br /&gt;Meanwhile development goes on. The new stable branch repository, comm-1.9.1, has been set up. This is where minor updates for SeaMonkey 2.0 will be released from. At the same time &lt;a href="https://developer.mozilla.org/en/comm-central"&gt;comm-central&lt;/a&gt; has switched back to pulling in the Mozilla trunk (mozilla-central) and has reopened for trunk development. The SeaMonkey Trunk Tracker, as the name suggests, will monitor the trunk from now on but also continue to feature branch updates from time to time.&lt;br /&gt;&lt;br /&gt;Finally, here is a list of notable &lt;span style="font-weight: bold;"&gt;changes between Beta 2 and 2.0 final&lt;/span&gt; (including RCs):&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make sure typing file extension sets correct file output type (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508597"&gt;Bug 508597&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make suppression of junk whitelisting (of own identities) work for deferred-to servers like POP3 to Local Folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512416"&gt;Bug 512416&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;hide tab bar when single tab remains after choosing Close from tab context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514177"&gt;Bug 514177&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent going into infinite UI loop if SSL security certificate expires (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493980"&gt;Bug 493980&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;select first filter in Message Filters window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=511989"&gt;Bug 511989&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for mouse Back and Forward buttons and Reload, Stop, Search, Bookmarks and Home keys on media keyboards (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512169"&gt;Bug 512169&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement Body filter for IMAP messages downloaded for offline use (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=127250"&gt;Bug 127250&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable filter criteria "doesn't contain" and "isn't" for user-defined IMAP header fields (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=242550"&gt;Bug 242550&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove filter_news_for_junk pref in favor of inherited folder property (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=510659"&gt;Bug 510659&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable junk UI elements when RSS or news junk is enabled (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=496015"&gt;Bug 496015&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;actually search online when unchecking "Search local system" in Advanced Search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=511131"&gt;Bug 511131&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Identity Settings dialog opens centered with reasonable width (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486955"&gt;Bug 486955&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;modernize askSendFormat (removes the three mail.asksendformat.* prefs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=507682"&gt;Bug 507682&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent shutdown hangs by trying to clean up connections on quit-application-granted and not running IMAP URLs once shutdown has been requested (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=497059"&gt;Bug 497059&lt;/a&gt;), also fixes: do not shut down IMAP connections when closing MailNews window while others still open (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490170"&gt;Bug 490170&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not repeatedly send wrong password if login fails (prevent possible server account locking due to multiple failed login attempts) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508381"&gt;Bug 508381&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure small icons in MailNews toolbar do not become large when customizing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=513446"&gt;Bug 513446&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve XLIST/LSUB interaction for servers like GMail IMAP (re-enable unsubscribing) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493455"&gt;Bug 493455&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add IMAP autosync date constraints prefs to Account Settings/Synchronization &amp;amp; Storage (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=510707"&gt;Bug 510707&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure icons appear on Message Filters dialog menulist (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515256"&gt;Bug 515256&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure File button in MailNews Search Messages window has normal height on Windows with default theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512702"&gt;Bug 512702&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure READ and NEW flags are set correctly after filter message move (fixes automatic junk detection/move on messages moved by a filter from IMAP) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=389098"&gt;Bug 389098&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure mail compose window closes itself after Account Wizard Cancel/Exit (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=405172"&gt;Bug 405172&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure compose window context menu displays correctly after resizing address toolbar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514416"&gt;Bug 514416&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not hang when interrupting viewing search folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=516388"&gt;Bug 516388&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not override user-selected name when creating new message filter and handle Attachment and Junk Status rules correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=510703"&gt;Bug 510703&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make SMTP server dropdown accept choosing Use Default Server (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=373573"&gt;Bug 373573&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show message determined to be junk as Simple HTML and do not load remote images (adds support for TB's mail.spam.display.sanitize pref); reload mail if junk status changes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=179568"&gt;Bug 179568&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure navigating from standalone message window marks message as read again (fix Tabmail regression) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514876"&gt;Bug 514876&lt;/a&gt;), also fixes: Reply/Forward/Tag (1-5) operate on initial message in standalone message window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517663"&gt;Bug 517663&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure to remove folder from view when deleting IMAP subfolder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=513012"&gt;Bug 513012&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement minimal APIs needed for Enigmail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517238"&gt;Bug 517238&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement customizable toolbars for message compose window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509209"&gt;Bug 509209&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make double click/Enter and Del trigger Edit and Delete in Customize Message Views window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=513456"&gt;Bug 513456&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure message opened from non-all view is shown in new tab (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517554"&gt;Bug 517554&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure newsgroup unread counts reflect filter actions like Delete Message; add newsgroup name to downloading/getting news headers status messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=311774"&gt;Bug 311774&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;stop re-downloading messages from GMail IMAP (allow 1-byte fuzz per line when validating offline IMAP state) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517466"&gt;Bug 517466&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Mark As Not Junk clear deleted flag from message with IMAP mark as deleted model (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515927"&gt;Bug 515927&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show scrollbar on header pane for long address lists (or View/Headers/All mode) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517924"&gt;Bug 517924&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix Tools/Delete Mail Marked as Junk in Folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517996"&gt;Bug 517996&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;create Junk folder on Local Folders as needed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505949"&gt;Bug 505949&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while playing back offline IMAP operations (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=480090"&gt;Bug 480090&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while reading msgFilterRules.dat containing BOM (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518565"&gt;Bug 518565&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Get Messages for Account to news server context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=87107"&gt;Bug 87107&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not disable spell checking when indenting text in HTML composition (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=492751"&gt;Bug 492751&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Help icon to Message Filter dialog Help button (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515227"&gt;Bug 515227&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make search bar search by Subject and Address (From, To, CC, and BCC, was: From) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518846"&gt;Bug 518846&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show No Feed Summary warning for RSS entries with no summaries (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506726"&gt;Bug 506726&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve presentation of IMAP autosync policies in Account Settings/Synchronization &amp;amp; Storage to avoid mixup with retention settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515842"&gt;Bug 515842&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement new keyboard shortcut for Paste As Quotation (Ctrl+Shift+O, Ctrl+Shift+V is Paste Without Formatting now) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461117"&gt;Bug 461117&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash trying to convert message to Unicode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518686"&gt;Bug 518686&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent continuous repeated synchronization and indexing of messages from Exchange IMAP server (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518702"&gt;Bug 518702&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;default Age In Days in Advanced Search window to "is less than" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=187741"&gt;Bug 187741&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add extra line break at top of message if "Include signature for replies" is disabled while signature position is "below my reply" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518403"&gt;Bug 518403&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent high memory usage and consuming 100% CPU when dealing with high UIDs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518918"&gt;Bug 518918&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up move/delete of large number of offline IMAP messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=519979"&gt;Bug 519979&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix migration of mail folders (directory-rel prefs issue) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=452465"&gt;Bug 452465&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;determine Forward button drop-down menu default based on preferences (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=520108"&gt;Bug 520108&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable actions for multi selection of folders in folderpane (note: bug kept open for implementing multi-selection support post-2.0) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=50767"&gt;Bug 50767&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure compacting IMAP offline store does not try to fetch messages (go online) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=519801"&gt;Bug 519801&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reset Dock icon when getting to zero unread messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=520977"&gt;Bug 520977&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent shutdown from failing with 100% CPU load when autocomplete over LDAP is used (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=420744"&gt;Bug 420744&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure changing "Use my account settings" of one folder does not alter retention policy settings of other folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515316"&gt;Bug 515316&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure compacting IMAP offline store takes relaxed IMAP autosync constraints (changed prefs) into account (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521134"&gt;Bug 521134&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to set Movemail account as default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=480942"&gt;Bug 480942&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show Close Tab context menu when right-clicking anywhere beside tabs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518203"&gt;Bug 518203&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure address list in Select Addresses dialog opened from compose window is filled initially (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460550"&gt;Bug 460550&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure closing tab that has never been viewed does not trigger blank thread pane (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515249"&gt;Bug 515249&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not close standalone message window when other message is marked as junk (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=519128"&gt;Bug 519128&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not hang on shutdown trying to append message to IMAP folder via filter (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=497598"&gt;Bug 497598&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while using doing quick search multiple times in folder in Grouped By Sort mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=520006"&gt;Bug 520006&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix some causes of shutdown hangs and high CPU load without open IMAP connections (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=494014"&gt;Bug 494014&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure IMAP autosync does not stop working (start downloading messages immediately unless folder is excluded) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517256"&gt;Bug 517256&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up changes to messages in virtual folders by batching notifications (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508978"&gt;Bug 508978&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while trying to create offline operations table (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=440236"&gt;Bug 440236&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix code run on closing compose window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=522365"&gt;Bug 522365&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;also fixes: fix saving draft emails (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521199"&gt;Bug 521199&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Address Book&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;fix saving of cards with custom photo (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=513471"&gt;Bug 513471&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove Photo tab from personal vCard editing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=520432"&gt;Bug 520432&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Download Manager&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;mark Open as default double click action in Download Manager context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=513490"&gt;Bug 513490&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;play a sound (again) when downloads complete (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490467"&gt;Bug 490467&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;optimize sorting on entry updates in new Download Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474626"&gt;Bug 474626&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Bookmarks&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make sure bookmarking pages using drag&amp;amp;drop works (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514630"&gt;Bug 514630&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not hang on restart if bookmark seperator contains double quote characters (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=452056"&gt;Bug 452056&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure new bookmark folders show no "(Empty)" items after drag&amp;amp;drop (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=513275"&gt;Bug 513275&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to drop on "(Empty)" (Bookmarks menu / Personal Toolbar) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518060"&gt;Bug 518060&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix copying bookmarks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=520987"&gt;Bug 520987&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Bookmarks Manager toolbar items are not disabled after entering search with active selection (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=519049"&gt;Bug 519049&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Session Restore&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;show quit dialog when multiple windows are open (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514388"&gt;Bug 514388&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let Session Restore cope with empty history entries (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509315"&gt;Bug 509315&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sessionStorage object conform the WHATWG spec (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=511635"&gt;Bug 511635&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent Session Restore from opening multiple about:blank tabs after crash while loading multiple tabs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517139"&gt;Bug 517139&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Session Restore save state when closing last browser window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515006"&gt;Bug 515006&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Save Tabs on Quit dialog saves preference (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=516330"&gt;Bug 516330&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not trigger browser.windows.loadOnNewWindow or browser.startup.page when restoring window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517998"&gt;Bug 517998&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Preferences&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add new satchel prefs (browser.formfill.*) to Preferences (including Help changes) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=390158"&gt;Bug 390158&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add option to warn on closing window with multiple tabs (browser.tabs.warnOnClose) to Preferences (including Help changes) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=385141"&gt;Bug 385141&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;drop support for obsolete signon.expireMasterPassword pref (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517478"&gt;Bug 517478&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Download retention settings to Preferences (pref: browser.download.manager.retention) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=487675"&gt;Bug 487675&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove obsolete javascript.allow.mailnews pref (including UI) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=248280"&gt;Bug 248280&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Connection Timeout to MailNews Preferences (includes Help changes; pref: mailnews.tcptimeout) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=287806"&gt;Bug 287806&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename Junk Mail Preferences panel to Junk &amp;amp; Suspect Mail and add new anti-virus and scam preferences for MailNews (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463249"&gt;Bug 463249&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Composer&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;improve Composer's handling of XHTML documents (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431184"&gt;Bug 431184&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Help&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;document new "Get Messages" and "Get All New Messages" shortcuts (Ctrl+[Shift+]D) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514890"&gt;Bug 514890&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;document Focus Search Field shortcuts (Ctrl+F/Ctrl+K) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509338"&gt;Bug 509338&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Help for Find in This Page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432700"&gt;Bug 432700&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;define MailNews terms relating to security (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=221259"&gt;Bug 221259&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove Roaming Profiles from Help (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518294"&gt;Bug 518294&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;document Session Restore (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509404"&gt;Bug 509404&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove reference to toggle JavaScript on/off in MailNews (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514969"&gt;Bug 514969&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;document new anti virus and scam preferences in MailNews Preferences (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=519228"&gt;Bug 519228&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Help for new time-policy IMAP autosync settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515523"&gt;Bug 515523&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Help for new download manager preferences (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=519332"&gt;Bug 519332&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Website Certificates documentation for switch from dialogs to error pages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506724"&gt;Bug 506724&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;document Add-ons Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=373457"&gt;Bug 373457&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove links to "Netscape My Webpage" from Help (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=522175"&gt;Bug 522175&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Locales&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add en-GB (British English) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=503900"&gt;Bug 503900&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add it (Italian) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=520980"&gt;Bug 520980&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;switch from %LOCALE%.add-ons.mozilla.org to %LOCALE%.add-ons.mozilla.com (former has broken certs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517596"&gt;Bug 517596&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Venkman&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add shortcut (Ctrl+G) for Find Again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518580"&gt;Bug 518580&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;initialize Add Watch Expression dialog with current source selection (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=519131"&gt;Bug 519131&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Lightning Integration&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;set minVersion to 2.0b2 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=516407"&gt;Bug 516407&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement minimal APIs needed for Lightning (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=516453"&gt;Bug 516453&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Lightning preferences integration (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=516398"&gt;Bug 516398&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Lightning does not disable the throbber (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=516681"&gt;Bug 516681&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Lightning Categories preferences pane is showing categories (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517700"&gt;Bug 517700&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add missing css/icons (folderview-cycler/spin-buttons) for Lightning Tasks and/or Events sidebar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517683"&gt;Bug 517683&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Lightning icons (calendar, tasks) show up on MailNews tabs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521415"&gt;Bug 521415&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure List all tabs dropdown is not empty with Lightning installed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=522125"&gt;Bug 522125&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Linux/GTK&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;provide Copy Image Location context menu item until Copy Image copies location again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469481"&gt;Bug 469481&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix height of "Automatic proxy configuration URL" field/button in Preferences (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=484622"&gt;Bug 484622&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Mac&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;respect system-wide SOCKS proxy settings on Mac OS X (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=457377"&gt;Bug 457377&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use "pressed" look for toolbarbuttons when their menu is open (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512548"&gt;Bug 512548&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix loading PKCS#11 module (security device) on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=496013"&gt;Bug 496013&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show alignment-icon instead of checkmark in Composer image alignment menulist (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=384340"&gt;Bug 384340&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use better progress bar background colors in Download Manager and add padding to progress dialogs on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517788"&gt;Bug 517788&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;allow to build with system Hunspell (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=518334"&gt;Bug 518334&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make grippy mouseover effect consistent (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=385252"&gt;Bug 385252&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add styles for horizontal scrollboxes (needed for Tabmail) to Modern theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477710"&gt;Bug 477710&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support biarch system plugin location (/usr/lib64/mozilla/plugins) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=496708"&gt;Bug 496708&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use different accesskeys for Restart and Preferences in Add-on Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=507451"&gt;Bug 507451&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;respect browser.chrome.favicons setting when opening Edit/Preferences/Applications (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514671"&gt;Bug 514671&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix some issues (missing icons, truncated labels) with Default theme menulists (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514854"&gt;Bug 514854&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add option to Clear Private Data for Location Bar History (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436942"&gt;Bug 436942&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;delete closed tabs when clearing browser history (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479448"&gt;Bug 479448&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Modern theme for notifications (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=515622"&gt;Bug 515622&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not focus browser when opening tabs in background (e.g. from from middle clicks) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=517307"&gt;Bug 517307&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure link in frame selected with Type Ahead Find is the one followed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=485213"&gt;Bug 485213&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;migrate old wallet.captureForms pref to new browser.formfill.enable pref (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi"&gt;Bug 491673&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change font-size:smaller/larger to 83.3333%/120% for Modern theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=516708"&gt;Bug 516708&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support South Korean SEED crypto cipher suites (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478839"&gt;Bug 478839&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display correct (NLS) name of (DBCS) font on OS/2 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=511361"&gt;Bug 511361&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Save Page save result of POST action instead of origin form (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=188253"&gt;Bug 188253&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not use bold font with groupbox custom caption content (example: font preferences) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514883"&gt;Bug 514883&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show "installation complete" message in Add-on Manager after add-on install and application restart (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=442167"&gt;Bug 442167&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change Apply Theme dialog from OK to Restart Now/Later (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=492263"&gt;Bug 492263&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use new icon set for SeaMonkey Default Theme (task icons) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=348720"&gt;Bug 348720&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show placeholder for missing/disabled plugins (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465771"&gt;Bug 465771&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix saving in Page Info (media) and View Source (page) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=520447"&gt;Bug 520447&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure SeaMonkey 2.0 is not detected as old stable version by Start page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521341"&gt;Bug 521341&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add about:rights and a "Know Your Rights" infobar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508039"&gt;Bug 508039&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Modern theme (global changes) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465924"&gt;Bug 465924&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Modern theme for SeaMonkey 2.0 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=456757"&gt;Bug 456757&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show Release Notes as first-run page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521314"&gt;Bug 521314&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show Larry icon in Modern theme's about:certerror like in Page Info Security tab (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=514383"&gt;Bug 514383&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update video controls for Modern theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490277"&gt;Bug 490277&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use MailNews icon for SeaMonkey Mail start menu icon provided by Windows installer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=521616"&gt;Bug 521616&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure https webpage with data: images does not trigger "Page contains unencrypted information" mixed content warning (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477118"&gt;Bug 477118&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show single Master Password prompt at startup if Master Password set (prevents multiple Master Password prompts; pref: signon.startup.prompt) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=381269"&gt;Bug 381269&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-4418936961972341451?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/4418936961972341451/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=4418936961972341451' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/4418936961972341451'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/4418936961972341451'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2009/10/seamonkey-20-goes-gold.html' title='SeaMonkey 2.0 Goes Gold'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-388071950002967508</id><published>2009-09-03T23:16:00.003+02:00</published><updated>2009-09-04T00:10:23.711+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='plugins'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='ssl'/><category scheme='http://www.blogger.com/atom/ns#' term='composer'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='history'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='bookmarks'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><title type='text'>Beta 2 Roundup</title><content type='html'>Not too long ago I told you there will be a second Beta. Now, only one and a half months later, SeaMonkey 2 Beta 2 has been tagged. Things are progressing fast, especially compared to the time it took between Alpha 3 and Beta 1. The upcoming Beta release is considered feature complete, i.e. no major changes are expected to land between now and the release of SeaMonkey 2.0. That also means that approval is required from now on for anything that is to be checked in for SeaMonkey.&lt;br /&gt;&lt;br /&gt;So, what is new? First and foremost Thunderbird's tabbed interface (Tabmail) was ported to MailNews. Moving that blocker out of the way put Lightning integration within reach. Other notable changes include:&lt;br /&gt;&lt;ul&gt;&lt;li&gt;the creation of &lt;acronym title="SeaMonkey Interface Library for Extensions" lang="en"&gt;SMILE&lt;/acronym&gt;, a combination of &lt;acronym title="Firefox User Extension Library" lang="en"&gt;FUEL&lt;/acronym&gt; and &lt;acronym title="Scriptable Thunderbird Easy Extension Library" lang="en"&gt;STEEL&lt;/acronym&gt;&lt;/li&gt;&lt;li&gt;the ability to delete/cut bookmarks from the bookmarks search view, where deleted bookmarks no longer appear&lt;/li&gt;&lt;li&gt;the ability to reopen closed browser windows (Undo Close Window)&lt;/li&gt;&lt;li&gt;the ability to apply more actions (e.g. Remove) to multiple selected downloads&lt;/li&gt;&lt;li&gt;the ability to choose whether to retry authentication or enter a new password when login fails in MailNews (instead of just forgetting the old saved password)&lt;br /&gt;&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;The following list should cover all noteworthy changes that were made between since Beta 1 (except Forgotten Fixes of course):&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Forgotten Fixes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add hidden pref to turn off virus scanning on downloads (browser.download.manager.scanWhenDone) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=412204"&gt;Bug 412204&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;support multiple spam corpus files (backend) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506397"&gt;Bug 506397&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Modern theme update / changes in global (partly fixed) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465924"&gt;Bug 465924&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;port jminta's kill-RDF to SeaMonkey where applicable (partly fixed) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460953"&gt;Bug 460953&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;replace RDF-driven folder pane with a JS-driven/non-RDF treeview (initial changes made) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=507601"&gt;Bug 507601&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Drop the redundant /resources/ in mailnews directories (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490118"&gt;Bug 490118&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;lessen number of cases where restart is required on application update due to MAPI DLLs being in use (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=497424"&gt;Bug 497424&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove never-used prefs mail.default_cc and news.default_cc (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=502041"&gt;Bug 502041&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pluggable filter lists (allow extensions to create their own) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=503668"&gt;Bug 503668&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to fetch mail with Movemail account despite having no write privileges in mail spool dir (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=384774"&gt;Bug 384774&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename Retention Policy option "Use server defaults" to "Use my account settings" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464355"&gt;Bug 464355&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure message/rfc822 attachments of saved messages do not open blank (read attachment size) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=351064"&gt;Bug 351064&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;check for (and add if needed) mozilla envelope line (From: ) and check file size when copying non-Mozilla eml files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=499304"&gt;Bug 499304&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make local body search work with Base64-encoded body (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=132340"&gt;Bug 132340&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to change "and place my signature" pref irrespective of whether signature is set or not (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=277187"&gt;Bug 277187&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure messages display in standalone message window on Mac with Default Theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506019"&gt;Bug 506019&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when downloading many messages with "copy all" filter enabled (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=313026"&gt;Bug 313026&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix invalidation of view lines when moving threads on incoming mail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=504297"&gt;Bug 504297&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure new message added to an open threaded cross-folder saved search gets added in the right place (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505321"&gt;Bug 505321&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Undo Delete Message (Ctrl+Z) does not erase messages from Trash (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=323875"&gt;Bug 323875&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure copying messages without trailing CR/LF does not skip last line (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=498978"&gt;Bug 498978&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix display of header values with unencoded special characters (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468351"&gt;Bug 468351&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make prefs to mark all RSS or NNTP messages read when exiting the folder work again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=503624"&gt;Bug 503624&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent false positives when searching offline newsgroup (NNTP) and IMAP messages bodies (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=249841"&gt;Bug 249841&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;neither guess type nor silently add extension when using Save As dialog (additionally removed All Files filter) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=340168"&gt;Bug 340168&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure POP/IMAP/SMTP server passwords are not inappropriately forgotten (ask whether to retry or enter new password if login failed) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=121647"&gt;Bug 121647&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when creating message view (insert message at end of view instead) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=492571"&gt;Bug 492571&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while getting message after renaming a virtual folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=383584"&gt;Bug 383584&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove useless @ sign behind email address box on Movemail identity page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505589"&gt;Bug 505589&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make renaming mail folder by clicking OK in rename dialog work again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506004"&gt;Bug 506004&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;auto-assign meaningful name when creating new filter (based on first search term) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=457745"&gt;Bug 457745&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure dock icon shows correct number of unread messages on Mac (counts only inboxes by default, pref: mail.notification.count.inbox_only) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=274688"&gt;Bug 274688&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when parsing MIME multipart line (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482879"&gt;Bug 482879&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement new choices for matching criteria (doesn't contain, isn't) for custom header MailViews and Search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=238816"&gt;Bug 238816&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable Message Filters menu item when no accounts are set up (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506510"&gt;Bug 506510&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make "Send unsent messages" command work again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505672"&gt;Bug 505672&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add submenu to "Create a new message" button allowing to choose whether to compose in HTML or Plain Text (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=16908"&gt;Bug 16908&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;highlight default action in submenu of "Create a new message" button (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=507871"&gt;Bug 507871&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when marking thread read (in virtual folder) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=503811"&gt;Bug 503811&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Move step of "Copy then Move" action in single filter rule is executed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448337"&gt;Bug 448337&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;throw an error if mailbox would grow larger than 4GB in size (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=387502"&gt;Bug 387502&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not require restart to get localized folder names (Drafts/Junk/Sent/Templates/Archives name in folderpane tree) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467527"&gt;Bug 467527&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not require restart to get localized folder names (SeaMonkey Archives part) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508056"&gt;Bug 508056&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not require restart to get localized folder names (IMAP case) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=508026"&gt;Bug 508026&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make virtual folder watching mails with status NEW display correct counts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=372372"&gt;Bug 372372&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show full newsgroup name as tooltip on hover of group name (whether that is abbreviated or not) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=174234"&gt;Bug 174234&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set search scope correctly for custom search terms (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=510249"&gt;Bug 510249&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not issue EXPUNGE for \Noselect IMAP folders and virtual folders when invoking File/Compact Folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=510645"&gt;Bug 510645&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to run mail classification (Junk filter) before normal filters (per-filter setting in Filter Rules dialog) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=198100"&gt;Bug 198100&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure text boxes (News Feeds, Folder Properties) containing domains/URLs stay LTR when UI is RTL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477842"&gt;Bug 477842&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when deleting local folder including saved search subfolder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505974"&gt;Bug 505974&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix "Save as text" corruption where non-ASCII mail 3-byte escape sequence split to two buffers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=269812"&gt;Bug 269812&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when renaming IMAP folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486485"&gt;Bug 486485&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support both standard and non-standard MIME types application/x-pkcs7-mime and application/x-pkcs7-signature (with and without x- prefix) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436869"&gt;Bug 436869&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make per-folder filters on newsgroups editable again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512110"&gt;Bug 512110&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve look of the inline attachment separator (show attachment filename) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509616"&gt;Bug 509616&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve look of the inline attachment separator (SeaMonkey part) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512454"&gt;Bug 512454&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make "Check for new mail at startup" work without "Automatically download new messages" again (POP) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=458625"&gt;Bug 458625&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make subscribing to feed (triggered by external application) work if no RSS account present (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474709"&gt;Bug 474709&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;re-enable IMAP subscription for servers that support XLIST (like GMail) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493455"&gt;Bug 493455&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix various causes of corruption of offline IMAP store (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468595"&gt;Bug 468595&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure check for new mail interval is calculated correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509747"&gt;Bug 509747&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Filter Rules dialog is not corrupted when there are many rules (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506199"&gt;Bug 506199&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure list content popups do not show up in left up corner of mail windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=423955"&gt;Bug 423955&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;only disable spell checking for citations, not indented text in HTML composition (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=492751"&gt;Bug 492751&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;port Thunderbird's tabbed interface (Tabmail) to MailNews (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460960"&gt;Bug 460960&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash during address autocomplete (from Outlook address book) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512678"&gt;Bug 512678&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable space/time policy for IMAP autosync (pref: mail.server.default.autosync_max_age_days) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482476"&gt;Bug 482476&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix threading when a view is active (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505967"&gt;Bug 505967&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to drag &amp;amp; drop .eml file into mailbox folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=499878"&gt;Bug 499878&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Address Book&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;show LDAP labeledURI field as Website (and support for it to LDIF import) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=263304"&gt;Bug 263304&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to search for contacts that include apostrophes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=496970"&gt;Bug 496970&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when searching Address Book from Sidebar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=280232"&gt;Bug 280232&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add option to add photo/image/picture to contacts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=119459"&gt;Bug 119459&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Download Manager&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;indicate availability of download progress dialog context menus through WAI-ARIA attribute (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=504163"&gt;Bug 504163&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not treat search terms as regular expressions (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=501772"&gt;Bug 501772&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Ctrl+J as shortcut to invoke Download Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=333855"&gt;Bug 333855&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix import of NOT_STARTED entries in downloads.rdf by changing their status to CANCELED (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495680"&gt;Bug 495680&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reimplement "Properties" (opening Progress Dialog) in new Download Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474620"&gt;Bug 474620&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add start and end date columns to Download Manager (inactive by default) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=180623"&gt;Bug 180623&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add multiple selection support to more download actions (play/pause/resume/retry, stop/cancel/remove) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474619"&gt;Bug 474619&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Bookmarks&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make sure deleted bookmarks do not appear in search results window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=123679"&gt;Bug 123679&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ability to delete/cut bookmarks from search results window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=81893"&gt;Bug 81893&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not append newline to end of URL when copying single bookmark (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509029"&gt;Bug 509029&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;separate bookmarks by newline when copying to clipboard (HTML format) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509094"&gt;Bug 509094&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;switch bookmark transaction system from JS to C++ to prevent memory leaks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=342296"&gt;Bug 342296&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Composer&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use new Password Manager backend for Publish dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=507884"&gt;Bug 507884&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;History&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;fix History import from SeaMonkey 1.1.x (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=484175"&gt;Bug 484175&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make "Delete History for (host|domain)" available in History context menus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=512146"&gt;Bug 512146&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Certificates&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;support browser.ssl_override_behavior pref for "Add Exception" on SSL error pages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431940"&gt;Bug 431940&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show "SSL is disabled" error when SSL3 is disabled (but TLS enabled) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=368130"&gt;Bug 368130&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Audio/Video&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make MOZ_MEDIA work on OS/2 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448918"&gt;Bug 448918&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure "Pause" changes to "Play" in context menu when end of video is reached (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=504337"&gt;Bug 504337&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable media entries in context menu when media source is invalid (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=507002"&gt;Bug 507002&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add View Video to video context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=483727"&gt;Bug 483727&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Help&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;update Help for Certificate Manager tabs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459566"&gt;Bug 459566&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Mac&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make the default theme look better on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460699"&gt;Bug 460699&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Mac Help key [cmd+?] support to Page Info window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=510773"&gt;Bug 510773&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use correct window titles (without application name) on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=457548"&gt;Bug 457548&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;GTK/Linux&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;allow to specify path to binary for XSMP session restore (environment variable MOZ_APP_LAUNCHER) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453689"&gt;Bug 453689&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support 64-bit local file operations like STAT for e.g. removing large files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=389087"&gt;Bug 389087&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add entry for allow/disable/remember Geolocation to Permissions tab in Page Info (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=491835"&gt;Bug 491835&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make context menus aware of contentEditable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=503478"&gt;Bug 503478&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update QA "Latest Builds" after removal of nightly/latest-trunk symlink (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=504283"&gt;Bug 504283&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;respect locale for file size and image dimensions in MetaData Properties and Page Info windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=252043"&gt;Bug 252043&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use SetProcessDEPPolicy to enable NX on Windows XP SP3 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479667"&gt;Bug 479667&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ability to load plugins from "plugins" directory in profile directory (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475383"&gt;Bug 475383&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change key for "open link in opposite of default" from Shift+Ins to Alt+Ins to resolve conflict with alternate paste key (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505141"&gt;Bug 505141&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure "View MathML source" does not show a blank window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505212"&gt;Bug 505212&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure collapsed toolbars keep state after returning from full screen mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=506492"&gt;Bug 506492&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;create SMILE (SeaMonkey Interface Library for Extensions) as combination of FUEL and STEEL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=411536"&gt;Bug 411536&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make session restore not hang/stop responding with high CPU load on large forms with many checkboxes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=510652"&gt;Bug 510652&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Location Bar autocomplete does not fill in non-existent URLs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=481836"&gt;Bug 481836&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Undo Close Window feature (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=510890"&gt;Bug 510890&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add mozapps/ to Modern theme (including icons used in Add-ons Manager) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493022"&gt;Bug 493022&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash with XUL file chooser (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490932"&gt;Bug 490932&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable emboldening of (DBCS) fonts without bold counterpart for OS/2 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=509317"&gt;Bug 509317&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure loading CSS and images succeeds when loading secure (SSL, https) page for the first time (or after "Clear Private Data") (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=480619"&gt;Bug 480619&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ship an add-on blocklist by default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=505832"&gt;Bug 505832&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve identity display on security tab (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=498618"&gt;Bug 498618&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not change file type icon for HTML files to mail when upgrading SeaMonkey  (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=507896"&gt;Bug 507896&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-388071950002967508?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/388071950002967508/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=388071950002967508' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/388071950002967508'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/388071950002967508'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2009/09/beta-2-roundup.html' title='Beta 2 Roundup'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-3940510230314955004</id><published>2009-07-18T19:50:00.007+02:00</published><updated>2009-07-21T20:25:42.252+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='av'/><category scheme='http://www.blogger.com/atom/ns#' term='cz'/><category scheme='http://www.blogger.com/atom/ns#' term='ui'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='venkman'/><category scheme='http://www.blogger.com/atom/ns#' term='composer'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='history'/><category scheme='http://www.blogger.com/atom/ns#' term='l10n'/><category scheme='http://www.blogger.com/atom/ns#' term='ldap'/><category scheme='http://www.blogger.com/atom/ns#' term='bookmarks'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><category scheme='http://www.blogger.com/atom/ns#' term='domi'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>Beta 1 Roundup</title><content type='html'>Welcome back! Again it has been quiet on this blog for too long. But no longer! Beta 1 has been tagged and is about to be released early next week. Beta 1 you say? Well, the original plan was to have only one Beta but as time went by and &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460960"&gt;certain key features&lt;/a&gt; were stuck in the review process, the decision was made to have two Betas.&lt;br /&gt;&lt;br /&gt;SeaMonkey 2 Beta 1 will use the same rendering engine as Firefox 3.5.1, Gecko 1.9.1.1, including the recent security fixes and overall improvements, and the same MailNews backend as Thunderbird Beta 3 which will be released in parallel.&lt;br /&gt;&lt;br /&gt;This is the first post since the Alpha 3 Roundup so the below changes (except Forgotten Fixes) are all relative to that. I didn't include screenshots this time, but of course only to encourage you to download and try SeaMonkey 2.0 Beta 1 yourself when it is released! :-)&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Noteworthy Changes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;new Download Manager (supports cross-session resumable downloads)&lt;/li&gt;&lt;li&gt;fully localizable builds (Beta 1 will be available in 17 languages including US English)&lt;/li&gt;&lt;li&gt;Feed Preview (browser feed integration)&lt;/li&gt;&lt;li&gt;Geolocation UI (no provider yet)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;searchable Cookies&lt;/li&gt;&lt;li&gt;&lt;acronym title="Find As You Type" lang="en"&gt;FAYT&lt;/acronym&gt; improvements&lt;/li&gt;&lt;li&gt;image zoom (available with full page zoom)&lt;/li&gt;&lt;li&gt;EV certificate UI (status bar, location bar)&lt;br /&gt;&lt;/li&gt;&lt;li&gt;support for -new-tab and -new-window command line options&lt;/li&gt;&lt;li&gt;dropped support for Palm Sync Extension&lt;br /&gt;&lt;/li&gt;&lt;li&gt;Audio/Video improvements&lt;/li&gt;&lt;li&gt;MailNews:&lt;/li&gt;&lt;ul&gt;&lt;li&gt;Archive functionality&lt;/li&gt;&lt;li&gt;customizable toolbars&lt;/li&gt;&lt;li&gt;filter improvements&lt;br /&gt;&lt;/li&gt;&lt;li&gt;menu entries for feed summary/web page choices&lt;/li&gt;&lt;li&gt;preferences for signature text, closing standalone message window when using Del and checking for new mail only after opening the MailNews window&lt;/li&gt;&lt;/ul&gt;&lt;/ul&gt;&lt;br /&gt;&lt;div&gt; &lt;span style="font-weight: bold;"&gt;Forgotton Fixes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;redesign / simplify Filter Rule Dialog (added Forward/Reply filter actions) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=294094"&gt;Bug 294094&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;MailNews Activities: provide a centralized alert/message service to allow different front-end displays for alerts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=481431"&gt;Bug 481431&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add filtering for IMAP folders other than the Inbox: backend (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=257415"&gt;Bug 257415&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add web search for selected text to mail window context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=154658"&gt;Bug 154658&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disentangle SeaMonkey and Thunderbird UI (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=390262"&gt;Bug 390262&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use Tango style smileys (emoticons) in MailNews (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=484484"&gt;Bug 484484&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;put signature editing in UI (as an alternative to selecting a file) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=324495"&gt;Bug 324495&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;place default Archive folder under Local Folders for deferred POP3 accounts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476218"&gt;Bug 476218&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure to use correct date after undo of move/delete/archive of POP3 message (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479163"&gt;Bug 479163&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not corrupt attributes of tags (such as IMG) when re-editing (Edit Draft, Forward Inline, Edit As New) quoted-printable HTML messages [had been backed out] (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=307023"&gt;Bug 307023&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make delay for moving between mails using cursor keys configurable (mailnews.threadpane_select_delay) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=242791"&gt;Bug 242791&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when entering an invalid email address (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479206"&gt;Bug 479206&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;split off attaching functionality from AttachFile() to AttachFiles() so that extensions can more easily add attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464651"&gt;Bug 464651&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;maintain offline copy of message when moving it between IMAP folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=439108"&gt;Bug 439108&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make mail.spam.markAsNotJunkMarksUnRead only apply when message is in Junk folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478840"&gt;Bug 478840&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;assign SpecialFolder attribute Archive to main Archive folders to aid customizability (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=480546"&gt;Bug 480546&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Forward Inline work when trying to send message without specified charset as UTF-8 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=303540"&gt;Bug 303540&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when IMAP folder path ends with hierarchy delimiter (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=480870"&gt;Bug 480870&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Match All Messages persist for saved searches (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477254"&gt;Bug 477254&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;maintain BCC field for sent email in message summary file (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=481667"&gt;Bug 481667&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add search all fields capability ("From, To or CC") to available Message View criteria (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=310359"&gt;Bug 310359&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add BCC to search all fields capability ("From, To, CC or BCC") of available Message View criteria (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=483629"&gt;Bug 483629&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support BCC headers in normal IMAP header parsing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=501763"&gt;Bug 501763&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Tools&gt;Import&gt;Mail&gt;Outlook/Communicator 4.x back button work in case of error (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=216155"&gt;Bug 216155&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support opening .eml files from the command line using relative paths (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=376089"&gt;Bug 376089&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to open .eml (message/rfc822) files using file:// URL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466959"&gt;Bug 466959&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when trying to copy/move .eml to folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=489011"&gt;Bug 489011&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make replying (HTML reply with auto-detect send format) to plain text quote not trigger conversion warning (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=279745"&gt;Bug 279745&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow using "Tags isn't empty" search condition (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473091"&gt;Bug 473091&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Compact All compact offline storage for news servers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482039"&gt;Bug 482039&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;escape username for prompting for password so auth does not fail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=485395"&gt;Bug 485395&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up undoing move/delete of large number of local messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=488606"&gt;Bug 488606&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash upon accessing IMAP server with duplicate entries in .mailboxlist (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=376192"&gt;Bug 376192&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make IMAP auto sync use IMAP STATUS command to see if folder has changed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428266"&gt;Bug 428266&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change "RSS News &amp;amp; Blogs" to "Blogs &amp;amp; News Feeds" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461711"&gt;Bug 461711&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure tags are not lost when IMAP server does not support custom keywords (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=370440"&gt;Bug 370440&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make pressing OK button in Account Settings save data and close dialog when changing Junk settings (find Junk folder case-insensitively) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=368617"&gt;Bug 368617&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not apply retention policy to special folders (Drafts, Templates, Outbox) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=412690"&gt;Bug 412690&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Forward/Reply filters update message status for forwarded/replied message (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=366968"&gt;Bug 366968&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure to use configured port for NNTP, not default 119 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470907"&gt;Bug 470907&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make MIME decoding RFC 2368 conformant (decode all parts of a mailto: URI's query string except body, e.g. Newsgroup or Newshost) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=443851"&gt;Bug 443851&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add preferences to not add signature to replies and forwards (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=167319"&gt;Bug 167319&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make standalone message view advance to next message when deleting viewed message from outside (respecting mail.delete_matches_sort_order and IMAP mark-as-deleted model) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486954"&gt;Bug 486954&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not ignore IMAP CAPABILITY response (used to determine Quota/Sharing) in greeting after authentication (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470650"&gt;Bug 470650&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ability to show message dates in/with senders' time zones in message headers (mailnews.display.date_senders_timezone, replaces mailnews.display.original_date) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=392307"&gt;Bug 392307&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure to use correct date format (short if same day) when displaying messages in/with senders' time zones (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=483034"&gt;Bug 483034&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use disk cache (cross-session availability) for IMAP messages not downloaded for offline use (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450456"&gt;Bug 450456&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make local moves and copies transfer all database info (including ones added by extensions, e.g. TaQuilla soft tag percent matches) and add prefs for exceptions (mailnews.database.summary.dontPreserveOnCopy|Move) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459680"&gt;Bug 459680&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;move all database info for IMAP moves and copies (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486007"&gt;Bug 486007&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;close IMAP connections on MailNews shutdown (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=485995"&gt;Bug 485995&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename "Offline" tab to "Synchronization" in Folder Properties and preference pane label "Syncing &amp;amp; Disk Space" to "Synchronization &amp;amp; Storage" for IMAP and news accounts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478605"&gt;Bug 478605&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to choose subject prefix for forwarded messages (mail.forward_subject_prefix) and make "Fwd" the default (remove square brackets around subject) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=194788"&gt;Bug 194788&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make adding in-reply-to= to references= work when parsing mailto: URLs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=443848"&gt;Bug 443848&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add per-account option to inhibit Junk whitelisting of identities' email addresses/domain (template: mail.server.default.inhibitWhiteListingIdentityUser|Domain) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=452879"&gt;Bug 452879&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable preferences to inhibit user whitelisting (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486420"&gt;Bug 486420&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure message pane layout does not break after deleting/moving top message with Sort by Date/Grouped By Sort active (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482195"&gt;Bug 482195&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not expunge IMAP messages marked as deleted when auto-expunge is off (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=484445"&gt;Bug 484445&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;maintain Junk status in keywords when moving mail to IMAP account (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=384853"&gt;Bug 384853&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure biff (new mail notification) is triggered when automatically checking IMAP Inbox for new mail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459487"&gt;Bug 459487&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ensure folders do not falsely indicate new messages (unread count = pending unread + unread messages in DB) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482754"&gt;Bug 482754&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make moving multiple local folders to IMAP folder work again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448550"&gt;Bug 448550&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;tidy up Feed Subscription (fix drag &amp;amp; drop and hide virtual folders in Feed Subscriptions dialog, stop updating feeds in Trash, make feeds moved out of Trash work, clean up RDF files after emptying Trash) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=471932"&gt;Bug 471932&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;increase timeout for IMAP copies/moves based on number of messages (assuming 40 messages/sec) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=409259"&gt;Bug 409259&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement customizable toolbars in MailNews (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=413385"&gt;Bug 413385&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use correct message count for virtual folders opened in new window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=485494"&gt;Bug 485494&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;increase maximum number of recipients per MAPI call to 2000 (was 100) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=305168"&gt;Bug 305168&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while sending mail on shutdown (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=489779"&gt;Bug 489779&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not hang while doing quicksearch when 'sort by' is threaded and folder is large (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=489711"&gt;Bug 489711&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Account Manager window size configurable per locale to prevent cropping buttons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=317659"&gt;Bug 317659&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix accesskeys in Account Settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=313245"&gt;Bug 313245&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix IMAP download when going offline (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=471695"&gt;Bug 471695&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent Invalid MAIL extension (SIZE=0) error while trying to send return receipt (skip file size cache) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462866"&gt;Bug 462866&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;wait one day before removing RSS messages from cache after disappearing from feed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451737"&gt;Bug 451737&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add feed summary/web page choices to menus (View/Feed Message Body As, Message/Open Feed Message) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438429"&gt;Bug 438429&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ignore tries to open/drag&amp;amp;drop deleted attachments (stops adding x-moz-deleted to MIME types db which broke ability to send attachments) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476400"&gt;Bug 476400&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not process feeds with non-2xx status (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=491720"&gt;Bug 491720&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash clicking on newsgroup (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460036"&gt;Bug 460036&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up selecting threaded Saved Search (skip saving selection when there is none) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466048"&gt;Bug 466048&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not toggle header area when deleting message from cross-folder saved searches (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=492149"&gt;Bug 492149&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change mail.strictly_mime.parm_folding pref default to 1 (encode Content-Type name param in legacy RFC2047 way but separated into multiple lines) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486682"&gt;Bug 486682&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix MAPI support on Win XP (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482966"&gt;Bug 482966&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not hang when clicking virtual folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=489993"&gt;Bug 489993&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make pressing Shift while clicking Forward toggle HTML/plain text composition mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=228562"&gt;Bug 228562&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure to close local IMAP DBs (.msf files) after doing autosync (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470221"&gt;Bug 470221&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;block remote content for messages only (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=374578"&gt;Bug 374578&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add per-account option for flat archiving (mail.server.default.archive_granularity) and change default to per-year archiving (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486827"&gt;Bug 486827&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement UI for Archive functionality (menu item, shortcut Shift+A and context menu entry) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482458"&gt;Bug 482458&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remember unsolicited MYRIGHTS response (fix getting IMAP folder ACL, allow deleting messages) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493209"&gt;Bug 493209&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow deleting complete collapsed threads (using Shift+Del with prefs mail.warn_on_collapsed_thread_operation and mail.operate_on_msgs_in_collapsed_threads set to true) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448288"&gt;Bug 448288&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not truncate name part with '&amp;amp;' when using drag &amp;amp; drop on attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=485514"&gt;Bug 485514&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pref to close standalone window when using Del (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=80574"&gt;Bug 80574&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for IMAP COMPRESS Extension (RFC 4978, saves bandwidth, pref: mail.server.default.use_compress_deflate) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=401673"&gt;Bug 401673&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pref to choose whether to only check for new mail after opening MailNews (default: check upon opening any new window, including browser) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450263"&gt;Bug 450263&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change Delete button text to Undelete for message marked as deleted (IMAP mark as deleted model) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=207485"&gt;Bug 207485&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix case of duplicate messages appearing in list and some messages not appearing (IMAP) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=414723"&gt;Bug 414723&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not interpret IMAP attachment text file (from OEX composed email) as HTML (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493157"&gt;Bug 493157&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not create zero-byte file when using drag and drop (to desktop or other folder) with attachment on Vista (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=458159"&gt;Bug 458159&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove unused pref mail.imap.fetch_by_chunks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449407"&gt;Bug 449407&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do LIST to find out whether parent folder supports subfolders when creating Archive subfolder fails with IMAP (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=492921"&gt;Bug 492921&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not hang on shutdown when appending message to IMAP folder via a filter (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=497598"&gt;Bug 497598&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix problems with Customizable Toolbar multistate buttons (Junk, Delete) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=491676"&gt;Bug 491676&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure moving more than two folders into another IMAP folder works (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=496905"&gt;Bug 496905&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not forget (Junk) status when detaching attachment (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=340886"&gt;Bug 340886&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set NEW status of incoming mail before filtering starts (make Status is/isn't New filters work) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=272963"&gt;Bug 272963&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;indicate 'Deleted Attachment' in inline text (add "You deleted an attachment from this message.") (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=329915"&gt;Bug 329915&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not trigger new mail notification (biff) for Junk and Trash folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=487418"&gt;Bug 487418&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;clean up Disk Space UI, hide "Always delete read messages" checkbox (unhide: comment 33) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=326584"&gt;Bug 326584&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash setting charset when composing/sending mail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=301264"&gt;Bug 301264&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove IFRAME under feed messages viewed as "summary" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=497895"&gt;Bug 497895&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable "File &gt; Offline &gt; Download/Sync Now" independent from whether selected account is enabled for download (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=245315"&gt;Bug 245315&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not use signature text entered in UI if file checkbox is checked without file specified (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=499558"&gt;Bug 499558&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;check file size of temp file created during compact before copying back over original (prevent data loss due to virus scan) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=491303"&gt;Bug 491303&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent IMAP connections from hanging when going offline (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=500416"&gt;Bug 500416&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve "server has disabled login" error message, use "server doesn't allow plaintext authentication without STARTTLS or SSL/TLS" instead (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=491709"&gt;Bug 491709&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when switching newsgroup (with invalid thread index) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493186"&gt;Bug 493186&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure non-ASCII IMAP folder names appear correct after rename (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=499278"&gt;Bug 499278&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when emptying trash (check if database is available) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=481866"&gt;Bug 481866&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when downloading messages for offline use (check if database is available) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=492665"&gt;Bug 492665&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;expand newly created thread if selected message started the thread (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=494811"&gt;Bug 494811&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow extensions to add custom search terms (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495519"&gt;Bug 495519&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure IMAP cross-server move does not fail after copy to different folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=497622"&gt;Bug 497622&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure messages deleted while offline are deleted from server when going online (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475570"&gt;Bug 475570&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;include host name in Message Disposition Notification (MDN) Reporting-UA field (required by RFC3798) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=199942"&gt;Bug 199942&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Address Book&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;improve autocomplete performance (up to 5 times) by using directory search facilities (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450134"&gt;Bug 450134&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reset default for collecting addresses to Collected Addresses address book (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=330320"&gt;Bug 330320&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support GSSAPI (Kerberos) authentication for binding to LDAP servers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=308118"&gt;Bug 308118&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;save "Allow remote images in HTML mail" state across Address Book restarts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461660"&gt;Bug 461660&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename Cards to Contacts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=455246"&gt;Bug 455246&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;refer to Remote Content rather than Remote Images in "Allow..." to include audio/video case (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=480674"&gt;Bug 480674&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Composer&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash when selecting Select Row, Column, or All-Cells from table context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461866"&gt;Bug 461866&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;DOM Inspector&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add Ctrl+Shift+I shortcut (Inspect Page) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477400"&gt;Bug 477400&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Copy URI to stylesheet context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=212754"&gt;Bug 212754&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;ChatZilla&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add Navigator customizable toolbar button for ChatZilla (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=485818"&gt;Bug 485818&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;JavaScript Debugger (Venkman)&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make evaluating variables return correct results (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=458020"&gt;Bug 458020&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow debugging scripts compiled before the debugger got activated (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=480765"&gt;Bug 480765&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to disable debugging using a pref (extensions.venkman.jsd.initAtStartup) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=483681"&gt;Bug 483681&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support language features of JS 1.7 in console (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=487780"&gt;Bug 487780&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not open browser window when invoking SeaMonkey with just "-venkman" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493077"&gt;Bug 493077&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Audio/Video&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add throbber to video overlay to indicate buffering (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470983"&gt;Bug 470983&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;always display controls for video element without video track (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462368"&gt;Bug 462368&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add video tag controls to Modern theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=458246"&gt;Bug 458246&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show error icon when error occurs while loading video (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=481040"&gt;Bug 481040&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;minimize CPU usage by using display:none for video controls on hidden items (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=484935"&gt;Bug 484935&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Ogg Theora backend for HTML5 video element compile/work on Solaris (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449754"&gt;Bug 449754&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;initiate media load when appending source child element to video element (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462455"&gt;Bug 462455&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make video scrubber jump to clicked position instead of taking incremental steps (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475286"&gt;Bug 475286&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;notify media element of error when media data cannot be retrieved or used (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476731"&gt;Bug 476731&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;cache media data after playing it and across seeks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475441"&gt;Bug 475441&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add UI for video volume control (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475317"&gt;Bug 475317&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show numeric position and duration on video controls (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475318"&gt;Bug 475318&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure video scrubber thumb does not overlap play/pause button and duration (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=488083"&gt;Bug 488083&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure video volume slider is set according to mute state (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=488084"&gt;Bug 488084&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make HTML5 video/audio elements not inherit document direction (i.e. always LTR) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=489631"&gt;Bug 489631&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;scale video in object/iframe element to full size (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486673"&gt;Bug 486673&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Video/Audio stays in sync under high CPU load on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=494116"&gt;Bug 494116&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not handle Wave files internally (due to lack of support for non-PCM encoded Wave files; audio tag still supported) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475110"&gt;Bug 475110&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;stop playback while buffering (prevent audio out of sync after video resumes from buffering) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=487552"&gt;Bug 487552&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use an own thread for decoding (helps playing HD Theora videos play smoothly) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474540"&gt;Bug 474540&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix audio/video out of sync with Ogg Theora + Vorbis (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466699"&gt;Bug 466699&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;respect offset in Theora videos (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493140"&gt;Bug 493140&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not buffer video (stop after first frame) unless it has 'autobuffer' attribute set on it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479863"&gt;Bug 479863&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;provide preferred font name for video controls on Windows (Arial) and Mac (Helvetica) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=489902"&gt;Bug 489902&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;move scrubber to end of buffer bar when playback ends (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=481106"&gt;Bug 481106&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update time shown on scrubber if it changed while hidden (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493523"&gt;Bug 493523&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make video control playback postion bar keep up with thumb changes while dragging (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493884"&gt;Bug 493884&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent video thumb from jumping around while being dragged (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493508"&gt;Bug 493508&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;start decoding from previous keyframe after seeking video to avoid showing ugly frames (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463358"&gt;Bug 463358&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update video scrubber icons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493130"&gt;Bug 493130&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show correct play button state when restarting video after it has ended (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=496231"&gt;Bug 496231&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;scale video in OBJECT or IFRAME element to full element size, preserving aspect ratio (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486673"&gt;Bug 486673&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make seeking in bufferred ranges fast by trying a 'bounded seek' in each buffered data range before falling back to a seek over the whole resource (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469408"&gt;Bug 469408&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support creation of Audio JS objects outside of the document (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=454971"&gt;Bug 454971&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make audio/video focusable and keyboard accessible (Space, Left/Right and Up/Down with and without Ctrl, Home/End) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486899"&gt;Bug 486899&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Session Restore&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make Start New Session follow Browser Startup page settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=481850"&gt;Bug 481850&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reduce Session Restore performance hit by not flushing layout on saving scroll position (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=484648"&gt;Bug 484648&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show Session Restore screen (about:sessionrestore) when there is nothing to restore (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=488669"&gt;Bug 488669&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;handle invalid XPaths better (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=487922"&gt;Bug 487922&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent empty prefs.js/sessionstore.js after system crash (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477934"&gt;Bug 477934&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Download Manager&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make SeaMonkey download manager use Toolkit backend (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=381157"&gt;Bug 381157&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement tree-based UI for Toolkit download manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472001"&gt;Bug 472001&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement new download progress dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=483241"&gt;Bug 483241&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove/migrate old download progress dialog prefs (browser.download.progressDnldDialog.*) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495048"&gt;Bug 495048&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fork Pause/Resume/Retry etc. icons and add different ones for Classic/Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495711"&gt;Bug 495711&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use correct filename in "Save Link Target As..." (check Content-Disposition header) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=426742"&gt;Bug 426742&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Download pref pane for use with new Download Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490464"&gt;Bug 490464&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Space key pause/resume downloads (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=487681"&gt;Bug 487681&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Del key cancel/delete downloads (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474622"&gt;Bug 474622&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;open downloads using Return/Enter or double click (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495545"&gt;Bug 495545&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Certificates&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;allow to mark imported self-signed server certificate trusted (enable edit button) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453466"&gt;Bug 453466&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;never treat SSL certificates added as exceptions as EV (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445871"&gt;Bug 445871&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;include identity indicator (EV certificate UI) in Status Bar and Location Bar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465504"&gt;Bug 465504&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;only prompt once per server/session for client certificate (pref: security.remember_cert_checkbox_default_setting) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431819"&gt;Bug 431819&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Locales&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add Turkish (tr) to sources locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=503276"&gt;Bug 503276&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;History&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash when deleting entries in sidebar showing pages grouped by day and site (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470586"&gt;Bug 470586&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make location bar autocomplete even faster (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479739"&gt;Bug 479739&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use indices for sorting in frecency calculation query (up to 7 times faster) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482276"&gt;Bug 482276&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure clicking URL in history drop-down auto-completes URL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468363"&gt;Bug 468363&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow sorting container view without sorting containers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473157"&gt;Bug 473157&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Help&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use CSS for smileys in MailNews Help (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=285325"&gt;Bug 285325&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve styling of Help find bar in Modern (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=367272"&gt;Bug 367272&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reflect removal of Help sidebar tabs in Help contents (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=406551"&gt;Bug 406551&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Help on signature-related settings in Composition &amp;amp; Addressing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=489169"&gt;Bug 489169&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Help on History and Location Bar pref panel with respect to Places prefs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472840"&gt;Bug 472840&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Help for MailNews RSS Accounts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=286975"&gt;Bug 286975&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Help on Synchronization &amp;amp; Storage (Disk Space) settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474525"&gt;Bug 474525&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Mac&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make Session Restore not special-case closed windows on Mac (assume windows are closed purposely) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=481370"&gt;Bug 481370&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve drawing native search fields and dropdown buttons in RTL mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477590"&gt;Bug 477590&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure file picker dialog closes when Open/Save/Cancel is clicked (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473467"&gt;Bug 473467&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;select folder with new mail when clicking on Growl alert (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467159"&gt;Bug 467159&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make font name unique across all documents for @font-face (downloadable fonts) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=480267"&gt;Bug 480267&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not beep when closing preferences window using Cmd+W (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476226"&gt;Bug 476226&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;respect keyboard modifiers (e.g. Cmd) when clicking bookmarks in native menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490002"&gt;Bug 490002&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve parsing proxy bypass hosts/domains on Mac when using system proxy settings (*.something syntax) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470207"&gt;Bug 470207&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve proxy bypass hosts/domains parsing when using system proxy settings (make domain.tld match *.domain.tld) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470207"&gt;Bug 470207&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;GTK/Linux&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use correct icon for Close button in "about {addon}" dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=422763"&gt;Bug 422763&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash on quit (stop trying to unload Xinerama) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448512"&gt;Bug 448512&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not convert font sizes to integer on GTK2 (allow pt fractions) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=190778"&gt;Bug 190778&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;pull Venkman (JavaScript Debugger) from Mercurial instead of CVS (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482686"&gt;Bug 482686&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add --disable-jit option to js configure (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463172"&gt;Bug 463172&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix usage of WinCE SDK (adds --disable-windows-mobile-components) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486684"&gt;Bug 486684&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make "make install" work for Darwin/X11 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=486036"&gt;Bug 486036&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;require Sun C++ 5.9 (Sun Studio 12) on Sparc Solaris (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476448"&gt;Bug 476448&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure icons (zoom in/out) are included in static build (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=389448"&gt;Bug 389448&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;build locales from Mercurial (--enable-ui-locale / source L10n) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=286110"&gt;Bug 286110&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove debug UI from final release branches (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=202315"&gt;Bug 202315&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add search bar to Cookie Manager and confirm deleting multiple cookies (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476175"&gt;Bug 476175&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow the Plugin Finder Service to install plugins using installers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435788"&gt;Bug 435788&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speculatively load stylesheets (CSS preloading) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=457810"&gt;Bug 457810&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show mixed content warning if an image fails to load (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=455367"&gt;Bug 455367&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure XML preview header is RTL in RTL locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=350597"&gt;Bug 350597&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make about:plugins support RTL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=437844"&gt;Bug 437844&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make style matching with local font always use @font-face rule style (e.g. font-weight: bold) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465463"&gt;Bug 465463&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable synthetic bold/italic for downloadable fonts specified as bold/italic in @font-face rule (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468387"&gt;Bug 468387&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support specifying direction (RTL/LTR) for :-moz-tree-cell pseudo class through CSS (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478377"&gt;Bug 478377&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make networking work correctly when offline state changes while going offline (e.g. when waking from sleep) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470274"&gt;Bug 470274&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove "halo" around buttons on Modern theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=418090"&gt;Bug 418090&lt;/a&gt;, &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479992"&gt;Bug 479992&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;correct clipping when -moz-background-clip:padding is in effect and box has round corners (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=456219"&gt;Bug 456219&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;increase JPEG writer default quality to 92 (was: 50) and do not subsample (affects images pasted from clipboard on Windows) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444898"&gt;Bug 444898&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure new FAYT implementation does not prevent entering text in text input boxes while search is active (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466994"&gt;Bug 466994&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;stop FAYT upon loading new webpage (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470175"&gt;Bug 470175&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support -new-tab and -new-window command line options (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=479600"&gt;Bug 479600&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement getBrowserAtIndex() and getBrowserIndexForDocument() for better extension compatibility (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=482291"&gt;Bug 482291&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;apply system background color to tab preview when new tab is loading (respect browser.display.use_system_colors) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478575"&gt;Bug 478575&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;expire saved form data after some time (pref: browser.formfill.expire_days if present, else browser.history_expire_days) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=243136"&gt;Bug 243136&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;migrate multiple logins per site from wallet to login manager (Password Manager) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474846"&gt;Bug 474846&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;encrypt all migrated Base64-encoded passwords/logins once when Master Password is used (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=316084"&gt;Bug 316084&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remember scroll position on pages with cache-control: no-store HTTP header (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=215405"&gt;Bug 215405&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support RTL mode for FTP and Gopher index pages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=348233"&gt;Bug 348233&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Page Info find feeds with link rel="feed" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=484371"&gt;Bug 484371&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when using Fontconfig on Solaris (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474758"&gt;Bug 474758&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set LD_LIBRARY_PATH on Solaris if shared library symlink is found (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472269"&gt;Bug 472269&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add native theming to groupboxes on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=390734"&gt;Bug 390734&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure native theming of groupboxes on Windows introduced no UI regressions (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=484567"&gt;Bug 484567&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use transaction for better performance importing from legacy storage (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=483693"&gt;Bug 483693&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make form history not remember default values of unmodified fields (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463486"&gt;Bug 463486&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;stop setting mouse cursor to progress mode (spinner) while pages are transferring (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=481359"&gt;Bug 481359&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable undo when text boxes show non-editable descriptive text (emptytext) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=471776"&gt;Bug 471776&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up file uploads (HTTP POST) on Windows by increasing maximum TCP sending window to 128 KB (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=454990"&gt;Bug 454990&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure View Page Source shows resulting page after form submit (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469302"&gt;Bug 469302&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure View Page Source uses correct cache entry when issuing GET on POST-ed form (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475542"&gt;Bug 475542&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure ellipsis for narrow tree columns does not leak into wrong column (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=249141"&gt;Bug 249141&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;exclude ICS (Internet Connection Sharing) adapters when checking whether to initiate dial-up login (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465158"&gt;Bug 465158&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure keyboard Back/Forward keys do not go back/forward twice (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=400568"&gt;Bug 400568&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Help key (F1) work again in Page Info (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=488972"&gt;Bug 488972&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove separators, springs and spacers when using "Restore Default Set" in Customize Toolbar dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475711"&gt;Bug 475711&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;hide undetermined progress bar in update dialog to stop unnecessary CPU usage (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=341749"&gt;Bug 341749&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not unminimize windows when changing desktop settings (theme, appearance) on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=169582"&gt;Bug 169582&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use URLs in Add-on Manager that do not trigger SSL certificate warnings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=488856"&gt;Bug 488856&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure registry key SeaMonkeyHTML is created under HKCU rather than HKCR on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=488499"&gt;Bug 488499&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;cancel downloads in progress for previous releases on startup instead of resuming them (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=485624"&gt;Bug 485624&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;package new updater icon to prevent License File Not Found error during update (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=487012"&gt;Bug 487012&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to zoom images (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=163537"&gt;Bug 163537&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure vertical scrollbars stay visible when the window shrinks horizontally (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435652"&gt;Bug 435652&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash displaying profile selection after invocation via internet shortcut (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476988"&gt;Bug 476988&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement Feed Preview (browser feed integration) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=415372"&gt;Bug 415372&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;always show geo.enabled (geolocation pref) in about:config (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=491653"&gt;Bug 491653&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make changes to geo.enabled pref apply without application restart (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=491766"&gt;Bug 491766&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable DNS prefetching when manual proxy is in use (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=488162"&gt;Bug 488162&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not fill login forms when username field is blank while leaving login fields (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=471906"&gt;Bug 471906&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;restore missing groupmark icon in Bookmark Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=494159"&gt;Bug 494159&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;drop support for the Palm Sync Extension (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=495232"&gt;Bug 495232&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash with malformed pluginreg.dat (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=493545"&gt;Bug 493545&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;correct Get Add-ons panel search field alignment (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=490195"&gt;Bug 490195&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;integrate Network Geolocation Provider (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=488472"&gt;Bug 488472&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix Location Bar dropdown search row styling/background for the default theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=494162"&gt;Bug 494162&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support new FTP listing style in Modern (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=398138"&gt;Bug 398138&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;open only one Page Info window per location (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=86400"&gt;Bug 86400&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix height of list in "Select helper application" dialog for Modern (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=498153"&gt;Bug 498153&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure build ID does not disappear from title bar on reload with Nightly Tester Tools installed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462997"&gt;Bug 462997&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up Random Number Generator (RNG) by not initializing twice (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=489811"&gt;Bug 489811&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up startup by not accessing IE Internet Temporary Files and Windows Temp folder for seeding (on platforms that do not need it) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=501605"&gt;Bug 501605&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;port several Page Info improvements from Firefox (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=491310"&gt;Bug 491310&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;span style="font-weight: bold;"&gt;Edit:&lt;/span&gt; replaced erroneously inserted source/video tags, added EV cert UI to Noteworthy list&lt;br /&gt;        &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-3940510230314955004?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/3940510230314955004/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=3940510230314955004' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/3940510230314955004'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/3940510230314955004'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2009/07/beta-1-roundup.html' title='Beta 1 Roundup'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-8413045515546589341</id><published>2009-02-20T18:51:00.010+01:00</published><updated>2009-02-20T20:18:13.485+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='av'/><category scheme='http://www.blogger.com/atom/ns#' term='ssl'/><category scheme='http://www.blogger.com/atom/ns#' term='printing'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='history'/><category scheme='http://www.blogger.com/atom/ns#' term='l10n'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='bookmarks'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>Alpha 3 Roundup</title><content type='html'>It's been a while... again. I know this is not exactly Release Early, Release Often but on the other hand it gives me the opportunity to present you the full (as in "in one go", not as in "all-embracing") list of changes between Alpha 2 and Alpha 3.&lt;br /&gt;&lt;br /&gt;&lt;span class="std nobr"&gt;&lt;/span&gt; A lot happened since Alpha 2. First to appear was the new Places-based history (now using &lt;a href="http://www.sqlite.org/"&gt;SQLite&lt;/a&gt; instead of being &lt;a href="http://en.wikipedia.org/wiki/Mork_%28file_format%29"&gt;Mork&lt;/a&gt;-based), including the new location bar which now uses the &lt;a href="https://developer.mozilla.org/en/The_Places_frecency_algorithm"&gt;frecency&lt;/a&gt; algorithm to determine which addresses to show in the drop down menu depending on what you type (it searches the history of visited pages, URL and title by default).&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_1iQQ8MR1dRs/SZ79F9ds1rI/AAAAAAAAAAw/G9dChHr7xeE/s1600-h/location-bar-places-history-frecency.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 254px;" src="http://4.bp.blogspot.com/_1iQQ8MR1dRs/SZ79F9ds1rI/AAAAAAAAAAw/G9dChHr7xeE/s320/location-bar-places-history-frecency.png" alt="" id="BLOGGER_PHOTO_ID_5304955689929332402" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Next the new Password Manager (and FF3-compatible backend) was implemented including searchability, notification bars replacing modal login dialogs, and always encrypting instead of (by default) merely obscuring passwords. [&lt;acronym title="By the way" lang="en"&gt;BTW&lt;/acronym&gt; the Cookie Manager is still lacking searchability but I hope to change that through &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476175"&gt;Bug 476175&lt;/a&gt; real soon now.]&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://4.bp.blogspot.com/_1iQQ8MR1dRs/SZ7-njatO0I/AAAAAAAAABQ/RiTPncIZ6Tg/s1600-h/password-manager-search.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 127px;" src="http://4.bp.blogspot.com/_1iQQ8MR1dRs/SZ7-njatO0I/AAAAAAAAABQ/RiTPncIZ6Tg/s320/password-manager-search.png" alt="" id="BLOGGER_PHOTO_ID_5304957366564633410" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Then finally Navigator toolbars were made customizable like in Firefox, i.e. icons (alternatively text) can now be dragged around, regrouped and added/removed from the Navigator toolbars, including those from third parties (Add-ons). Later support for customizing Navigator menubars was added, too.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_1iQQ8MR1dRs/SZ79Us8H69I/AAAAAAAAAA4/NRo-RcuIiaI/s1600-h/customizable-toolbar-navigator.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 233px;" src="http://2.bp.blogspot.com/_1iQQ8MR1dRs/SZ79Us8H69I/AAAAAAAAAA4/NRo-RcuIiaI/s320/customizable-toolbar-navigator.png" alt="" id="BLOGGER_PHOTO_ID_5304955943191571410" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Towards the end of the development cycle one of the most anticipated features made it into the application: Session restore (crash recovery). Now, when SeaMonkey crashes all your browser windows and tabs will be restored automatically or on request (including form data!).&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_1iQQ8MR1dRs/SZ79jPZWa4I/AAAAAAAAABA/_W9JfrVmlo4/s1600-h/about-sessionrestore.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 319px;" src="http://3.bp.blogspot.com/_1iQQ8MR1dRs/SZ79jPZWa4I/AAAAAAAAABA/_W9JfrVmlo4/s320/about-sessionrestore.png" alt="" id="BLOGGER_PHOTO_ID_5304956192959130498" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;You can also tell SeaMonkey to always restore your previous session in addition to crash recovery. Restoring closed tabs is not working yet (probably just a matter of time, &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478707"&gt;Bug 478707&lt;/a&gt; tracks this issue) but on the positive side the author of the Session Manager extension already adapted his &lt;a href="http://forums.mozillazine.org/viewtopic.php?p=5787705#p5787705"&gt;dev version&lt;/a&gt; to support SeaMonkey 2 Alpha 3 which allows you to handle multiple sessions.&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://1.bp.blogspot.com/_1iQQ8MR1dRs/SZ79udszoqI/AAAAAAAAABI/gScMFStAG1E/s1600-h/session-restore.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 175px;" src="http://1.bp.blogspot.com/_1iQQ8MR1dRs/SZ79udszoqI/AAAAAAAAABI/gScMFStAG1E/s320/session-restore.png" alt="" id="BLOGGER_PHOTO_ID_5304956385777394338" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;switch to Toolkit password manager: add SMTP protocol handlers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469807"&gt;Bug 469807&lt;/a&gt;), do not lose newsgroup username/password information when migrating from signons.txt (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470439"&gt;Bug 470439&lt;/a&gt;), let promptPassword unescape user names before use (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472824"&gt;Bug 472824&lt;/a&gt;), main part (use LoginManager, remove Wallet) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=390025"&gt;Bug 390025&lt;/a&gt;), also fixes: If stored SMTP password is incorrect, no prompt is made for correct one (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=155172"&gt;Bug 155172&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;@font-face support: implement downloadable font support on Linux (Mac and Windows have already been addressed in bug 441473) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=458169"&gt;Bug 458169&lt;/a&gt;), implement @font-face { src:local() } on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468218"&gt;Bug 468218&lt;/a&gt;), enable downloadable .otf fonts on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=458160"&gt;Bug 458160&lt;/a&gt;), improve handling of format hints for downloadable fonts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465452"&gt;Bug 465452&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove old Mork-based form history backend (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466414"&gt;Bug 466414&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Toolbar customization: Navigator part 2 (real customizability for browser toolbars on Linux+Windows) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=471372"&gt;Bug 471372&lt;/a&gt;), use sheet popup instead of popup window on Mac OS X (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=406780"&gt;Bug 406780&lt;/a&gt;), make menubars customizable (without grippied on Mac OS X) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475920"&gt;Bug 475920&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable installer to get directory path for directories immediately under some symlinks: uninstall part pending (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476106"&gt;Bug 476106&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make changing radio button for "Place a copy in" stick (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463470"&gt;Bug 463470&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show pretty name for non-ASCII or localized IMAP folder names immediately, not only when logged in (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450754"&gt;Bug 450754&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;apply correct RFC 2047 encoding and decoding: treat encoded words as atoms within headers (make parsing sender address containing commas not assume multiple addresses) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=254519"&gt;Bug 254519&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Download Now button on IMAP folder Offline properties work again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468155"&gt;Bug 468155&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make NNTP use socket type and msgIncomingServer.isSecure readonly (replace "Use secure connection (SSL)" checkbox by "SSL" radio option in news server settings) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463096"&gt;Bug 463096&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash in POP code (IncorporateComplete, e.g. when deleting an account) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=313234"&gt;Bug 313234&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash in POP code (AbortMailDelivery) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472022"&gt;Bug 472022&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;unfork Account Manager Security Preferences (add Manage Certificates and Security Devices buttons) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=455310"&gt;Bug 455310&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make definitions for protocols' default ports constants (DEFAULT_(protocol)_PORT) and accessible from script (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468444"&gt;Bug 468444&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement Undo Mark All Read (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=65775"&gt;Bug 65775&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve Return Receipt prompt button labels (Send Receipt/Ignore Request instead of OK/Cancel) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=249684"&gt;Bug 249684&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Space key not scroll the page if something other than a link is focused in it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465721"&gt;Bug 465721&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement new notification type (NewMailReceived) for cases where biff hasn't cleared but new mail arrives (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465381"&gt;Bug 465381&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix Get All New Messages and make it also check RSS accounts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=259212"&gt;Bug 259212&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve IMAP auto sync by downloading new mail for current folder even if other folders of the same account are scheduled for download (but haven't started yet) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467041"&gt;Bug 467041&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve IMAP auto sync by giving higher priority to folders opened by the user (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470447"&gt;Bug 470447&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;don't allow more than N open NNTP connections to a server (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=66150"&gt;Bug 66150&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not change port if TLS is active and mail.server.serverN.port pref is not set (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470067"&gt;Bug 470067&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change default for mail search and filters from "any" (OR) to "all" (AND) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=125631"&gt;Bug 125631&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;close .msf files after updating counts for newsgroups (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470219"&gt;Bug 470219&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove References from news postings forwarded inline (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464782"&gt;Bug 464782&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;respect personal namespace when trying to creating root IMAP folder (e.g. create under INBOX) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470269"&gt;Bug 470269&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make AltGr/Ctrl+Alt/Alt not trigger email address selection from the contacts autocomplete suggestion list (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464914"&gt;Bug 464914&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;check if destination folder exists when playing back offline IMAP operations (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470011"&gt;Bug 470011&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make setting SeaMonkey as default news application work (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468379"&gt;Bug 468379&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure "Automatically mark message as read After displaying for x seconds" always affects correct message (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=313227"&gt;Bug 313227&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update flags (e.g. Read) for cross folder views when flags are changed outside the view (e.g. Mark Folder Read) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472137"&gt;Bug 472137&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash on "Edit Draft" when mail is encrypted (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472028"&gt;Bug 472028&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix setting SeaMonkey as default mail/news client in the Windows start menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470913"&gt;Bug 470913&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Local Folders is translated in fresh profiles (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464425"&gt;Bug 464425&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve compact all folders popup (allow to disable it permanently, change button texts) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433619"&gt;Bug 433619&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ability to always keep flagged messages to retention policy (Disk Space settings, active by default) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=324147"&gt;Bug 324147&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for IMAP Archives folders (backend and Account Settings configurability) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451995"&gt;Bug 451995&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Archives folder sort towards top of folder pane (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473493"&gt;Bug 473493&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change Check Spelling shortcut to Ctrl+Shift+P (Ctrl+Shift+K clashes with Discontinue Link) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461317"&gt;Bug 461317&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement backend changes for MailNews transfer from wallet to login manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433316"&gt;Bug 433316&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not delete text in compose window when opening attachment (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468740"&gt;Bug 468740&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make importing Outlook Express settings from identity not named 'Main Identity' work (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466753"&gt;Bug 466753&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve "Edit Draft..." button (add to stand-alone windows, remove when switching from Drafts folder to saved search folder) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472386"&gt;Bug 472386&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;always save SMTP passwords (remove option to save temporarily) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474288"&gt;Bug 474288&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support localizing Archives folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473529"&gt;Bug 473529&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash if thread index for newly inserted header couldn't be found (e.g. when clicking on newsgroup) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460036"&gt;Bug 460036&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash getting Trash folder for account deferred to itself when quitting application (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=422907"&gt;Bug 422907&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix Archives folder picker identity manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474848"&gt;Bug 474848&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Junk controls work in standalone message window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475200"&gt;Bug 475200&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename TLS to STARTTLS in user preferences (IMAP/POP3), use a dropdown and hide "if available" option unless it is active (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=350314"&gt;Bug 350314&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;explicitly state in Disk Space account settings that messages are also deleted on the server for IMAP and POP accounts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=410597"&gt;Bug 410597&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;bring back missing Outbox icon to folder pane (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466261"&gt;Bug 466261&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix local mail summary file (.msf) getting out of date by doing a flush after copying messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=471682"&gt;Bug 471682&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix opening/saving file attachments with a '#' (hash, pound sign) in the name from IMAP folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=370951"&gt;Bug 370951&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add keyboard shortcuts to Message Filters dialog (Space: toggle, Delete: delete, Enter: edit) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=392529"&gt;Bug 392529&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure message status Replied is not ORed with other filter terms if the condition is AND (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474315"&gt;Bug 474315&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show account wizard when reopening MailNews after clicking on bad newsgroup link (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476135"&gt;Bug 476135&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show an alert if IMAP server (e.g. Zimbra) answers NO to LIST command (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=417285"&gt;Bug 417285&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when shutting down (IMAP) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464419"&gt;Bug 464419&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix Outlook Express POP3 import settings; import NNTP settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470725"&gt;Bug 470725&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use strict/correct threading by default (i.e. do not thread by subject) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449821"&gt;Bug 449821&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure invalid .msf files do not cause slow scrolling in folder pane (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469448"&gt;Bug 469448&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure new message headers arriving in folders are displayed by caching threads they are part of (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469231"&gt;Bug 469231&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;move message to Inbox if user marks a message in Junk folder as Not Junk (adds hidden pref mail.spam.markAsNotJunkMarksUnRead) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=208197"&gt;Bug 208197&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure messages marked as junk and moved to trash folder do not lose junk status if IMAP server does not support user-defined keywords (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=359339"&gt;Bug 359339&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not lose message flags (read, answered, forwarded etc.) when importing mail from Outlook Express (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=160027"&gt;Bug 160027&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to add more recipients after changing account (sender identity with Reply-To set) from drop down menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464448"&gt;Bug 464448&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use receive date when mails imported from Outlook Express have no Date header (previously date was displayed as e.g. year 2101) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=216613"&gt;Bug 216613&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make File/Compact Folders compact all folders of the selected folder's account (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477394"&gt;Bug 477394&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Mark Folder Read clear read state indications on collapsed threads (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465939"&gt;Bug 465939&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;handle IMAP folders containing a # sign in the name (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=115091"&gt;Bug 115091&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to re-attempt Send Unsent Messages if the first try fails (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477588"&gt;Bug 477588&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable tagging message with digits on shifted top row of (e.g. Belgian) AZERTY keyboard (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448289"&gt;Bug 448289&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix broken Help buttons (e.g. in Message Filters dialog) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478913"&gt;Bug 478913&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not let IMAP hang the UI (e.g. when resuming from standby) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476960"&gt;Bug 476960&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable JS for message content (mail and news, making javascript.allow.mailnews pref stop working), enable it for non-message content by default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=374577"&gt;Bug 374577&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow localizers to specify default value for mailnews.localizedRe (non-standard reply prefixes) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=319037"&gt;Bug 319037&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Address Book&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use all conditions in Advanced Address Book Search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467809"&gt;Bug 467809&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;drop "Card for:" on contact preview panes and use company/organization as a fallback if no name exists (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=126491"&gt;Bug 126491&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not collect outgoing email addresses that are present in OS X address book (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474259"&gt;Bug 474259&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;include Screen Name field in import/export to/from text files (CSV, TAB) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=261882"&gt;Bug 261882&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Bookmarks&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;remove ability to hide search bar in Bookmark Manager now that it is a search box (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467570"&gt;Bug 467570&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Bookmark Sidebar's Manage button bring existing Bookmark Manager to front if present (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=203400"&gt;Bug 203400&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;limit favicons in Bookmarks sidebar and Bookmark Manager to 16x16 pixels (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476740"&gt;Bug 476740&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;History&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use Places backend for SeaMonkey history (including location bar) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=382187"&gt;Bug 382187&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove old history backend (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448729"&gt;Bug 448729&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reimplement grouping in the main History window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468809"&gt;Bug 468809&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make new Places-based History sorting stick (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470195"&gt;Bug 470195&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use better Last Visited format in Places-based history (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470543"&gt;Bug 470543&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add UI prefs for new Places history functionality (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468326"&gt;Bug 468326&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve sorting in grouped view for Places-based history (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470544"&gt;Bug 470544&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reimplement delete history for site or domain (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473007"&gt;Bug 473007&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve Places history window context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477150"&gt;Bug 477150&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Audio/Video&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not allow Wave decoder to seek past the end of the file (don't crash) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466598"&gt;Bug 466598&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add prefs to disable audio/video support (media.ogg|wave.enabled) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448600"&gt;Bug 448600&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for audio tag (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449149"&gt;Bug 449149&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve video control fade in/out animation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461680"&gt;Bug 461680&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make video tag audio playback not stop after some seconds with ALSA backend playing via PulseAudio (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463627"&gt;Bug 463627&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not stop audio when navigating away from a page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470636"&gt;Bug 470636&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow playing a standalone Wave after it plays once through (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468992"&gt;Bug 468992&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix length calculation for 8-bit Wave files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469628"&gt;Bug 469628&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;keep aspect ratio when scaling video to fit inside its box (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449142"&gt;Bug 449142&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make audio tag src="a.wav" work (implement media type switching) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464158"&gt;Bug 464158&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make clickable area of video controls respect borders and padding (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470596"&gt;Bug 470596&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update video tag control icons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460155"&gt;Bug 460155&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display video controls right from the start (do not require initial mouse over) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469211"&gt;Bug 469211&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;suspend video download when leaving the page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460738"&gt;Bug 460738&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update libtheora to 1.0 release version (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462082"&gt;Bug 462082&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use filename for window title when displaying OGG audio/video files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463830"&gt;Bug 463830&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement progress bar/scrubber for video controls (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462113"&gt;Bug 462113&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while shutting down ogg decoder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464007"&gt;Bug 464007&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;convert little-endian Wave data to native endinaness on big-endian machines (e.g. PPC) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469698"&gt;Bug 469698&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ensure that YUV to RGB conversion puts bytes in the right order for big-endian machines (e.g. PPC) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=452698"&gt;Bug 452698&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure clicking video control's scrubber line causes appropriately large position change (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475861"&gt;Bug 475861&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support X-Content-Duration header (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469923"&gt;Bug 469923&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Preferences&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add preferences options for popup and missing plugin notification bars (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467174"&gt;Bug 467174&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display notification bar checkbox enabled even if pref is set to not block popups (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469338"&gt;Bug 469338&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use a separate pref (browser.urlbar.default.behavior) instead of empty restrict/match values to specify location bar matching defaults (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463459"&gt;Bug 463459&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;check pref urlbar.autocomplete.enabled again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=471903"&gt;Bug 471903&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;replace browser.urlbar.matchOnlyTyped pref by browser.urlbar.restrict.typed "~" and browser.urlbar.default.behavior value 32 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473734"&gt;Bug 473734&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Certificates&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;show expanded technical details on SSL error pages when expert mode is active (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=471075"&gt;Bug 471075&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;check all security modules (tokens) for certificate for update site (fixes app/add-on updates when Danish government browser extension is installed) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=401292"&gt;Bug 401292&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Mac&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add roundness to context menus for Mac OS X 10.5 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=391984"&gt;Bug 391984&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Print/Page Setup Menu items are not grayed out after printing a page using File/Print (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425844"&gt;Bug 425844&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash if page puts up an alert while trying to save the page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468393"&gt;Bug 468393&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not beep when closing preferences window with Cmd+w (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476226"&gt;Bug 476226&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Growl notifications tell number of new messages and their senders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460287"&gt;Bug 460287&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow multiple Growl alerts happening at the same time (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459484"&gt;Bug 459484&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;GTK/Linux&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash on quit on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448512"&gt;Bug 448512&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable fast filter for downscaling images to prevent pixelation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463938"&gt;Bug 463938&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for GNOME's sounds (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=419275"&gt;Bug 419275&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Printing&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Make 'width', 'height' and 'aspect-ratio' features use the page size when printing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466559"&gt;Bug 466559&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use better kerning in print output if hinting is set to "medium" or "full" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=403513"&gt;Bug 403513&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when closing Print Preview (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468645"&gt;Bug 468645&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make SeaMonkey compile on x86-64 static (fix relocation issues) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=469999"&gt;Bug 469999&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make building in srcdir not fail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468915"&gt;Bug 468915&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove pulling of wallet from client.py (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473827"&gt;Bug 473827&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove --enable-system-lcms build option [bug also includes other changes] (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475111"&gt;Bug 475111&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Locales&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add gl (Galician) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467977"&gt;Bug 467977&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ja/ja-JP-mac (Japanese) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467597"&gt;Bug 467597&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ro (Romanian) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453100"&gt;Bug 453100&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add es-AR (Argentinian Spanish) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=475851"&gt;Bug 475851&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;turn on SSE2 pixman optimizations (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461202"&gt;Bug 461202&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix spell checking in case the document contains only a div (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=366682"&gt;Bug 366682&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;only use LD_LIBRARY_PATH on Solaris if the shared libraries are symlinks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=259945"&gt;Bug 259945&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prefer password-only login (if present) for password-only forms (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444968"&gt;Bug 444968&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;consolidate UNIX start scripts (one central mozilla.in) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461542"&gt;Bug 461542&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for Windows sounds to menus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=83056"&gt;Bug 83056&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for Windows sounds to opening message boxes (alert/confirm/prompt etc.) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463209"&gt;Bug 463209&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent tooltips from appearing during a drag (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=312852"&gt;Bug 312852&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove "What's Related" sidebar/module (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468337"&gt;Bug 468337&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make run-mozilla.sh md5sum core files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467638"&gt;Bug 467638&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make View Source read from the cache again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472632"&gt;Bug 472632&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;recreate the SeaMonkey throbber as APNG (with real transparency) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=468103"&gt;Bug 468103&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;create separate log file for Windows shortcuts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470182"&gt;Bug 470182&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update Windows installer for Unicode support and locale verification (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=470452"&gt;Bug 470452&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable JIT in Safe Mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453642"&gt;Bug 453642&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;linkify only "safe" URLs in View Source (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467852"&gt;Bug 467852&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display images instead of text/binary for links to images in View Source (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464339"&gt;Bug 464339&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add keyboard shortcut to open Error Console (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=473665"&gt;Bug 473665&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add various accesskeys to the main interface and prefs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=322247"&gt;Bug 322247&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve Help Viewer sidebar (add back grippy, open upon search, stop jumping when resizing) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=406552"&gt;Bug 406552&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make view-source link-browsing decode entities (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464314"&gt;Bug 464314&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve Satchel (form manager) upgrade/downgrade logic (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472064"&gt;Bug 472064&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use margin and padding CSS rules independent of UI direction (LTR or RTL) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=474807"&gt;Bug 474807&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improving finding/using some typical OS/2 fonts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467250"&gt;Bug 467250&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reverse sort arrow direction in tree header cells on Windows (Classic theme) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=93772"&gt;Bug 93772&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use brand name instead of hard-coded SeaMonkey in updater (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=472796"&gt;Bug 472796&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure dial-up login is initiated when using Internet Connection Sharing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465158"&gt;Bug 465158&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not open two windows when clicking a local html file or internet shortcut on Windows 2000 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461501"&gt;Bug 461501&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;synchronize history/cache when issuing a GET on an already POST-ed form in View Source window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=477451"&gt;Bug 477451&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure tree lines are rendered correctly in RTL mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=476346"&gt;Bug 476346&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make tree cell content honor RTL tree direction (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=140759"&gt;Bug 140759&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;bump cookie limit from 1000 to 3000 to reduce occurrence of cookie purges (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444600"&gt;Bug 444600&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;auto-save open windows and tabs for later restoration in event of crash (session restore) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=36810"&gt;Bug 36810&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use an error page (about:sessionrestore) for session restore prompt (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459550"&gt;Bug 459550&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;accelerate file uploads (HTTP POST) on Windows by increasing TCP send window size from 8KB to 128KB (parity with other browsers and OSs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=454990"&gt;Bug 454990&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;point Ctrl+Alt+F shortcut to new Fishcam site (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=454847"&gt;Bug 454847&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;cleanup SeaMonkey sessionstore code (use native JSON) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=478470"&gt;Bug 478470&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make use of emptytext attribute in search textboxes (replace label by text inside textbox) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460694"&gt;Bug 460694&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;decode non-ASCII characters in the urlbar (like in FF3) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425480"&gt;Bug 425480&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-8413045515546589341?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/8413045515546589341/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=8413045515546589341' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/8413045515546589341'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/8413045515546589341'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2009/02/alpha-3-roundup.html' title='Alpha 3 Roundup'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://4.bp.blogspot.com/_1iQQ8MR1dRs/SZ79F9ds1rI/AAAAAAAAAAw/G9dChHr7xeE/s72-c/location-bar-places-history-frecency.png' height='72' width='72'/><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-5481007656213322334</id><published>2009-02-20T17:31:00.004+01:00</published><updated>2009-02-20T18:48:49.464+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><title type='text'>Better Late Than Never</title><content type='html'>Now that Alpha 3 has been tagged it's time for... something completely different. :-)&lt;br /&gt;&lt;br /&gt;Back in 2005 (when I was still at &lt;a href="http://www.informatik.tu-darmstadt.de/en/home/"&gt;university&lt;/a&gt;) I was taking an "Internet lab" course where we implemented a basic HTTP server, a POP3 client with simple MIME support and a stripped-down &lt;a href="http://en.wikipedia.org/wiki/Chord_%28DHT%29"&gt;Chord&lt;/a&gt; network, all in Java. The intention was to give an introduction to Internet protocols. Our task was to look at the relevant &lt;acronym title="Request for Comment" lang="en"&gt;RFC&lt;/acronym&gt;s and come up with a standards-compliant implementation.&lt;br /&gt;&lt;br /&gt;When we arrived at the POP3 client exercise our tutor gave us a Really Simple POP Server (RSPS). We used Mozilla (the &lt;a href="http://en.wikipedia.org/wiki/Mozilla_Application_Suite"&gt;suite&lt;/a&gt;) to check if it worked. It didn't. Or rather that's how it appeared to us. The truth was that Mozilla was violating the relevant &lt;a href="http://www.ietf.org/rfc/rfc1939.txt"&gt;RFC 1939&lt;/a&gt; by requiring the server to support the optional commands TOP and UIDL. Our tutor was kind enough to implement those to let us test with Mozilla but obviously it wasn't RSPS's fault.&lt;br /&gt;&lt;br /&gt;It was only recently that I found that the corresponding &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=156998"&gt;bug 156998&lt;/a&gt; has been fixed (in June 2007 already, actually) so the good news is that this will be fixed in SeaMonkey 2 (the fix has not been back-ported to the Mozilla1.8 branch SeaMonkey 1.1 updates are released from); verified with the original RSPS (AFAIK it's not publicly available and all I have is the binary JAR so no source, sorry).&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-5481007656213322334?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/5481007656213322334/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=5481007656213322334' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/5481007656213322334'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/5481007656213322334'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2009/02/better-late-than-never.html' title='Better Late Than Never'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-7237222010655188304</id><published>2008-12-08T21:55:00.011+01:00</published><updated>2008-12-08T23:18:20.198+01:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='addons'/><category scheme='http://www.blogger.com/atom/ns#' term='plugins'/><category scheme='http://www.blogger.com/atom/ns#' term='av'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='dns'/><category scheme='http://www.blogger.com/atom/ns#' term='aus'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='l10n'/><category scheme='http://www.blogger.com/atom/ns#' term='mac'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>Alpha 2 Roundup</title><content type='html'>A lot has happened since Alpha 1. Tracemonkey, the Just-In-Time (JIT) JavaScript compiler, has been enabled for content (as opposed to chrome) by default. The old Find As You Type backend has been removed and replaced by Toolkit's. Audio/Video support has been enhanced. SeaMonkey has switched to the new mozilla-1.9.1 branch (which will lead to Firefox 3.1) together with the rest of comm-central.&lt;br /&gt;&lt;br /&gt;The new Alpha is not only about changes under the hood, though. Most notably Alpha 2 now features the first step towards customizable toolbars: you can now select the icon size and whether to display icons and/or text in both the browser and the MailNews component:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_1iQQ8MR1dRs/ST2Soye_F2I/AAAAAAAAAAg/_5a_lNL4KuE/s1600-h/customizable-toolbar-context-menu.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 167px;" src="http://2.bp.blogspot.com/_1iQQ8MR1dRs/ST2Soye_F2I/AAAAAAAAAAg/_5a_lNL4KuE/s320/customizable-toolbar-context-menu.png" alt="" id="BLOGGER_PHOTO_ID_5277535567792248674" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;Also new is RSS feed support for MailNews which has been ported from Thunderbird:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://2.bp.blogspot.com/_1iQQ8MR1dRs/ST2TBY1pCII/AAAAAAAAAAo/rqQsiCkLqGg/s1600-h/rss-subscriptions-planet-mozilla.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer; width: 320px; height: 237px;" src="http://2.bp.blogspot.com/_1iQQ8MR1dRs/ST2TBY1pCII/AAAAAAAAAAo/rqQsiCkLqGg/s320/rss-subscriptions-planet-mozilla.png" alt="" id="BLOGGER_PHOTO_ID_5277535990404679810" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;Since there is no support for displaying RSS feeds in the browser yet the feed icon at the right end of the URL bar has been modified to allow subscribing to the feed in the MailNews component for the time being.&lt;br /&gt;&lt;br /&gt;There are of course things that are not working yet. For one Get All New Messages is not working correctly (fails for POP3 accounts, &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=259212"&gt;Bug 259212&lt;/a&gt;). This will probably be fixed soon and then maybe even allow to query RSS accounts, too. Also noteworthy is my all-time favorite &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=338549"&gt;Bug 338549&lt;/a&gt; which has the effect of presenting multiple password prompts at once when checking multiple MailNews accounts. And when you look at the Bookmarks menu you might find that bookmark groups are not appearing there (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461167"&gt;Bug 461167&lt;/a&gt;).&lt;br /&gt;&lt;br /&gt;Trunk development continued after the cut for Alpha 2 had been made. Current nightlies already feature several improvements, particularly the new Places-based history UI (including the frecency-powered URL bar). A follow-up post will cover the details.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Treelines: now fixed (last checkin: certificate details tree) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438793"&gt;Bug 438793&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;border-radius support (CSS3): style system changes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450652"&gt;Bug 450652&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;@font-face support: implement user font set object (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=441473"&gt;Bug 441473&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Places-based history UI: port Firefox utilityOverlay.js API to SeaMonkey (prerequisite) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=370698"&gt;Bug 370698&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Toolbar customization: spring.png for Modern theme, small icons (Navigator, MailNews) for Classic theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428227"&gt;Bug 428227&lt;/a&gt;), use transparent background for small Classic theme messenger icons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462645"&gt;Bug 462645&lt;/a&gt;), add alpha transparency to small Classic communicator and navigator icons (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464936"&gt;Bug 464936&lt;/a&gt;) and finally: allow to set icon size and whether/where to display text per toolbar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428216"&gt;Bug 428216&lt;/a&gt;, also fixes &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=253007"&gt;Bug 253007&lt;/a&gt;: allow to set Modern theme Navigator buttons (Back etc.) to show text and icons&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=253007"&gt;&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use Toolkit download manager backend: disable Toolkit's download manager UI for the suite (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=381157"&gt;Bug 381157&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Feed integration: connect feed discovery with MailNews feed subscribe (interim solution until Feed Preview is implemented) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465258"&gt;Bug 465258&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Group By Sort in saved search (virtual folder) doesn't crash on expand/collapse group (bug 467840 isl pending) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465011"&gt;Bug 465011&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;open only one window when opening a local html file (pending: fix internet shortcuts) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461501"&gt;Bug 461501&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use hourglass with pointer for mouse cursor when loading new newsgroup (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=178767"&gt;Bug 178767&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix problems filtering POP3 mail when hidden pref to remove dupes is set (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=457168"&gt;Bug 457168&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use application name in the cancel message body for News (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=294824"&gt;Bug 294824&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;move keyboard shortcut Ctrl+Shift+V from "Paste As Quotation" to "Paste Without Formatting" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=192330"&gt;Bug 192330&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set default retention policy of "delete all but the last X messages" to 2000 (was: 30) and change field types to "number" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438918"&gt;Bug 438918&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;correct filtering custom mail headers (Sender/Date/Status) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=404489"&gt;Bug 404489&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;eliminate "[JavaScript Application]" dialog titles (use prompt service instead of window.alert() in chrome code) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432608"&gt;Bug 432608&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;always convert Content Type to lowercase for matching (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=381659"&gt;Bug 381659&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure the number in the "Order Received" column does not become negative when mail's offset in local mail folder file exceeds 2GB (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450991"&gt;Bug 450991&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename "Move" on "Message" menu to "Move To" to match context menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=185940"&gt;Bug 185940&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not do a disk sync after each POP3 header in partial header download fetch (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=385838"&gt;Bug 385838&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove own address from Mail-Followup-To: on reply (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=325429"&gt;Bug 325429&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;import Sent/Outbox from Eudora (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=452296"&gt;Bug 452296&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not insert extra LF characters when saving IMAP messages with CRLF line ending at a multiple of 8192 bytes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460636"&gt;Bug 460636&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;apply changes to read state of IMAP messages when toggling it in a cross-folder saved search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461584"&gt;Bug 461584&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;unlock destination file after saving message (.eml) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461256"&gt;Bug 461256&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Rebuild Summary File: save message metadata (junk-related, tags, etc.) when reindexing local or IMAP folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449768"&gt;Bug 449768&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable threaded/grouped-by-sort views for saved searches across multiple folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=379806"&gt;Bug 379806&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add a shortcut for Rewrap (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461667"&gt;Bug 461667&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not require to send a mail in order to enable MDN (return receipt) subject encoding (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462725"&gt;Bug 462725&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix importing Outlook 2007 account settings (check whether Organization is empty) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450854"&gt;Bug 450854&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix importing mail from Outlook 2003/2007 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=408323"&gt;Bug 408323&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix setting port when importing account settings from Outlook Express (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=262641"&gt;Bug 262641&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add a bit of jitter to the biff-interval (+/-5%, 1-30 seconds, mail.biff.add_interval_jitter) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=235086"&gt;Bug 235086&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for setting Mail-Followup-To and Mail-Reply-To headers (aids using mailing lists; see comments 0 and 27 for details and prefs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=204339"&gt;Bug 204339&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;port Thunderbird RSS/Atom reader to SeaMonkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=255834"&gt;Bug 255834&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow extensions to add custom filter actions (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=419356"&gt;Bug 419356&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make filters using Sender as custom mail header work (do not match From instead) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=404489"&gt;Bug 404489&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use generic "Confirm" instead of the message in "advance to next unread" dialog title (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=84828"&gt;Bug 84828&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure to actually import messages when importing from Outlook Express (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=455229"&gt;Bug 455229&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not corrupt attributes of tags (such as IMG) when re-editing (Edit Draft, Forward Inline, Edit As New) quoted-printable HTML messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=307023"&gt;Bug 307023&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash on IMAP folder with sequence Delete, Rebuild Index, Undo (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=457751"&gt;Bug 457751&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not auto-sync IMAP folders that require a password if the password has not been provided yet (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=456291"&gt;Bug 456291&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;mark message as read when deleting it from local folder (or POP/IMAP when offline) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463849"&gt;Bug 463849&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when doing a body search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465805"&gt;Bug 465805&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;close msf files after compacting folders (do not limit number of folders that can be opened) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=249754"&gt;Bug 249754&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change IMAP APPEND wait timeout from 100 to 20 sec (improve copying mail to Sent folder) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=396874"&gt;Bug 396874&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not request IMAP capability command if server announces it in greetings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=401293"&gt;Bug 401293&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not compact the offline store when issuing Compact Folder on IMAP folder (just issue an IMAP EXPUNGE instead) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=420115"&gt;Bug 420115&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove accounts without a server or a duplicate server upon loading accounts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464808"&gt;Bug 464808&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;advance to next message when deleting message while offline and using IMAP mark-as-deleted model (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451877"&gt;Bug 451877&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;generalize Bayes code to support multiple traits (one of which is Junk) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453885"&gt;Bug 453885&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;integrate generalized Bayes traits into MailNews classifications (enable extensions to define custom traits) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461479"&gt;Bug 461479&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update unread count for threaded cross-folder views after reading a matching message (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466241"&gt;Bug 466241&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;clear only a server's own biff state on Windows (fix new mail popup window) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462762"&gt;Bug 462762&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve references parser logic for In-Reply-To/References headers (e.g. with mixed message-id and non-message-id content) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466796"&gt;Bug 466796&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fetch IMAP flags only once (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466891"&gt;Bug 466891&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display website in feed message headers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463255"&gt;Bug 463255&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;place focus in Subject field instead of body when composing HTML mail with pre-filled recipient (e.g. mailto:) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467244"&gt;Bug 467244&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;keep showing current message list view after rebuilding another mailbox's index using File/Properties (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467246"&gt;Bug 467246&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when parsing IMAP message headers (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=467114"&gt;Bug 467114&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Address Book&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;change layout of Card dialog to better cope with lower screen resolutions (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=63941"&gt;Bug 63941&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not collect addresses into Collected Addressed that occur in other ABs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=58769"&gt;Bug 58769&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;actually apply changes to Outlook (Express) cards (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459956"&gt;Bug 459956&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove contact from search results display when it has been deleted (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435027"&gt;Bug 435027&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;immediately reflect that a list has been deleted (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462364"&gt;Bug 462364&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when selecting recipient from contacts sidebar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463560"&gt;Bug 463560&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Audio/Video&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;stop video download when document has been closed/unloaded (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451457"&gt;Bug 451457&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support direct loading and displaying of Ogg files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448603"&gt;Bug 448603&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;download video/audio resources to the cache during playback (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462378"&gt;Bug 462378&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add context menu for video (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461136"&gt;Bug 461136&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support WAV format in &lt;audio&gt; element (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449315"&gt;Bug 449315&lt;/a&gt;)&lt;/audio&gt;&lt;/li&gt;&lt;li&gt;support 8-bit WAV samples (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463929"&gt;Bug 463929&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support duration for video (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449307"&gt;Bug 449307&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;provide audio and video interfaces even when media is diabled, so that content popup menu construction works (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=466234"&gt;Bug 466234&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;CSS&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;remove support for -moz-pre-wrap (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433065"&gt;Bug 433065&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Locales&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add si (Sinhala) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=458519"&gt;Bug 458519&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ka (Georgian) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463917"&gt;Bug 463917&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pt-PT (European Portuguese) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453472"&gt;Bug 453472&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;DNS&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;implement negative (NXDOMAIN) DNS cache (cache a failed hostlookup for 1 minute) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=208312"&gt;Bug 208312&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;bypass internal DNS cache when doing manual page reload (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459724"&gt;Bug 459724&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add DNS pre-fetching (see comment 8) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453403"&gt;Bug 453403&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Mac&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;update navigator.onLine when network connectivity changes on Mac (online/offline detection) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=426932"&gt;Bug 426932&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to update / set disabled attribute on native submenus on Mac OS X (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=456374"&gt;Bug 456374&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;turn off shadow for autoscroll icon in Modern (on Mac OS X) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461367"&gt;Bug 461367&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rewrite Mac OS X default plugin for 64-bit (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428973"&gt;Bug 428973&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support formatted text (e.g. HTML) from clipboard and drag-and-drop on Mac OS X (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428096"&gt;Bug 428096&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix Mac OS 10.4-only top crash (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=458961"&gt;Bug 458961&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Dock icon show new mail at the same time as the Growl alert (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459482"&gt;Bug 459482&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Growl integration for mail alerts on Mac OS X (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=308552"&gt;Bug 308552&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ensure that clicking a Growl alert brings SeaMonkey to the front (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459485"&gt;Bug 459485&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Growl alerts of New Mail notify for the account for which new mail has just been received (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459483"&gt;Bug 459483&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;GTK/Linux&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not corrupt XUL FastLoad cache when application is running while upgrading on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=368428"&gt;Bug 368428&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add a globally shared location for plugins (/usr/lib/mozilla/plugins) on Linux/Unix (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=440506"&gt;Bug 440506&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make filepicker filters case insensitive (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=136941"&gt;Bug 136941&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Add-ons &amp;amp; AUS&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;skip "Continue" (and close dialog after two seconds) if all updates have been successful during add-ons update (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=397493"&gt;Bug 397493&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;AUS update dialog rework / do not list extensions with available updates for the next version of the app in app update "extension will be disabled" warning (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=324121"&gt;Bug 324121&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not install automatic update if installed version is newer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=313057"&gt;Bug 313057&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display update wizard Back button on Linux only when needed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464765"&gt;Bug 464765&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display placeholder for disabled/blocked plugins (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=391728"&gt;Bug 391728&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add new icons for disabled/blocked plugin placeholders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462965"&gt;Bug 462965&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable Install button in Add-on Manager by default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=414014"&gt;Bug 414014&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Debug &amp;amp; QA&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;hide bloat items from Debug menu unless they work (i.e. if the application has been built with --enable-logrefcnt) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=93902"&gt;Bug 93902&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove obsolete 'Form Manager Samples' item from Debug menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462085"&gt;Bug 462085&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;move Debug &amp;amp; QA menus to the left of the Help menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=418246"&gt;Bug 418246&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Certificates&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;store certificates for temporary SSL server exceptions only temporarily (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460829"&gt;Bug 460829&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement new security exception handling backend for MailNews (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429843"&gt;Bug 429843&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use new security exceptions front end (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465978"&gt;Bug 465978&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;introduce new certificate error page which better separates user information from technical details (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463504"&gt;Bug 463504&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;remove MOZ_CO_PROJECT (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451825"&gt;Bug 451825&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove --enable-glitz (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445321"&gt;Bug 445321&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to pass arbitrary options to hg using client.py (--hg-options) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=458215"&gt;Bug 458215&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove support for --enable-extensions=all (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450015"&gt;Bug 450015&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;increase required Pango build-time version to 1.14 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460717"&gt;Bug 460717&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;create a makefile target (source-package) for packaging a source tarball (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=456373"&gt;Bug 456373&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to build SeaMonkey with --enable-static (fixed by removal of Find As You Type) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=397146"&gt;Bug 397146&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make --disable-wave work (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=463537"&gt;Bug 463537&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make client.py update the default repository from mozilla-central to mozilla-1.9.1 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465521"&gt;Bug 465521&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;enable Set As Wallpaper context menu entry based on presence of shell service (was: Windows only) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=454017"&gt;Bug 454017&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove remaining contents.rdf (stop using installed-chrome.txt) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=366673"&gt;Bug 366673&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;limit Gecko date in User Agent string to 8 digits (YYYYMMDD) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450973"&gt;Bug 450973&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve handling of DOS and Unix style FTP listings (whitespace at end of filename, dates and symlinks) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=365133"&gt;Bug 365133&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speculatively load referenced JavaScript files, blocking "real" parsing on a script src load (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=364315"&gt;Bug 364315&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement cross-site XMLHttpRequest (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=389508"&gt;Bug 389508&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make multiple text selection (with Ctrl) work with double-click "word-by-word" and triple-click "paragraph" modes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=415707"&gt;Bug 415707&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for retrieving PNG (lossless) images from Windows clipboard (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444800"&gt;Bug 444800&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;correct button states (hover vs. normal) of Classic theme stop button (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431452"&gt;Bug 431452&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;put the search box in the main toolbar of Bookmark Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460756"&gt;Bug 460756&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement geolocation prompt (notification bar) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=459413"&gt;Bug 459413&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure Spell Checker always identifies misspelled words (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432225"&gt;Bug 432225&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;correct Sidebar "Tabs" menu placement (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=388349"&gt;Bug 388349&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable view-source link-browsing (SRC, HREF) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=17612"&gt;Bug 17612&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;optimize PNGs in the Classic theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464663"&gt;Bug 464663&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add CF_HDROP support back into Windows drag and drop data object (re-enable dragging images to applications like Photoshop) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=440911"&gt;Bug 440911&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove old Find As You Type (FAYT) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=461938"&gt;Bug 461938&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use Toolkit Type Ahead Find instead of the old one (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=345526"&gt;Bug 345526&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make clicking on an autocompleted input field not break autocomplete (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=460466"&gt;Bug 460466&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;respect Accept-Ranges response header (only accept value "bytes" for resume support) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=462707"&gt;Bug 462707&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add accesskeys to print dialogs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=277296"&gt;Bug 277296&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add view-source link-browsing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=464352"&gt;Bug 464352&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Vista integration: avoid the second UAC prompt for helper.exe on software update by launching it directly from the elevated updater.exe process (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=390344"&gt;Bug 390344&lt;/a&gt;), move installer parts requiring elevated rights to new helper.exe (improve installation as a standard user) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453797"&gt;Bug 453797&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;bind default toolbar appearance to Preferences/Appearance settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=465089"&gt;Bug 465089&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support use of access control headers to allow cross-site downloadable fonts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=457825"&gt;Bug 457825&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-7237222010655188304?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/7237222010655188304/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=7237222010655188304' title='7 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/7237222010655188304'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/7237222010655188304'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2008/12/alpha-2-roundup.html' title='Alpha 2 Roundup'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://2.bp.blogspot.com/_1iQQ8MR1dRs/ST2Soye_F2I/AAAAAAAAAAg/_5a_lNL4KuE/s72-c/customizable-toolbar-context-menu.png' height='72' width='72'/><thr:total>7</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-3510642794800930137</id><published>2008-09-30T03:02:00.003+02:00</published><updated>2008-09-30T03:20:22.484+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='ssl'/><category scheme='http://www.blogger.com/atom/ns#' term='cz'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='domi'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>Lost &amp; Found</title><content type='html'>I started compiling lists of bugs that were checked into the trunk long before I started this blog. I even kept them around afterwards. Now in the light of the upcoming SeaMonkey 2 Alpha 1 the time has come to do some cleanup. Below are all bugs from my list of the early days of Mozilla 1.9 trunk (SeaMonkey trunk was called 1.5a back then) that have neither been fixed on the 1.8.1 branch (SeaMonkey 1.1.x) nor appeared on this blog until now. As always I tried to focus on visible changes and noticeable enhancements rather than internal code changes.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;rename TLS and SSL in SMTP preferences to what they really mean (STARTTLS, SMTP-over-SSL) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=185662"&gt;Bug 185662&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Reply, Reply All, Forward and Next buttons dual-mode (adding Reply to Sender, Reply to All Recipients, Forward Inline/As Attachment, Next Message/Flagged Message/Unread Thread) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=17796"&gt;Bug 17796&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not lose keystrokes while email composer is saving draft (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=352310"&gt;Bug 352310&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up deleting attachments containing UNIX line breaks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=365751"&gt;Bug 365751&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add "Stop Filter Execution" filter action (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=358684"&gt;Bug 358684&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to set marking junk as read independently for automatic and manual cases in preferences (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=377920"&gt;Bug 377920&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not fall back to insecure authentication after SMTP authentication failure (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=311657"&gt;Bug 311657&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support opening a message from the command line (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=386919"&gt;Bug 386919&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove "Copy Folder Location" context menu entry, moving functionality to Location field in Properties dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=369393"&gt;Bug 369393&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;move Location field from IMAP Sharing tab of folder properties dialog to General Information tab (enable it for all account types) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=180546"&gt;Bug 180546&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add more descriptive error messages for network level errors while sending mail (SMTP) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=361433"&gt;Bug 361433&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable extensions to add and handle columns in MailNews  (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=376717"&gt;Bug 376717&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;ChatZilla&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;change Switch Text Direction shortcut to Ctrl+Shift+X (was: Ctrl+Shift+E) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=333570"&gt;Bug 333570&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not open multiline input when dropping link in single line input (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=332588"&gt;Bug 332588&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add IRC-Hispano to default network list (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=227366"&gt;Bug 227366&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add IRCnet to default network list (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=135926"&gt;Bug 135926&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow styling all parts of ChatZilla with motifs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=235169"&gt;Bug 235169&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow disabling Bugzilla link detection on a per-channel basis (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=349137"&gt;Bug 349137&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;DOM Inspector&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;allow inserting/creating new nodes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=112775"&gt;Bug 112775&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add File / Save DOM As... (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=72494"&gt;Bug 72494&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to hide processing instructions (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=360898"&gt;Bug 360898&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show separate menu entries for Inspect Content/Chrome Document (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=337069"&gt;Bug 337069&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make Mozilla compile with Microsoft Visual Studio 2005 (VC8) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=249782"&gt;Bug 249782&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove non-Cairo GTK2 gfx code (GTK 1 support and Xprint) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=383889"&gt;Bug 383889&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add "Ignore Word" to inline spellchecker used for editable elements (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=354580"&gt;Bug 354580&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use bullets instead of asterisks to block out password characters (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=97811"&gt;Bug 97811&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make dictionaries part of the locale pack in the installer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=350688"&gt;Bug 350688&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add font-family (alias) resolver checking whether specified font-family is installed in the system (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=352174"&gt;Bug 352174&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make a backup copy of prefs.js before overwriting it if there were errors reading it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=361102"&gt;Bug 361102&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Undo Close Tab enhancements: File / Recently Closed Tabs menu entry, select restored tabs and reuse blank tabs with no history (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=354953"&gt;Bug 354953&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let Mozilla applications manage NSS configuration for PKCS#11 shared libraries (prevent Windows from locking nssckbi.dll) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=176501"&gt;Bug 176501&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement font-size-adjust on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=363410"&gt;Bug 363410&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Gecko pass the Acid2 test (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=289480"&gt;Bug 289480&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let Backspace default to nothing on Linux instead of going back (in history) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=358764"&gt;Bug 358764&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support startup notification on Linux/UNIX desktops (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=223492"&gt;Bug 223492&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable native theme (form control etc.) in HTML content on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=329846"&gt;Bug 329846&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for the X Session Management Protocol (XSMP) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=93789"&gt;Bug 93789&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make downloading using "Save Link As..." successful on a link to a page/file that uses HTTP/FTP authentication (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=315227"&gt;Bug 315227&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Debug QA and Palm Sync extensions optional in Windows installer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=385377"&gt;Bug 385377&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pref to control minimal font size for high quality text rendering (browser.display.auto_quality_min_font_size) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=387969"&gt;Bug 387969&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow multiple selection of text with Ctrl (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=73373"&gt;Bug 73373&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-3510642794800930137?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/3510642794800930137/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=3510642794800930137' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/3510642794800930137'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/3510642794800930137'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2008/09/lost-found.html' title='Lost &amp; Found'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-8795167987695406997</id><published>2008-09-21T23:08:00.005+02:00</published><updated>2008-09-26T00:13:58.448+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='svg'/><category scheme='http://www.blogger.com/atom/ns#' term='dom'/><category scheme='http://www.blogger.com/atom/ns#' term='printing'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><title type='text'>Alpha Particles</title><content type='html'>&lt;div&gt; &lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;migrate SeaMonkey preferences panes to use &lt;preferences&gt; (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=394522"&gt;Bug 394522&lt;/a&gt;) is now complete including Proxies (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444157"&gt;Bug 444157&lt;/a&gt;), Popups windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=441403"&gt;Bug 441403&lt;/a&gt;), Cache (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444161"&gt;Bug 444161&lt;/a&gt;), MailNews / Send Format (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445009"&gt;Bug 445009&lt;/a&gt;), Downloads (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444582"&gt;Bug 444582&lt;/a&gt;), HTTP Networking (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444167"&gt;Bug 444167&lt;/a&gt;), SSL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445013"&gt;Bug 445013&lt;/a&gt;), Certificates (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445014"&gt;Bug 445014&lt;/a&gt;), MailNews / Addressing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=408613"&gt;Bug 408613&lt;/a&gt;), Master Password (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444170"&gt;Bug 444170&lt;/a&gt;), Passwords (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444169"&gt;Bug 444169&lt;/a&gt;), Validation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445015"&gt;Bug 445015&lt;/a&gt;) and Browser / Languages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444411"&gt;Bug 444411&lt;/a&gt;)&lt;/preferences&gt;&lt;/li&gt;&lt;li&gt;add ability to show just the name and not the email address in the message pane if an address book entry exists: main part (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=309057"&gt;Bug 309057&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;the return of Treelines: Venkman, DOM Inspector, MailNews, Help viewer, Bookmarks, History and XUL directory viewer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438793"&gt;Bug 438793&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make IMAP folders offline by default if they are newly created and mail.server.default.offline_download pref is true (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=452615"&gt;Bug 452615&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display messages that are not present in the current folder view but found through a search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=377084"&gt;Bug 377084&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;resort when new message arrives and Sort by / Threaded is active (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=262319"&gt;Bug 262319&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not ask whether to send HTML mail for recipients matching an "additional email" address of a contact that prefers HTML messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=437750"&gt;Bug 437750&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable JavaScript in MailNews for now (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453943"&gt;Bug 453943&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;properly detect application/pkcs7-mime subtypes in libmime (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=456250"&gt;Bug 456250&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not lose track of messages in a folder when using CONDSTORE (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=456601"&gt;Bug 456601&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ability to download IMAP messages preemptively/automatically in the background (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436615"&gt;Bug 436615&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Address Book&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;apply changes to phone types made in Apple Addressbook (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=452143"&gt;Bug 452143&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add birthday fields to address book (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=13595"&gt;Bug 13595&lt;/a&gt; and &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=455797"&gt;Bug 455797&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update address book card preview pane for card changes via external interfaces (where notifications exist, e.g. OS X) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=455240"&gt;Bug 455240&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;CSS&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add support for WebKit's CSS3 Transform proposal (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435293"&gt;Bug 435293&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;DOM&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;implement cloneNode() for HTML document nodes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=42976"&gt;Bug 42976&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow creating HTML documents through document.implementation.createDocument() (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450160"&gt;Bug 450160&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;SVG&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;support SVG mask/clip-path/filter effects in HTML (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450340"&gt;Bug 450340&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Certificates&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;show Exception dialog before fetching certificate when prefetching is active (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453855"&gt;Bug 453855&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Printing&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;remove useless "print.use_native_print_dialog" preference (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=414843"&gt;Bug 414843&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;introduce new UI for setting SeaMonkey as default application/handler (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=441050"&gt;Bug 441050&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add trim, trimLeft and trimRight for JavaScript strings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=305064"&gt;Bug 305064&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add hu (Hungarian) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=453350"&gt;Bug 453350&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make FTP uploads of small files using File / Upload File menu report failures (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=389394"&gt;Bug 389394&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make migration of SeaMonkey profile not fail (possibly not migrating bookmarks) when folder in source profile is missing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=423211"&gt;Bug 423211&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set colors for GTK treelines when no specific rule is given (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=434080"&gt;Bug 434080&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make transfer mode of images influence the lock icon state (mixed content) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=135007"&gt;Bug 135007&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add bold default options to about:config context menus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=255726"&gt;Bug 255726&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable "Add to SeaMonkey" and add "Cancel Install" in right-click menu after installing extension (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438755"&gt;Bug 438755&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let Software Update show a hint that the system clock may be off if the server certificate appears to be expired (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=390746"&gt;Bug 390746&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use correct order of buttons in Add-on Updates dialog appearing at startup (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424317"&gt;Bug 424317&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not delete a file dragged from Windows Explorer / FTP (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=296528"&gt;Bug 296528&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable color management support for tagged images by default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=418538"&gt;Bug 418538&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable NetworkManager querying by default because its network link detection (which triggers Offline mode) cannot be trusted (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424626"&gt;Bug 424626&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Crashes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash when opening IMAP messages with inline images (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=454061"&gt;Bug 454061&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash shutting down in cookie code (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=455035"&gt;Bug 455035&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;Update: added last three MailNews bugs that made the Alpha cut&lt;br /&gt;        &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-8795167987695406997?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/8795167987695406997/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=8795167987695406997' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/8795167987695406997'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/8795167987695406997'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2008/09/alpha-particles.html' title='Alpha Particles'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-2563718023443907433</id><published>2008-08-31T00:55:00.005+02:00</published><updated>2008-08-31T01:30:16.487+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='dom'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='printing'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><category scheme='http://www.blogger.com/atom/ns#' term='addressbook'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>Behind the Scenes</title><content type='html'>For a web developer, the &lt;span style="text-decoration: line-through;"&gt;awesome&lt;/span&gt; fantastic Firebug provides everything you need, but it is currently only available for Firefox. Asrail is trying to make Firebug 1.2 work with SeaMonkey 2, though; I successfully installed an XPI today. Until he releases something I will just give you a hint: search for "caio seamonkey firebug" in Google Groups. Or take a look at &lt;a href="http://getfirebug.com/lite.html"&gt;Firebug Lite&lt;/a&gt;.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Drag &amp;amp; Drop tabs between browser windows: backend (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=113934"&gt;Bug 113934&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Windows default application check: allow to change what to check (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=447637"&gt;Bug 447637&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Preferences window: MailNews / Notifications (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428705"&gt;Bug 428705&lt;/a&gt;), MailNews / Composition (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429143"&gt;Bug 429143&lt;/a&gt;) and Advanced / Keyboard Navigation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444146"&gt;Bug 444146&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable building SeaMonkey with --enable-libxul: /suite directory (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=397277"&gt;Bug 397277&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Redirect mail (resend with possibility to editing before sending): backend (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=359226"&gt;Bug 359226&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;convert attachment filename correctly when importing from Japanese Eudora (will also be fixed in SM 1.1.12) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=443344"&gt;Bug 443344&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not lose IMAP offline stores when connecting to server fails (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=213827"&gt;Bug 213827&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename 'Unsent' folder to 'Outbox' (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=387656"&gt;Bug 387656&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to specify whether to run filters when checking mail, run manually, or both (add a separate manual filter context) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=440635"&gt;Bug 440635&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;cache the top-level address book to help performance (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=403256"&gt;Bug 403256&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ensure that disabling "Automatically mark messages as read" works (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450740"&gt;Bug 450740&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ability to filter only selected messages in a folder (Run Filters on Selected Messages) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444209"&gt;Bug 444209&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure signed/encrypted messages (e.g. S/MIME) always get transfer encoding applied (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=232515"&gt;Bug 232515&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ignore spaces after tag attribute equal sign in HTML messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=338323"&gt;Bug 338323&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;convert Ask me before downloading more than __ messages option (in the news server settings) to number-type textbox (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451862"&gt;Bug 451862&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure "Edit as new" for opened eml files does not result in a broken compose window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=366482"&gt;Bug 366482&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use better wording in Folder Properties Retention Policy tab dialog (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=339151"&gt;Bug 339151&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;always use Content-Disposition: attachment (was inline for text-type attachments) for sending attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=65794"&gt;Bug 65794&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;play back tags to IMAP server when switching from offline to online (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=141606"&gt;Bug 141606&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Mark All Read keyboard shortcut Ctrl+Shift+C on Linux (like on Windows; was: Ctrl+Shift+M) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=422757"&gt;Bug 422757&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not delete mail keywords/tags when detaching/removing attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=440366"&gt;Bug 440366&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add option to quote the contents of displayed inline attachments in replies (UI for mail.reply_quote_inline pref) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=441659"&gt;Bug 441659&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show just the name and not the email address in the message pane (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=309057"&gt;Bug 309057&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;rename Properties to Settings in account context menus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=249620"&gt;Bug 249620&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement auto-expunge for IMAP mailboxes (see bug comment 4) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=359284"&gt;Bug 359284&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Address Book&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make Search/Filters check correctly for address in Mac OS X Address Book (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=437908"&gt;Bug 437908&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove spaces from Mac OS X Address Book display names when first and/or last name is empty (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451021"&gt;Bug 451021&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow Junk settings to use read-only address books (like Mac OS X Address Book, but not remote ones) for white lists (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451361"&gt;Bug 451361&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support multiple address books for Junk whitelist (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449747"&gt;Bug 449747&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;CSS&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;support white-space:pre-line (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=230555"&gt;Bug 230555&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support positioned and floated generated content (in conjunction with :before and :after) for non-replaced elements (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=238072"&gt;Bug 238072&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ignore CSS2.1 empty-cells:hide in conjunction with border-collapse:collapse (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=392047"&gt;Bug 392047&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;DOM&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;implement ElementTraversal (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=447917"&gt;Bug 447917&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement W3C Selectors API (querySelector and querySelectorAll) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=416317"&gt;Bug 416317&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement WHATWG/HTML5 Drag and Drop (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=356295"&gt;Bug 356295&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Printing&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;enable printing while in Print Preview on Linux/Unix (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=126802"&gt;Bug 126802&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;clear print_to_filename after printing on OS/2 to make sure that it's not overwritten next time (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=446290"&gt;Bug 446290&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Locales&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add lt (Lithuanian) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451054"&gt;Bug 451054&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pt-BR (Brazilian Portuguese) to source locales (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451153"&gt;Bug 451153&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Certificates&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make the "bad cert error dialog" more helpful (add View Certificate button) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=439722"&gt;Bug 439722&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make theora build with VC7.1 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450265"&gt;Bug 450265&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ability to pull specific revisions/tags from comm-central, mozilla-central or dom-inspector (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451811"&gt;Bug 451811&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Qt port compile with comm-central (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=450957"&gt;Bug 450957&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not treat Ctrl+Enter as Ctrl+J when captured by a Javascript event (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=318235"&gt;Bug 318235&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for Aero Glass effects (-moz-appearance: -moz-win-glass) to Widget layer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=418454"&gt;Bug 418454&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let downloaded files inherit NTFS properties (like permissions, compression, encryption) from parent folder/directory (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=224692"&gt;Bug 224692&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;convert FTP paths from UTF-8 to original charset (e.g. Cyrillic) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=427089"&gt;Bug 427089&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support new toolkit async autocomplete (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=443370"&gt;Bug 443370&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ensure that major updates are offered when certain language packs are installed (make locale in updater.ini mandatory) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=446527"&gt;Bug 446527&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;catch more Software Update failures, e.g. working offline (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=312661"&gt;Bug 312661&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;delete and re-init cookies.sqlite if cookie deletion fails due to corrupted database (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448372"&gt;Bug 448372&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set DISPLAY environment variable when --display is given to make Xremote work correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=441140"&gt;Bug 441140&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix dropping images to external applications (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435220"&gt;Bug 435220&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add workaround for creating plugin cache file on Windows (enable displaying PDF delivered via SSL) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=420310"&gt;Bug 420310&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make "seamonkey -h" mention -migration switch (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431636"&gt;Bug 431636&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;handle WM_ENDSESSION message to cleanly unload in case of exiting or restarting Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=212316"&gt;Bug 212316&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;line up Modern submenus horizontally (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=451609"&gt;Bug 451609&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Crashes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash when exiting on OpenSolaris (with Xinerama enabled) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=449371"&gt;Bug 449371&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when saved search is open after deleting a searched subfolder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438414"&gt;Bug 438414&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash in debug mode while getting POP3 mail on startup (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=452521"&gt;Bug 452521&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-2563718023443907433?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/2563718023443907433/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=2563718023443907433' title='2 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/2563718023443907433'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/2563718023443907433'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2008/08/behind-scenes.html' title='Behind the Scenes'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>2</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-4312929852356549354</id><published>2008-08-11T23:56:00.007+02:00</published><updated>2008-08-12T01:27:01.836+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gfx'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='breakpad'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='css'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>A New Home</title><content type='html'>The move to hg went quite smoothly (thanks to the preparatory work of KaiRo and others). Now that SeaMonkey and MailNews have their own repository shared with Thunderbird and Calendar, tracking changes is a lot easier. However, the loss of Bonsai still hurts a bit. &lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=394669"&gt;Bug 394669&lt;/a&gt; has been fixed but it still needs to be pushed live (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448459"&gt;Bug 448459&lt;/a&gt;). While you are waiting for that, take a look at what is possible with a bit of client-side PHP and RegEx:&lt;br /&gt;&lt;br /&gt;&lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://3.bp.blogspot.com/_1iQQ8MR1dRs/SKDJ16DZoDI/AAAAAAAAAAU/XRnbu1Qy8mQ/s1600-h/hg-shortlog-mod.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://3.bp.blogspot.com/_1iQQ8MR1dRs/SKDJ16DZoDI/AAAAAAAAAAU/XRnbu1Qy8mQ/s320/hg-shortlog-mod.png" alt="" id="BLOGGER_PHOTO_ID_5233404694958284850" border="0" /&gt;&lt;/a&gt;&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Download manager: make toolkit dlmgr buildable by suite (backend prerequisite) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=440932"&gt;Bug 440932&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Preferences window: Composer / New Page Settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435079"&gt;Bug 435079&lt;/a&gt;), MailNews / Return Receipts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445011"&gt;Bug 445011&lt;/a&gt;), MailNews / Junk Mail (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445010"&gt;Bug 445010&lt;/a&gt;), MailNews / Character Encoding (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445012"&gt;Bug 445012&lt;/a&gt;); enable using filefield elements (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448106"&gt;Bug 448106&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;update saved search folders' unread count when deleting mail without reading it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=300487"&gt;Bug 300487&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow filters to move a mail after copying it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=376235"&gt;Bug 376235&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement highlightNonMatches in Toolkit autocomplete (to show that email address could not be found in address book) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=441526"&gt;Bug 441526&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not report "Mail server is not an IMAP4 mail server" if server says BYE (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=408861"&gt;Bug 408861&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;filter news based on any headers [original fix had been backed out due to regressions] (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=16913"&gt;Bug 16913&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add confirmation dialog for Empty Trash (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=179891"&gt;Bug 179891&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure removing tags from local messages survives rebuild index (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=439132"&gt;Bug 439132&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set default for MDN confirmation dialog to No (i.e. Do Not Send) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=166164"&gt;Bug 166164&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support IMAP RFC 4551 - CondStore extension (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436151"&gt;Bug 436151&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not issue IMAP fetch CHANGEDSINCE unless using CondStore (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=448558"&gt;Bug 448558&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not remove new messages from view after changing tag (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444815"&gt;Bug 444815&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not clear messages and thread panes when compacting a folder other than the selected one (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=271988"&gt;Bug 271988&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;turn off error pages for MailNews windows (XML Parsing Error: no element found/netError.xhtml on newsgroup message download timeout) [will probably also be fixed in SM 1.1.12] (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=327510"&gt;Bug 327510&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Breakpad&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;disable email field after submission (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=427034"&gt;Bug 427034&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;CSS&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;support CSS3 'word-wrap' property (breaks long lines) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=99457"&gt;Bug 99457&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement CSS3 column-rule-* (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=271586"&gt;Bug 271586&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement W3C Selectors API (querySelector and querySelectorAll) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=416317"&gt;Bug 416317&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement parsing of @font-face rules (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=441469"&gt;Bug 441469&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;actually support --skip-calendar in comm-central's client.py (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=447225"&gt;Bug 447225&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add configure option to l10n repositories (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=447619"&gt;Bug 447619&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change build process to generate unique BuildIDs (including minutes and seconds) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431270"&gt;Bug 431270&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use separate accesskey for "Search Web for &lt;text&gt;" menu item (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=447833"&gt;Bug 447833&lt;/a&gt;)&lt;/text&gt;&lt;/li&gt;&lt;li&gt;save form inputs' state with Save Page As (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=293834"&gt;Bug 293834&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Ogg Theora backend for HTML5 video element (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=422538"&gt;Bug 422538&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show "Content Encoding Error" page when redownloading a previously cancelled .tar.gz file (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=426273"&gt;Bug 426273&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show file:// directories containing files &gt;= 2GB on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=278738"&gt;Bug 278738&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not try to retrieve image when img src="" and image URI equals document URI (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=444931"&gt;Bug 444931&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;utilize min-height on fieldset tag (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=210094"&gt;Bug 210094&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;check for left/top start position on startup to prevent overlapping widgets like the Dock (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433358"&gt;Bug 433358&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Crashes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash and lose mails if Rebuild Index is executed while compacting folder is in progress (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=392015"&gt;Bug 392015&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-4312929852356549354?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/4312929852356549354/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=4312929852356549354' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/4312929852356549354'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/4312929852356549354'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2008/08/new-home.html' title='A New Home'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://3.bp.blogspot.com/_1iQQ8MR1dRs/SKDJ16DZoDI/AAAAAAAAAAU/XRnbu1Qy8mQ/s72-c/hg-shortlog-mod.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-1345346541305340747</id><published>2008-07-23T00:23:00.004+02:00</published><updated>2008-07-23T01:02:08.741+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><title type='text'>Moving On</title><content type='html'>Finally the switch has been made. SeaMonkey trunk is now on Mercurial (hg), residing in the shared Thunderbird/Calendar/SeaMonkey repository called &lt;a href="http://hg.mozilla.org/comm-central/"&gt;&lt;span style="font-style: italic;"&gt;comm-central&lt;/span&gt;&lt;/a&gt; and pulling in Gecko and other core components from the Firefox/core repository called &lt;a href="http://hg.mozilla.org/mozilla-central/"&gt;&lt;span style="font-style: italic;"&gt;mozilla-central&lt;/span&gt;&lt;/a&gt;. That also means that Gecko 1.9.1pre is now used for SeaMonkey nightly builds, including recent improvements like support for Canvas text and CSS3 properties like text-shadow, border-image and pseudo classes. The CVS trunk is mostly dead now as far as SeaMonkey is concerned. The switch also means that there will be no SeaMonkey release with Gecko 1.9.0 (the rendering engine of Firefox 3.0); SeaMonkey will just skip it and (probably) go with Gecko 1.9.1 when it ships.&lt;br /&gt;&lt;br /&gt;Concerning the new hg web interface, there are pros and cons. On the one hand, there are RSS feeds available, which is good, but unlike with Bonsai, bug numbers are not linked and there doesn't seem to be a way to specify query time ranges or show affected files per each changeset in an overview, all of which is unfortunate from the perspective of a trunk tracker.&lt;br /&gt;&lt;br /&gt;The splitting-up of the repositories, on the other hand, gives me the opportunity to concentrate on the SeaMonkey and MailNews parts of development. I will probably reduce reporting about Gecko and core changes to the most noteworthy news, partly because it greatly reduces my workload but also because it's getting increasingly hard to sort out all the Firefox-only changes from the mozilla-central repository.&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add attribute to restore treelines on XUL trees (prerequisite to restoring missing treelines in MailNews) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430852"&gt;Bug 430852&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Preferences window: Composer / New Page Settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435079"&gt;Bug 435079&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;allow to disable marking a message as read when viewed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=297534"&gt;Bug 297534&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Ignore (kill) a subthread (now also with frontend) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=11054"&gt;Bug 11054&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Not Deleted view for IMAP with delete model active (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=190974"&gt;Bug 190974&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Run Junk Mail Controls work on selected messages again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=324953"&gt;Bug 324953&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set IMAP keywords for junk messages during manual junk analysis (Run Junk Mail Controls) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438654"&gt;Bug 438654&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;migrate SSL/port number/root folder when importing account settings from Outlook Express (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=262641"&gt;Bug 262641&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not show escaped name for IMAP saved searches with spaces in the name (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445403"&gt;Bug 445403&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not create unneeded .sbd folder when adding IMAP saved search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445343"&gt;Bug 445343&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;when offline, check memory cache for IMAP/news messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=213729"&gt;Bug 213729&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;should look in mem cache for messages when offline (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=213729"&gt;Bug 213729&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display warning when sending return receipt fails (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=386158"&gt;Bug 386158&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use better chunk size calculation when mail.imap.fetch_by_chunks is active (speed up sending of large emails) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425849"&gt;Bug 425849&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make "next" shortcut in account setup for News, Server information panel work (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=443908"&gt;Bug 443908&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add missing twisty icons for email address lists (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=383532"&gt;Bug 383532&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not change/force selection upon issuing Delete Mail Marked as Junk (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=200138"&gt;Bug 200138&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display custom columns added by extensions while in "grouped by sort" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=373967"&gt;Bug 373967&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;correctly update unread count in virtual folders when headers (e.g. junkpercent) change (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428427"&gt;Bug 428427&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable Mac OS X system address book per default and add UI (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436794"&gt;Bug 436794&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;preserve junkstatusorigin and junkpercent when moving IMAP junk message (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=443993"&gt;Bug 443993&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not allow to re-detach detached attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=416284"&gt;Bug 416284&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;(re)add ability to create Movemail account (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=443808"&gt;Bug 443808&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Certificates&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;remember (by default) user's client certificate selection for current session (already included in SM 1.1.10) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431819"&gt;Bug 431819&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;go to beginning/end of line when pressing up/down arrows on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=440515"&gt;Bug 440515&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add "Send Link" to link context menus (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=137007"&gt;Bug 137007&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update help for new Helper Applications pane (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=421084"&gt;Bug 421084&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Catalan to source l10n (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=445139"&gt;Bug 445139&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Use different IDs for preferences panels' elements (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=446027"&gt;Bug 446027&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display error when install fails due to missing install.rdf (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436207"&gt;Bug 436207&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Crashes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash when loading a Saved Search Folder (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=369918"&gt;Bug 369918&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-1345346541305340747?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/1345346541305340747/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=1345346541305340747' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/1345346541305340747'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/1345346541305340747'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2008/07/moving-on.html' title='Moving On'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-2138544244304619705</id><published>2008-07-06T11:31:00.004+02:00</published><updated>2008-07-06T12:04:28.182+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='cz'/><category scheme='http://www.blogger.com/atom/ns#' term='printing'/><category scheme='http://www.blogger.com/atom/ns#' term='ldap'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>Now That You're Gone</title><content type='html'>After the release of Firefox 3 and in preparation for Firefox 3.1 / Mozilla 1.9.1, the trunk has switched from CVS to Mercurial for Firefox, Gecko, Toolkit and most other Mozilla core components. The new repository is called &lt;em&gt;mozilla-central&lt;/em&gt;. SeaMonkey, Thunderbird, Calendar and other projects haven't made the switch yet but at least for the three mentioned above, a Mercurial repository called &lt;em&gt;comm-central&lt;/em&gt; has been be set up but not yet filled. In the meantime, SeaMonkey and MailNews development continues on the CVS trunk (sort of 1.9.0.x). The below is taken from there, ignoring Mercurial for now (Bugzilla integration, anyone?).&lt;br /&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Preferences window: Cookies (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436730"&gt;Bug 436730&lt;/a&gt;), Internet Search (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436709"&gt;Bug 436709&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add ability to set certificate per mail identity (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=278549"&gt;Bug 278549&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;quote just the selected portion of a message during Reply (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=23394"&gt;Bug 23394&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow signature to be placed above the quoted text when forwarding messages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=273114"&gt;Bug 273114&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow editing LDAP directory entry using double click (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=342934"&gt;Bug 342934&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;close LDAP connection when closing compose window with open address book sidebar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=321271"&gt;Bug 321271&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add pseudo-offline IMAP delete and move support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435153"&gt;Bug 435153&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;support Windows x64 build for mailnews (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438533"&gt;Bug 438533&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable junk token limit (100000) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=437098"&gt;Bug 437098&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;restore capability to use Tags (formerly Labels) as filter criterion, including "is empty" condition (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=217034"&gt;Bug 217034&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add wbr tag to list of allowed tags for simple HTML view (support YahooGroups emails) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=439601"&gt;Bug 439601&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow adding tags with names that are a substring of other tags' names (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=439548"&gt;Bug 439548&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow filter of "To or CC" to use "is in Address Book..." and "is not in Address Book..." (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=187768"&gt;Bug 187768&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not freeze up when adding tags with names that are a substring of other tags' names (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433175"&gt;Bug 433175&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent data loss when switching folders while Run Junk Mail Controls on Folder is running (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438805"&gt;Bug 438805&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add Junk Score Origin and Junk Percent to search and mail views (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=414179"&gt;Bug 414179&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not log NNTP XPAT twice (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=64580"&gt;Bug 64580&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add missing error checks in search views (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=441914"&gt;Bug 441914&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix memory leak after closing message window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=365723"&gt;Bug 365723&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;check identity's LDAP preference before global one to retrieve user certificates (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=392016"&gt;Bug 392016&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Get All New Messages, retrieval at specified times and at startup work with Movemail accounts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=278383"&gt;Bug 278383&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;handle Keynote files correctly when sending as attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=372786"&gt;Bug 372786&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove x- prefix from application/x-pkcs7-mime and application/x-pkcs7-signature MIME types (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436869"&gt;Bug 436869&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not erase address in compose window when LDAP lookup fails (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=366837"&gt;Bug 366837&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Address Book&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use Google Maps for Get Map (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436814"&gt;Bug 436814&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;ChatZilla&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;display all-numeric channel names as links (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433703"&gt;Bug 433703&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make multiline mode go away on paste (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=417196"&gt;Bug 417196&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add Cancel button to topic edit mode (keep changes when losing focus) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=399450"&gt;Bug 399450&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make nicknames of messages to another view clickable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436871"&gt;Bug 436871&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve CTCP detection (start of line, not inline) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=437184"&gt;Bug 437184&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable wrapping when line is made up of small blocks of processed (e.g. colored) text (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=416749"&gt;Bug 416749&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;handle malformed awayMsgs.txt (rename it and continue startup) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=437375"&gt;Bug 437375&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make CEIP distinguish mouse click events (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=439374"&gt;Bug 439374&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Printing&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not repeat the same text on every page when using Print Selection (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433284"&gt;Bug 433284&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;remove xml-rpc from SeaMonkey build (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=438676"&gt;Bug 438676&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to turn off offline mode detection by adding new pref toolkit.networkmanager.disable (workaround for when NetworkManager is running but not controlling the active network interface, e.g. when using PPP) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424626"&gt;Bug 424626&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;change "Block images from this server" to "Block images from (server name)" (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=93390"&gt;Bug 93390&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Crashes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash MailNews when a script is importing an address book and a field map is required but not set (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=437556"&gt;Bug 437556&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when importing Outlook email (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=440185"&gt;Bug 440185&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when importing Outlook contact CSV data file (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=440190"&gt;Bug 440190&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-2138544244304619705?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/2138544244304619705/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=2138544244304619705' title='4 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/2138544244304619705'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/2138544244304619705'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2008/07/now-that-youre-gone.html' title='Now That You&apos;re Gone'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>4</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-8520590204033661145</id><published>2008-06-09T23:52:00.001+02:00</published><updated>2008-06-10T02:09:12.929+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='cz'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>MailNews Advancements</title><content type='html'>&lt;div&gt; &lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Pref window: Advanced pref panel (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=421832"&gt;Bug 421832&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use &lt;textbox type="number"&gt; in Composer where applicable: Pref window part (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432132"&gt;Bug 432132&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;disable images on drag feedback for GTK2 since it lacks proper transparency support (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429821"&gt;Bug 429821&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make deleting/renaming IMAP folder show in the UI again without the need to collapse/expand (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=434920"&gt;Bug 434920&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to change priority via filter when message is moved and server supports user flags (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=181561"&gt;Bug 181561&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add a pref (mail.reply_quote_inline) to quote text attachment in reply (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=384599"&gt;Bug 384599&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let IMAP subscribe UI handle folders with a leading hierarchy delimiter correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=434110"&gt;Bug 434110&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make setting mail.auth_login and mail.server.default.auth_login to false (disabling AUTH/SASL) work with IMAP (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=417957"&gt;Bug 417957&lt;/a&gt;, also fixed on stable branch)&lt;/li&gt;&lt;li&gt;display correct unread count in Trash when playing back offline delete of unread IMAP message (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435259"&gt;Bug 435259&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;only enable the Next &gt; button when appropriate in the Account wizard (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=146392"&gt;Bug 146392&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update addressbook view when a new card is created while creating a new mailing list (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=434978"&gt;Bug 434978&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable .wdseml (Windows Search) file opening support for Mail/News (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433697"&gt;Bug 433697&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make message filters move up/down accelerators not disable the filter (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=368218"&gt;Bug 368218&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to limit growth of junk token store (add new pref mailnews.bayesian_spam_filter.junk_maxtokens) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=228675"&gt;Bug 228675&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not insert two blank lines after signature when top-posting (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428040"&gt;Bug 428040&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;speed up selecting saved search with a lot of results (do not paint scroll bar for every message) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=436960"&gt;Bug 436960&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;ChatZilla&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make userlist readable again (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432482"&gt;Bug 432482&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make /msg and /describe messages sent to a non-current channel not appear as if they were sent to the current channel (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=419230"&gt;Bug 419230&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;escape channel names for irc: urls containing '/' correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435602"&gt;Bug 435602&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;avoid starting Java when opening Chatzilla (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435772"&gt;Bug 435772&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;identify more Cygwin environments as such (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428683"&gt;Bug 428683&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use jemalloc on OpenSolaris (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=422055"&gt;Bug 422055&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Add a "Summary" last step before actual install, like Thunderbird has, to installer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428813"&gt;Bug 428813&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add accesskeys to right-click menu of bookmarks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=176359"&gt;Bug 176359&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set accesskey for various labels of updater menuitem in Help menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433551"&gt;Bug 433551&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;package and install ChatZilla language packs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=408844"&gt;Bug 408844&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable source server support on SeaMonkey Windows tinderbox (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433230"&gt;Bug 433230&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use Cmd+? to open Help menu on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432693"&gt;Bug 432693&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;don't try to import IE favorites on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=433117"&gt;Bug 433117&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;set autocomplete popup to correct width when page is zoomed in/out (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=407912"&gt;Bug 407912&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not apply cross-domain javascript security restrictions to local HTML files loaded into an IFRAME (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435362"&gt;Bug 435362&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow chrome favicons for XUL error pages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=301119"&gt;Bug 301119&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable using keyboard for text entry if address bar history entry is selected with mouse while pulldown menu is active from hotkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=270128"&gt;Bug 270128&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Crashes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash with display: -moz-box, generated content, positioning and fieldset (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=398332"&gt;Bug 398332&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when htmlSigText is set but no signature file is given (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=435587"&gt;Bug 435587&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;         &lt;/div&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-8520590204033661145?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/8520590204033661145/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=8520590204033661145' title='0 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/8520590204033661145'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/8520590204033661145'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2008/06/mailnews-advancements.html' title='MailNews Advancements'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><thr:total>0</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-2755310485175050889</id><published>2008-05-17T22:50:00.008+02:00</published><updated>2008-05-17T23:49:01.899+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gfx'/><category scheme='http://www.blogger.com/atom/ns#' term='plugins'/><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='cz'/><category scheme='http://www.blogger.com/atom/ns#' term='ssl'/><category scheme='http://www.blogger.com/atom/ns#' term='breakpad'/><category scheme='http://www.blogger.com/atom/ns#' term='printing'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='composer'/><category scheme='http://www.blogger.com/atom/ns#' term='l10n'/><category scheme='http://www.blogger.com/atom/ns#' term='certificates'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>Add-ons AMO Integration And More</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Preferences window: Smart Browsing (now Location Bar) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=411226"&gt;Bug 411226&lt;/a&gt;), Offline &amp;amp; Disk Space (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429015"&gt;Bug 429015&lt;/a&gt;), Composer and Toolbars (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431061"&gt;Bug 431061&lt;/a&gt;) and ChatZilla (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=417319"&gt;Bug 417319&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;remove dotted lines from tree views (affects MailNews thread display) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425131"&gt;Bug 425131&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;call onItemAdded only on parent address book of mailing lists (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=406921"&gt;Bug 406921&lt;/a&gt;)&lt;br /&gt;also fixes: prevent addresses in multiple lists from appearing multiple times in parent address book (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=134590"&gt;Bug 134590&lt;/a&gt;), update parent address book after changing a list (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=362351"&gt;Bug 362351&lt;/a&gt;) and update list when deleting card from it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=340728"&gt;Bug 340728&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;implement Mail.app (Mac) importer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=420472"&gt;Bug 420472&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable "Character Encoding" in "View Source" window (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=350693"&gt;Bug 350693&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not let IMAP code deadlock when it can't reach the network (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=410747"&gt;Bug 410747&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;GTK/Linux&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use 4px tooltip padding width (left and right) on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=419395"&gt;Bug 419395&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make new Linux print &amp;amp; page-setup dialogs modal (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431190"&gt;Bug 431190&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Editor&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;allow to resize linked images in contentEditable elements (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=417533"&gt;Bug 417533&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ensure that contentEditable elements are still editable after going back to a page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=386782"&gt;Bug 386782&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make pressing enter in div with contentEditable not move text nodes unexpectedly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430392"&gt;Bug 430392&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;unhide grabber for absolutely positioned elements and make it accessible (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=384625"&gt;Bug 384625&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Composer handle XHTML documents (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431184"&gt;Bug 431184&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;ChatZilla&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make columns in "Join Channel" dialog resizeable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432831"&gt;Bug 432831&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow moving a tab for channel called "#" without errors (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432818"&gt;Bug 432818&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make double-clicking a user in the user list open a query view (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432235"&gt;Bug 432235&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add new images and symbols for the userlist (suitable for default &amp;amp; dark motifs) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431859"&gt;Bug 431859&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;provide a dark motif userlist (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=410962"&gt;Bug 410962&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add optional instrumentation code / opt-in anonymous usage reporting: CEIP (Customer Experience Improvement Program) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=299472"&gt;Bug 299472&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make "/voice *" voice all people (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=415006"&gt;Bug 415006&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make channel/user views appear in preferences window if network has no prefs and is hidden (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430977"&gt;Bug 430977&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;localize 421 (ERR_UNKNOWNCOMMAND) message from server (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=423644"&gt;Bug 423644&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add "User commands" to the right-click context menu in Query views (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=423011"&gt;Bug 423011&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Browse... button in pref window work if pref is invalid (point to default) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=418722"&gt;Bug 418722&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not save new nickname when connected and server does not accept it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=420635"&gt;Bug 420635&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;split messages for display already, to indicate "spam" and/or link breakage (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=422060"&gt;Bug 422060&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove spaces from nicknames (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=349268"&gt;Bug 349268&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Certificates&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add a way to always show the Add Exception buttons on SSL error pages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=427293"&gt;Bug 427293&lt;/a&gt;, see comment 22)&lt;/li&gt;&lt;li&gt;show link to correct site in SSL error pages for domain mismatch (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=402210"&gt;Bug 402210&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use identity error icons on SSL error pages (all platforms) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430904"&gt;Bug 430904&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Printing&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;ensure that no content of multi-page print selection streams off end of page / is duplicated on next page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430389"&gt;Bug 430389&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;calculate correct "total number of pages" for print selection when printing scaled output (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431587"&gt;Bug 431587&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make print selection place text correctly with initial whitespace and select-all (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430748"&gt;Bug 430748&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;gfx/Layout&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;remove hover state for dropdown button on menulists in Vista chrome (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430434"&gt;Bug 430434&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add new artwork for the icons of loading-images and broken-images (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=240463"&gt;Bug 240463&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Type 1 fonts print correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432071"&gt;Bug 432071&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make content drop-down menus appear with the parent menu (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431606"&gt;Bug 431606&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;improve font handling and text display in OS/2 Thebes builds (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=381333"&gt;Bug 381333&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make CG glyph rendering not always anti-alias when system preference is to disable for font size &gt; x on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=418479"&gt;Bug 418479&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add native fast-path for drawImage with a canvas as source (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430873"&gt;Bug 430873&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use correct logical resolution for converting font sizes in pt, etc. with GTK+ (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=384090"&gt;Bug 384090&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;ensure that pop-up window image zoom-out works correctly (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=369370"&gt;Bug 369370&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;interpret PNG height correctly (do not mix height and width) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=411852"&gt;Bug 411852&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Breakpad&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make Crash reporter dialog wide enough for l10n (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=415428"&gt;Bug 415428&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;send proxy settings to the Breakpad reporter (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=385280"&gt;Bug 385280&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;implement --disable-vista-sdk-requirements configure option and update source to use it (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428970"&gt;Bug 428970&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable high-memory feature on OS/2 by default (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=369007"&gt;Bug 369007&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Crashes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash when specifying invalid filename for print settings on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429707"&gt;Bug 429707&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash while setting innerHTML with SVG, onload (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431703"&gt;Bug 431703&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when freeing plugin memory (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=422024"&gt;Bug 422024&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt;&lt;br /&gt;&lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;use platform specific 16x16 warning favicon in network error pages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429721"&gt;Bug 429721&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove useless binaries from the package (now also for OS/2) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=356727"&gt;Bug 356727&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;time changing QuickDraw plugin visibility correctly when switching tabs on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=277067"&gt;Bug 277067&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add ability to monitor plug-ins at run-time (backend for Plugin Watcher extension) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=412770"&gt;Bug 412770&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add system colors for even/odd tree rows on all platforms (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429188"&gt;Bug 429188&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update blocklist URL to include same info as update URL (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430120"&gt;Bug 430120&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;setup unit/mochi/crash/reftest buildbots for SeaMonkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=416469"&gt;Bug 416469&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make browser mochitests pass on SeaMonkey (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431453"&gt;Bug 431453&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make SeaMonkey Windows unit test machine pass all mochitests and navigator window default size dynamic (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=432740"&gt;Bug 432740&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let the installer create a correct Start Mail link (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428819"&gt;Bug 428819&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use a checkbox instead of a radiobutton on installer's Licence page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429851"&gt;Bug 429851&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not activate links when clicking in blank space in file column of directory listing (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428250"&gt;Bug 428250&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Cmd+T open a new window when no browser windows are open on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429926"&gt;Bug 429926&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make postMessage dispatch its event asynchronously (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430251"&gt;Bug 430251&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;reactivate Autoscroll on OS/2 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=410398"&gt;Bug 410398&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;adapt and integrate ipluginw for trunk and libxul (needed to make Java plugin work) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=421988"&gt;Bug 421988&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use extension if the type of an embed is not supported by a plugin (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431280"&gt;Bug 431280&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;give notification bars default icons via CSS (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431275"&gt;Bug 431275&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use a solid line between results in the Error Console (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431241"&gt;Bug 431241&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;use new folder icons for FTP/filesystem view on XP and Vista (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=431013"&gt;Bug 431013&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make '^' and '¨' characters work in password fields (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=430650"&gt;Bug 430650&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;integrate AMO into SeaMonkey's Add-on Manager (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=414918"&gt;Bug 414918&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;a onblur="try {parent.deselectBloggerImageGracefully();} catch(e) {}" href="http://bp2.blogger.com/_1iQQ8MR1dRs/SC9Fg23ip3I/AAAAAAAAAAM/7YZfYTZpwMc/s1600-h/Add-ons+AMO+integration.png"&gt;&lt;img style="margin: 0px auto 10px; display: block; text-align: center; cursor: pointer;" src="http://bp2.blogger.com/_1iQQ8MR1dRs/SC9Fg23ip3I/AAAAAAAAAAM/7YZfYTZpwMc/s320/Add-ons+AMO+integration.png" alt="Add-ons AMO integration" id="BLOGGER_PHOTO_ID_5201452525422815090" border="0" /&gt;&lt;/a&gt;&lt;div class="blogger-post-footer"&gt;&lt;img width='1' height='1' src='https://blogger.googleusercontent.com/tracker/17188930-2755310485175050889?l=smtt.blogspot.com' alt='' /&gt;&lt;/div&gt;</content><link rel='replies' type='application/atom+xml' href='http://smtt.blogspot.com/feeds/2755310485175050889/comments/default' title='Post Comments'/><link rel='replies' type='text/html' href='http://www.blogger.com/comment.g?blogID=17188930&amp;postID=2755310485175050889' title='1 Comments'/><link rel='edit' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/2755310485175050889'/><link rel='self' type='application/atom+xml' href='http://www.blogger.com/feeds/17188930/posts/default/2755310485175050889'/><link rel='alternate' type='text/html' href='http://smtt.blogspot.com/2008/05/add-ons-amo-integration-and-more.html' title='Add-ons AMO Integration And More'/><author><name>InvisibleSmiley</name><uri>http://www.blogger.com/profile/00990590780463825686</uri><email>noreply@blogger.com</email><gd:image rel='http://schemas.google.com/g/2005#thumbnail' width='21' height='32' src='http://jh.junetz.de/images/jh.jpg'/></author><media:thumbnail xmlns:media='http://search.yahoo.com/mrss/' url='http://bp2.blogger.com/_1iQQ8MR1dRs/SC9Fg23ip3I/AAAAAAAAAAM/7YZfYTZpwMc/s72-c/Add-ons+AMO+integration.png' height='72' width='72'/><thr:total>1</thr:total></entry><entry><id>tag:blogger.com,1999:blog-17188930.post-554532156324314889</id><published>2008-04-21T22:22:00.006+02:00</published><updated>2008-04-21T22:38:55.347+02:00</updated><category scheme='http://www.blogger.com/atom/ns#' term='gfx'/><category scheme='http://www.blogger.com/atom/ns#' term='svg'/><category scheme='http://www.blogger.com/atom/ns#' term='gtk'/><category scheme='http://www.blogger.com/atom/ns#' term='linux'/><category scheme='http://www.blogger.com/atom/ns#' term='mathml'/><category scheme='http://www.blogger.com/atom/ns#' term='cz'/><category scheme='http://www.blogger.com/atom/ns#' term='breakpad'/><category scheme='http://www.blogger.com/atom/ns#' term='printing'/><category scheme='http://www.blogger.com/atom/ns#' term='mailnews'/><category scheme='http://www.blogger.com/atom/ns#' term='compiling'/><title type='text'>Backend Promises</title><content type='html'>&lt;span style="font-weight: bold;"&gt;Progress&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Vista integration: port Toolkit's Window shellservices to Suiterunner (backend for setting SM as default client) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=380347"&gt;Bug 380347&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Preferences window: Migrate Tags (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=416548"&gt;Bug 416548&lt;/a&gt;) and Message Display (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=427365"&gt;Bug 427365&lt;/a&gt;) MailNews subpanes &lt;/li&gt;&lt;li&gt;Ignore (kill) a subthread in MailNews: Backend (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=11054"&gt;Bug 11054&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;New icons for Mail back/forward: Modern theme part (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=399366"&gt;Bug 399366&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;Add support for Kerberised LDAP to MailNews: Backend (extensions/auth) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428482"&gt;Bug 428482&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;"Warning: Key event not available on ..." messages: update list of keys (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=311756"&gt;Bug 311756&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;General&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;load local XHTML even if a non-existent CSS file is specified (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=418391"&gt;Bug 418391&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not issue "Error: this.docShell is null" when the sidebar opens (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=412171"&gt;Bug 412171&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not save the error page icon into Bookmarks (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=323508"&gt;Bug 323508&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;disable color controls when 'Use system color' is checked (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=79603"&gt;Bug 79603&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make updater.exe appear as "SeaMonkey Updater" in the UAC prompt on Vista (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=405553"&gt;Bug 405553&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;display correct error message when installing an extension that isn't compatible with the app (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428341"&gt;Bug 428341&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent websites from detecting extensions via chrome protocol handler (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=292789"&gt;Bug 292789&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure "Try Again" after a DNS error does not load previous page instead of the one that failed to load (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=421067"&gt;Bug 421067&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make default browser window size bigger (70ch x 45em) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=423368"&gt;Bug 423368&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make content of mplayer plugin no spill over into content area when scrolling on OS/2 (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=418645"&gt;Bug 418645&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;remove empty Mozilla directories in appdata when Remove personal data option is set during uninstall (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=407008"&gt;Bug 407008&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix dragging multiple files to editor on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428876"&gt;Bug 428876&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not go to chrome URL when setting New Tab preference to Home Page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=429731"&gt;Bug 429731&lt;/a&gt;)&lt;br /&gt;(also fixed in next stable release, e.g. 1.1.10)&lt;/li&gt;&lt;li&gt;remove countdown timer from software update UI (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424995"&gt;Bug 424995&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix progressmeter in undetermined mode on Mac OS X (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=304147"&gt;Bug 304147&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;move caret to beginning/end of url bar or text box when pressing up/down arrow key on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=231754"&gt;Bug 231754&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not incorrectly shift accesskeys (e.g. accesskey=".") (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=359638"&gt;Bug 359638&lt;/a&gt;) /make Ctrl + + (text zoom) work (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=401086"&gt;Bug 401086&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make IME work in Flash text field on Mac (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=357670"&gt;Bug 357670&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MailNews&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;allow to delete folders in the background without a confirmation (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424024"&gt;Bug 424024&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add "Recent Folder Target" to Move and Copy menus (SeaMonkey part) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=416669"&gt;Bug 416669&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to rename already-attached attachments (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=190298"&gt;Bug 190298&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;show account name instead of email address in titlebar (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=141089"&gt;Bug 141089&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow to rename a local folder to exactly the same name (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=427711"&gt;Bug 427711&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;escape &amp;amp; character as &amp;amp;amp; in href when creating plaintext url html (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=408096"&gt;Bug 408096&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;maintain correct internal values for Junk filter (for extensions) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=366491"&gt;Bug 366491&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make restore defaults for tags work in non-instant-apply mode (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428594"&gt;Bug 428594&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;(pref unthreads=True): make threading via column header force Sort by Date instead of Order Received (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=369620"&gt;Bug 369620&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when trying to reorder "date" column for new IMAP account in new profile (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=422720"&gt;Bug 422720&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;identify the sender of a reply or forward mail correctly if a mail identity is a substring of another one (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424098"&gt;Bug 424098&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not require application restart for changing the print orientation to take effect (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=420050"&gt;Bug 420050&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure spellchecker.dictionary pref default is not empty (affects languages dropdown in Mail Composition pref pane) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=423241"&gt;Bug 423241&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;expose less of the messenger chrome package to content (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428996"&gt;Bug 428996&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow attaching and sending out-of-locale Unicode-named files (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=332110"&gt;Bug 332110&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;GTK/Linux&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;improve Linux autoscroll icon (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=387018"&gt;Bug 387018&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;render native ComboBox arrow correctly with GNOME nimbus theme (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=426322"&gt;Bug 426322&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;add support for keyboard layouts (backend) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=348724"&gt;Bug 348724&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;ChatZilla&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;make ChatZilla optional in SeaMonkey NSIS installer (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=409490"&gt;Bug 409490&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not append underscores infinitely when nickname is unavailable on server (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428811"&gt;Bug 428811&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Editor&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;disallow drag-dropping to non-editable regions when the document contains a contenteditable element (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=390934"&gt;Bug 390934&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;handle non-editable content (e.g. links) the same way no matter if there is a contenteditable element or not (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=388659"&gt;Bug 388659&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not allow link/anchor elements within a contentEditable element to be focussed (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=406596"&gt;Bug 406596&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;SVG&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;correct list of supported SVG Feature Strings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=322724"&gt;Bug 322724&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;refresh when transforming the ancestors of a foreignObject (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=426721"&gt;Bug 426721&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not zoom twice HTML or MathML text embedded in SVG as foreignObject (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=426980"&gt;Bug 426980&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;allow SVG without a viewBox to scroll when embedded by reference by a replaced element (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=428023"&gt;Bug 428023&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Printing&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;ensure landscape mode setting does not fail on Linux/Unix if there is no CUPS printer configured (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424751"&gt;Bug 424751&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Landscape mode not print in Portrait mode on Linux (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=389949"&gt;Bug 389949&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;let sites like mozillazine.org print correctly (ensure columns are not missing) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=411585"&gt;Bug 411585&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make Print Selection not print blank pages (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=402264"&gt;Bug 402264&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Breakpad&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add "Printed output is wrong" to list of problem types (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=413937"&gt;Bug 413937&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;enable crash reporting by default in only X% of cases for release builds (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424960"&gt;Bug 424960&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;gfx/Layout&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;load font cmap info via a background task on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=419744"&gt;Bug 419744&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix character spacing problem for bit-mapped and vector fonts on Windows (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425336"&gt;Bug 425336&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;update default fonts for Indic scripts (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=378105"&gt;Bug 378105&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make sure that the font selection for numerals is not affected by characters of different a language elsewhere on the page (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=416725"&gt;Bug 416725&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make moz-icon display correct icon with contentType parameter specified (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=415273"&gt;Bug 415273&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make red line appear in Arabic spelling checking (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=421042"&gt;Bug 421042&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;prevent artifacts in frames of certain APNGs (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=420416"&gt;Bug 420416&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make grid columns line up if one &amp;lt;rows&amp;gt; block is scrollable (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=393970"&gt;Bug 393970&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make scrolling on Gmail/Linux as fast as in previous versions (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=424915"&gt;Bug 424915&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix CSS margin problem (CSS spec change) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=427129"&gt;Bug 427129&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not over-optimize whether to show border outline for -moz-border-radius (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=399258"&gt;Bug 399258&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;fix font rendering/kerning on Mac (font-variant: small-caps) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=427730"&gt;Bug 427730&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;respect size attribute of textboxes (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=410405"&gt;Bug 410405&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;MathML&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;add support for stretchy fences built from glyphs in SymbolMT (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425367"&gt;Bug 425367&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;make combining marks for accents visible (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=427659"&gt;Bug 427659&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Accesskeys&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;Change duplicated accesskeys in Disk Space (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425164"&gt;Bug 425164&lt;/a&gt;), Copies and Folders (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425171"&gt;Bug 425171&lt;/a&gt;), Security (SMIME) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425175"&gt;Bug 425175&lt;/a&gt;), Junk Settings (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425173"&gt;Bug 425173&lt;/a&gt;) and Composition &amp;amp; Addressing panels (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=425176"&gt;Bug 425176&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Compiling&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;enable build configure to make sure the correct Windows SDK is installed (atlbase.h checks) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=426065"&gt;Bug 426065&lt;/a&gt;)&lt;/li&gt;&lt;/ul&gt; &lt;span style="font-weight: bold;"&gt;Crashes&lt;/span&gt;&lt;br /&gt;&lt;ul&gt;&lt;li&gt;do not crash on window/tab close with Flip4Mac plugin (stop QuickTime and Flip4Mac plugins directly when requested, not off an event) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=426524"&gt;Bug 426524&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash when selection changes in an unusual way (MailNews topcrash) (&lt;a href="https://bugzilla.mozilla.org/show_bug.cgi?id=415601"&gt;Bug 415601&lt;/a&gt;)&lt;/li&gt;&lt;li&gt;do not crash with Viewpoint plugin (
