Updated Firefox 1.1 changelog

I updated and reorganized the unofficial changelog for Firefox 1.1. Boris helped by suggesting core changes to include.

32 Responses to “Updated Firefox 1.1 changelog”

  1. Sarah L. Says:

    I think bug 239218 should be added to your list, very painful mac-bug.

  2. Sarah L. Says:

    And maybe bug 220589 as well.

    By the way, was bug 238099 targeted at Web Developers?

  3. Jesse Ruderman Says:

    I added those two Mac bugs and moved 238099 from the Web Developers section to the New Features section. Thanks.

  4. Darin Fisher Says:

    The “API for prioritizing HTTP connections” is actually used to load inline images with lower priority. This helps make the browser more responsive to link clicks while a page is loading. It is important to note that this prioritization is for requests to the same host. Prioritization of requests across hosts is not implemented. The idea here is to make the browser handle the cap of no more than 2 persistent connections per host more effectively.

  5. Uri Bernstein Says:

    Bug 76197 is fixed for Windows and Linux, but not yet for Mac. See bug 274036.
    Also, why is this in the web developer features section? IMO, it’s simply a bug fix.

  6. David B. Haun Says:

    Bug 247884 was fixed in Firefox 1.0.3 which is a branch build and backported to the trunk.

  7. Jesse Ruderman Says:

    Darin – That happened in bug 278531, right? I guess I need to read that bug.

    Thanks, Uri and David. I’ve made those changes.

  8. Barend Says:

    Nothing about Xforms?

  9. Jeff Walden Says:

    XForms isn’t built into Firefox, and for the foreseeable future it will be made available in extension format only. That’s why it’s not in the list – it’s an extra that’s not in the default build.

  10. ANBO Motohiko Says:

    Bug 251418 is not a new feature.

    > ——- Additional Comment #9 From Scott MacGregor 2004-07-15 09:47 PDT [reply] ——-
    >
    > fixed on the trunk and the aviary 1.0 branch

  11. alanjstr Says:

    231062 – this is merely a wrapper for the FX install; not a real MSI
    245392 – Reopened
    238099 – This is in 1.0.4. I use it in my userContent.css already

  12. Asaf Romano Says:

    alanjst: bug 238099 has never landed on 1.7/aviary1.0, you’re probably using URIid

  13. Jesse Ruderman Says:

    I added XForms-as-an-extension and XTF, and took care the last three comments.

  14. Alex Krupp Says:

    On my mac the scrollbar on the right just looks like a long grey strip. I think this definitely needs to be fixed. No matter how good the browser is in other respects, this bug still makes it look completely unprofessional. I’m sure that there are many large institutions not adopting firefox because of this bug alone, just because it makes it so obvious that it is a flawed product from the second you open it.

  15. Chris Neale Says:

    The online copy of alanjstr’s userContent.css has no uriid-type ids/classes in it … it has 238099-type declarations :


    @-moz-document domain(mozilla.org) {
    a[href*="mozilla.org"]:before {
    content: "";
    }
    }

  16. Chris Neale Says:

    Is Alex Krupp using a Mac-specific theme ?

    If not his / her scrollbar will be grey, because Mac still has a different scrollbar binding from Win / Lin : ]

  17. Jesse Ruderman Says:

    I tried using @-moz-document in 1.0.4 and it didn’t work. Also, the bug says it wasn’t checked into Aviary. I have no idea why it works for alanjstr in 1.0.4.

  18. Jesse Ruderman Says:

    Is there a bug report in Bugzilla about the problem with scrollbars on Mac?

  19. Alex Krupp Says:

    Jesse: I never submitted it because I assumed it was already widely known. Here is a pic of my firefox. I am just running a standard PowerBook G4 with Tiger 10.4.1 and no system modifications or anything like that.

  20. Jesse Ruderman Says:

    http://developer-test.mozilla.org/docs/What%27s_New_in_Deer_Park_Alpha is a copy of new “New Features” sections with better descriptions. Deb Richardson created the wiki page, and descriptions have been added by Gavin, Doron, Benjamin Smedberg, and “Editmonkey” (who is that?).

  21. Chris Neale Says:

    That’s Phoenity – not the default Mac theme of Pinstripe … I don’t think cheeaun does a Mac version.

    userChrome with

    /* Mac scrollbars */

    /* ::::: scrollbar ::::: */

    scrollbar {
    -moz-appearance: scrollbar;
    -moz-binding: url(chrome://global/content/bindings/nativescrollbar.xml#scrollbar) !important;
    min-width: 16px;
    cursor: default;
    background-color: white;
    }

    /* ::::: square at the corner of two scrollbars ::::: */

    scrollcorner {
    -moz-binding: url(chrome://global/content/bindings/scrollbar.xml#scrollbar-base);
    cursor: default;
    background-color: white;
    }

    /* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
    /* ::::::::::::::::::::: MEDIA PRINT :::::::::::::::::::::: */
    /* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
    @media print {
    html|div scrollbar {
    -moz-appearance: scrollbar;
    -moz-binding: url(chrome://global/content/bindings/nativescrollbar.xml#scrollbar) !important;
    min-width: 16px;
    cursor: default;
    }
    }

    AND

    userContent.css with

    /* Mac scrollbars */

    /* ::::: scrollbar ::::: */

    scrollbar {
    -moz-appearance: scrollbar;
    -moz-binding: url(chrome://global/content/bindings/nativescrollbar.xml#scrollbar) !important;
    min-width: 16px;
    cursor: default;
    background-color: white;
    }

    /* ::::: square at the corner of two scrollbars ::::: */

    scrollcorner {
    -moz-binding: url(chrome://global/content/bindings/scrollbar.xml#scrollbar-base);
    cursor: default;
    background-color: white;
    }

    /* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
    /* ::::::::::::::::::::: MEDIA PRINT :::::::::::::::::::::: */
    /* :::::::::::::::::::::::::::::::::::::::::::::::::::::::: */
    @media print {
    html|div scrollbar {
    -moz-appearance: scrollbar;
    -moz-binding: url(chrome://global/content/bindings/nativescrollbar.xml#scrollbar) !important;
    min-width: 16px;
    cursor: default;
    }
    }

    help : )

  22. Alex Krupp Says:

    Chris: That makes sense, thanks for the info. Being not a developer, how do I implement the fix you wrote out?

  23. Jesse Ruderman Says:

    Alex, I think he’s telling you to add that text to a userChrome.css file in the chrome subdirectory of your profile.

  24. Chris Neale Says:

    And userContent.css … since browser scrollbars are considered content [for some reason].

  25. Alex Krupp Says:

    Cool, thanks Chris, it actually works now. I didn’t even realize that this was because of Phoenity before because I hate the default theme so much that it is changed within thirty seconds of installing the browser. Anyway, thanks again for your help. This should really go in a FAQ somewhere :)

  26. amake Says:

    Alex: Um, how about you just not install Windows-only themes?

  27. Uri Bernstein Says:

    The Mac theme scrollbar issue is bug 222654 (“global/scrollbars.css for native scrollbars different on mac”), in case anybody is interested in voting for it (or fixing it).

  28. Josh Strike Says:

    The intentional removal of the CMD-arrow page forward and backward functionality on the Mac is absolutely maddening. I’ve avoided using a mouse to browse the web since I was running Lynx in 1992; I’m not going to start now. It’s hard to understand why Firefox has become increasingly unusable since v.0.8, the last time all the keyboard shortcuts actually worked. If functionality keeps arbitrarily being removed for no conceivable reason, pretty soon it’ll be as useless as Navigator 6.0 was.

  29. Alex Krupp Says:

    amake: I just went to the phoenity download page and it said nothing about windows.

  30. Philippe Says:

    the command arrow problem in Firefox Mac is bug 291516.

    The new shortcut creates many problems for people using non-US keyboards

  31. Chris Neale Says:

    http://www.phoenity.com/firefox.html states :

    Sub-skins

    The Phoenity theme is very customizable. To further enhance the look of this theme, please go to the Phoenity Sub-skins page.

    Then http://www.phoenity.com/subskins.html has :

    Using Phoenity on Mac Firefox, the scrollbar is buggy. To fix this, Mac users must add the following codes to both userChrome.css and userContent.css:

    @import url(“chrome://browser/skin/subskins/macscrollbar.css”);

    Which will be neater than my fix above.

  32. alanjstr Says:

    Hmmm. I swear my userContent.css worked with 1.0.3. And then I upgraded to 1.0.4 and that mozilla.org rule stopped working. I’ve seen it work, I swear! And I’ve never used trunk after 1.0 came out.