Stories
Slash Boxes
Comments

News for nerds, stuff that matters

Slashdot Log In

Log In

Create Account  |  Retrieve Password

Mozilla Firefox 1.5 Beta 1 Released

Posted by CowboyNeal on Thu Sep 08, 2005 11:29 PM
from the kick-the-tires dept.
elfguygmail.com writes "Firefox 1.5 beta1 is out! It includes many new features including a new automatic update system, reworked options dialogs, faster browsing, new error pages, memory and stability updates. Get your beta at Mozilla.org."
+ -
story
This discussion has been archived. No new comments can be posted.
The Fine Print: The following comments are owned by whoever posted them. We are not responsible for them in any way.
 Full
 Abbreviated
 Hidden
More
Loading... please wait.
  • Yeah! (Score:5, Funny)

    by OctoberSky (888619) on Thursday September 08 2005, @11:32PM (#13515964)
    Yeah! New error pages! Finally no more of that 404 bullshit.
    • Re:Yeah! (Score:5, Funny)

      by Seumas (6865) on Thursday September 08 2005, @11:34PM (#13515983)
      No, they said NEW ones.

      I would suspect they've introduced new errors, entirely! Maybe some 700s, 800s.. maybe even some googols!

      Since I'm not going to install it on my mac, someone want to post screenshots of the new screens? Please tell me they're more informative (for unsophisticated users) but not mimics of MSIE.
  • Deer Park !!!!!!!!!! (Score:5, Informative)

    by zymano (581466) on Thursday September 08 2005, @11:33PM (#13515970)
    Yeeeeeeah ! Faster back and forward means better performance reading messageboards . Deerpark alpha wont start on my machine. I am one those that submitted a couple of bugs on this. Good job boys!
    • by Dread Pirate Shanks (860203) on Friday September 09 2005, @01:19AM (#13516522)
      If they can get it to be as fast as Opera's cached pages, they'll really have something there. Going back and forth in Opera is almost entertaining, it's so damn fast.
    • Back (Score:5, Insightful)

      by TopSpin (753) * on Friday September 09 2005, @01:29AM (#13516555) Journal
      Faster back and forward means better performance...

      Nice. Too bad its taken over 11 years for someone to optimize this in a relevant browser.

      I'm not a browser developer so I've always wondered why browsers do not simply re-render what has already been cached when 'back' is used. I hit 'back' and I observe network activity even when the page is entirely 100% cacheable content. The browser is probably playing with If-Modified-Since... I'd rather it just render what's cached especially when, between the time the page was first rendered and the time I hit 'back' the network flakes out and, rather than simply rendering what is already faithfully stored on my local disk, the browser hangs!

      It's not just inconvenient. It's wrong in principle; 'back' should be 'back to precisely what I received previously', not 'attempt to re-get whatever now appears at the previous URL.' If I want the page refreshed, I will use the provided 'refresh' button, mkay? Thanks.

      There's probably some profoundly crucial and subtle reason for all this and I've foolishly revealed my ignorance. Apply the necessary flames, but only if you have credible answers.
      • Re:Back (Score:4, Interesting)

        by Jugalator (259273) on Friday September 09 2005, @01:54AM (#13516646) Journal
        I think the "problem" with Firefox 1.0 was that it wasn't caching the DOM tree, and given how complex that beast can turn out to implement (code can for example modify their own DOM on the fly whenever they feel like), it's not really surprising to me.

        I think Firefox 1.5 is basically as fast as Opera on this now, so it's nice to see one of Opera's killer features in Firefox.
      • State. (Score:5, Insightful)

        by abulafia (7826) on Friday September 09 2005, @02:23AM (#13516775)
        It's not just inconvenient. It's wrong in principle; 'back' should be 'back to precisely what I received previously', not 'attempt to re-get whatever now appears at the previous URL.' If I want the page refreshed, I will use the provided 'refresh' button, mkay? Thanks.

        So, the big deal here is maintaining consensual state. I'm sure you know the basics here. Best practice is to POST when changing state on the server, and GET when reading. But, not everone does that. And it also took a long time to come up with that simple rule. The upshot is that when using browser based C/S apps, there is no good way to tell if the last action changed the state of whatever it is you're looking at. (For a simple example, think of confirming a bank transfer, and hitting back from the "it worked" page.) And even the POST means change rule doesn't always work or apply. Good app design has to play a role, but a browser has no idea if what is going on with the server.

        There are other reasons why back can't always be exactly "what you got a page ago", but the above is the main killer (from the perspective of what I do, at least). Developers can make this better by playing tricks with the last-modified header and whatnot, but you're either going to sometimes get broken info or at least do a HEAD when going back, take your pick.

        It is notable that the whole AJAX obsession usually completely kills the back button, and many web developers are very hot on the idea. If global state, session, and sometimes transaction can be bound that much more tightly, it does make life easier for a coder, at the expense of some great client side functionality. (Again, depending on how you think of it.)

        Doesn't mean I'm not using XMLRPC - I don't mind bragging that we were doing some of this a few years ago. Having a community to trade ideas with kicks ass, and I've learned a lot from other's experimentation. But we shouldn't lose track of basics, like "the browser is not just a window frame; inbuilt functionality is important and if you make your own back buttons, you're missing the point."

        • Re:State. (Score:5, Funny)

          by rastos1 (601318) on Friday September 09 2005, @03:56AM (#13517064)
          Use the approach that is used in my company:

          Developers: Do you want to use approach A or B?
          Sales: Both! And make it configurable!

          • Heh. (Score:5, Funny)

            by abulafia (7826) on Friday September 09 2005, @06:45AM (#13517633)
            Reminds me of a joke we repeat to each other.

            Consultant: No, what I'm asking is, do you want us to build the method that works, which you hired us to discover and spec out for you, or the broken one, for which you're now asking?
            Client: The broken one!
            Consultant: You're sure.
            Client: Are you billing me for this conversation?

      • Re:Back (Score:4, Informative)

        by arkanes (521690) <arkanes&gmail,com> on Friday September 09 2005, @08:01AM (#13517986) Homepage
        The current standard says that "back" should always load from cache, but for a long time it didn't directly address it and a lot of browsers did various thing. IE and Netscape both send a HEAD request for to check for a new version. Opera will unconditionally load from cache. I believe that Opera will load from cache even with a page that has no-cache set, which is wrong.

        Firefox, by the way, will fall back on the cache if it's unable to get the HEAD request. I'm not sure if it will correctly fall back if the HEAD succeeds but the actual request does not. IE will crap out, though.

        Precisely what the "correct" behavior is, by which I mean "what the user expects" will vary from case to case, so it's hard to have a case that everyone agrees with. Netscape and IE both implemented what they thought was right, and have retained that behavior for consistencies sake even though some of the purists in the standards bodies have changed it.

    • by Vicsun (812730) on Friday September 09 2005, @02:15AM (#13516733)
      Not to troll, but Opera has had this feature for ages.

      Now that Firefox have finally caught up I might just switch back, though. It was the feature that converted me to Opera in the first place.
  • Fp (Score:5, Informative)

    by anaesthetica (596507) on Thursday September 08 2005, @11:33PM (#13515979) Homepage Journal
    Posting on it now. Generally teh snappier on OS X, which I appreciate. Text handling still isn't good enough to switch from Camino. The drag n drop tabs are a very welcome addition. Also, it looks like the Slashdot bug has been cleared up. Sweet.
        • Re:Fp (Score:5, Interesting)

          by pomo monster (873962) on Friday September 09 2005, @12:53AM (#13516432)

          So what, if the vast majority of websites don't bother styling them? Form controls can default to Aqua without compromising the spec. In other words, there's no need for controls to be ugly if ugliness isn't specified in the HTML, and even then, you can handle it the elegant and tasteful way:

          Some controls are going to naturally discard the Aqua look if you "fall off the cliff" by customizing the control to the point where the Aqua look can no longer be maintained, e.g., if you set the border and background of a button. Others, like checkbox, are going to refuse to "fall off the cliff" unless you explicitly turn off the -khtml-appearance property. The choice of when to disable the Aqua look is going to be chosen to match other browsers (and Internet Explorer in particular).

          Naturally, that's how WebKit behaves [opendarwin.org]. Ugliness has no place on the Mac desktop, even on the web.

  • Woohoo! (Score:5, Interesting)

    by Tidal Flame (658452) on Thursday September 08 2005, @11:33PM (#13515981) Homepage
    If they've really made it more stable and fixed the apparent memory leak, I'll be really happy. Firefox is great as it is, but it seems that if you leave it open for too long it starts to take up insane amounts of memory.
    • Re:Woohoo! (Score:5, Interesting)

      by LnxAddct (679316) <sgk25@drexel.edu> on Friday September 09 2005, @12:05AM (#13516176) Homepage
      I was actually giving this some thought the other day and perhaps firefox should use one of the C++ garbage collecting libraries. A webbrowser really just needs to be usable and low on memory, no crtical speed requirements as long as the UI is responsive, websites render quickly, and javascript interprets at decent speeds (none of which a garbage collector would slow down). Firefox developers could still focus on keeping the memory footprint down, but applying a garbage collector is a good solution because its unlikely they'll ever remove every memory leak. This would remove most of them, help detect others, and keep the remaining problems minimal.
      Regards,
      Steve
      • Re:Woohoo! (Score:5, Insightful)

        by The Clockwork Troll (655321) on Friday September 09 2005, @12:33AM (#13516318)
        Unfortunately garbage collection is not a cure-all for memory leaks; the programmer(s) still must take care to ensure that references to memory-consuming objects are removed when no longer needed. This can be a nontrivial task e.g. in a complex application where state is shared among multiple threads and certain corner case situations blur who is responsible for reference clean-up.

        Bugs is bugs!
    • Re:Woohoo! (Score:5, Informative)

      by Rirath.com (807148) on Friday September 09 2005, @12:20AM (#13516251)
      I've been using the nightly branch builds for some time now, and no... I've seen no apparent fix for the memory leak. I mean, maybe a few holes have been plugged... but it still takes more memory than one would expect. On the other hand, I don't remember them claiming it fixed.

      The best feature for me is the new automatic nightly version system using Firefox's update system. No more manually downloading, unraring, and changing folder names... just a few clicks and I'm done. A very big plus, for nightly users.

      And since 1.5a may break a whole lot of extensions, I recommend Nightly Tester Tools [blueprintit.co.uk], which can force an extention to work. You may also try going into about:config (type that in the URL bar) and manually making the entery:

      app.extensions.version

      Then setting this to a value of 1.0+. Can cause other problems though, so I'd go with Nightly Tester Tools first. Lastly, you could simply open the extension with an unzip util and modify the install.rdf, perhaps the most time consuming but failsafe method.
    • by coolsva (786215) on Friday September 09 2005, @06:18AM (#13517524)
      Right on the mark. I have been using FF since version 0.6 or so and spreading the word to all people I meet. At that time and all the way till version 1.0, I accepted most bugs/performance issues as beta related. But at version 1.06 if I still have random performance problems, memory hogging. Also, IMHO, I see a lot of arrogance among the developers/supporters. Personally, I want a browser that works well, is fast and supports all sites. IE also does satisfy all my needs but is full of exploits. I recently downloaded Opera to try this past month and there is no looking back. Sure, some features like adblock, flashblock, 'images from originating server' and most importantly extensions/plugins are missing, but guess what, I can live with that. All these latest greatest features we keep talking about are not really revolutionary, they have been implemented in other browsers (including opera)

      Well, there goes my karma, I WILL be modded as troll for this, but had to get it out

  • Classic windows (Score:4, Informative)

    by Bob54321 (911744) on Thursday September 08 2005, @11:34PM (#13515982)
    For those here that run Windows in the Classic theme, here a link to info on how to fix the menu looks http://kb.mozillazine.org/Firefox_windows_classic [mozillazine.org]
  • by Blahbooboo3 (874492) on Thursday September 08 2005, @11:34PM (#13515987)
    Warning, seems like most extensions won't work from 1.0x to 1.5beta1..
  • by beeswax (65749) on Thursday September 08 2005, @11:34PM (#13515989)
    My employer forces us to use firefox at my job... The database front-end they had designed uses flash. Firefox segfaults quite often and the copy/paste buffer is always farked up. I really hope these issues have been taken care of :(

    If it were my choice at work, I'd use Opera.
  • Extensions (Score:5, Insightful)

    by 2MuchC0ffeeMan (201987) on Thursday September 08 2005, @11:42PM (#13516034) Homepage
    So far the only extension that works is the gmail notifier. Not even the all-in-one mouse gestures works... I'm patient, but will all of the developers make and re-make their extensions for every version?

    I smell a need for backward compatibility
    • Re:Extensions (Score:5, Informative)

      by asa (33102) <asa@mozilla.com> on Thursday September 08 2005, @11:48PM (#13516077) Homepage
      "I'm patient, but will all of the developers make and re-make their extensions for every version?"

      No. Developers will only have to test their extensions to make sure they're not broken by the latest Firefox release. All they have to do if their extension still works is tweak a version field at addons.mozilla.org (or wherever their extension checks for updates) and Firefox will allow the extension to run.

      We're still at beta and that gives developers quite a bit of time to get their extensions certified against the upcoming Firefox 1.5 release.

      If the extension author was relying on Firefox application code that changed, and broke the extension, then the extension will have to be updated.

      I'm hopeful that most of the popular extensions will have certified against 1.5 or made updates available by the time 1.5 final ships.

      - A
  • by mdew (651926) on Thursday September 08 2005, @11:43PM (#13516043) Homepage
    When installing Firefox 1.5

    (1) Backup your old Firefox 1.0 profile
    (2) Start with a clean profile, its best to use a clean profile
    (3) Update your extensions [projects1.com]
    (4) If the extensions still complain, try this following the directions from this link [mozillazine.org]
  • by darxpryte (108284) on Thursday September 08 2005, @11:45PM (#13516057) Homepage
    I was hoping that they'd replace the big goofy icon buttons on OS X and Linux that just don't go with anything. Maybe next version. The upside is the preferences layout is simpler, and browsing is a little snappier.

    I'm also hoping that my memory leakage problems on linux are solved. We'll see! Now back to searching for the safarifox theme to see if it'll work...
  • by radarsat1 (786772) on Thursday September 08 2005, @11:48PM (#13516076) Homepage
    Very cool that they have a new release out, I'll be downloading it soon.
    But I'm a little dissapointed it looks like the built-in SVG support isn't in there. Guess it's still alpha? (Haven't been following the Deer Park releases)
    I'm really looking forward to the day where I can actually do a site in SVG and be able to expect more than 2 or 3 people to be able to see it...
    And wow am I ever tired of struggling with the Flash IDE.
  • by Basehart (633304) on Friday September 09 2005, @12:32AM (#13516311)
    Right now Steve Balmer is running around naked, drooling at the mouth and ripping up pictures of Bambi, convinced that they named the beta Deer Park because of him somehow.
  • Funny... (Score:5, Funny)

    by VinodTandon (530909) on Friday September 09 2005, @12:32AM (#13516316) Homepage
    For the hell of it I clicked on view source on the provided link [mozilla.org]...

    This was a comment in the code:

              Note to Editors of this Document!

              I have meticulously repaired the indentation here. DO NOT OPEN THIS
              DOCUMENT IN A WYSIWYG EDITOR OR (in the words of Robert DeNiro) I
              WILL BRING YOU DOWN! I WILL BRING YOU DOWN TO CHINATOWN!

                -Ben

    nice.
    -Vinod
  • by cahiha (873942) on Friday September 09 2005, @12:42AM (#13516367)
    including a new automatic update system

    I am sick and tired of every application including its own update system. They all have different user interfaces, they don't handle dependencies correctly (e.g., Firefox may upgrade its own extensions, but not the download manager that they depend on), and they make random connections all over the Internet.

    When will Windows and Macintosh get decent package and dependency management so that developers don't have to put this functionality into applications anymore, and that we don't have to put up with the security risks of many different update systems anymore?
  • GCC 4.01 (Score:4, Interesting)

    by (1+-sqrt(5))*(2**-1) (868173) <1.61803phi@gmail.com> on Friday September 09 2005, @12:50AM (#13516419) Homepage
    Beautiful: Firefox' source finally builds with GCC4 out of the box; no mucking around necessary!
  • inline-block? (Score:5, Interesting)

    by Yjerkle (610052) on Friday September 09 2005, @12:54AM (#13516434)
    They've jumped up half a version and still no display:inline-block? Shouldn't they finish CSS 2.1 before they start on CSS 3? Every other major browser out there supports it, so it can't be that hard. Even IE, with it's dismal standards support, has inline-block.
  • by SnprBoB86 (576143) on Friday September 09 2005, @01:41AM (#13516599) Homepage
    I understand that IE isn't standards compliant, but it is dominant. As such, many people will be viewing the FireFox web site in IE. But IE doesn't render many of the FireFox site's pages correctly! Rounded corners don't work on every page and some pages (such as the "Mozilla FireFox 1.5 Beta 1 Release Notes" page) have much larger issues. However, IE renders the content at full width and FireFox leaves a substantial margin on either side (I have a wide screen display, I want to make use of it!).

    Blame Microsoft all you want, but this is inexcusable. If you want people to switch to FireFox, they need to believe FireFox is better. Seeing as most web sites are built for IE, users coming to FireFox's web site see a page that doesn't render correctly and they assume the makers of the page are to blame. Why would they blame IE? Every other page they go to renders just fine in IE.

    Since the same organization that made the page makes the software, it is conceivable that people would be turned away from FireFox on the assumption that people who produce broken web pages also produce broken programs.

    Whether the FireFox web site doesn't properly support IE out of laziness, or out of malice. It should be fixed.
  • by Anonymous Coward on Friday September 09 2005, @02:07AM (#13516683)
    No, this still doesn't fix bug #154892: "Splitting Absolutely positioned frames not implemented - Missing second page of content when printing or print previewing this site"

    This bug prevents many web sites from printing in any useful respect from Mozilla browsers.

    Its existence keeps me from rolling out Firefox as the default. It probably keeps any organization that frequently prints web pages from considering Firefox.

    But what really irks me is that this bug has existed since 2002!. The bug has been duplicated in dozens and dozens of bug reports. It has at least 70 votes in Bugzilla. Yet no one has fixed it, and there is NO INDICATION that it will be fixed in the foreseeable future, yet it directly affects the user's browsing experience.

    The history and severity of this bug does not reflect well on the Mozilla browser or its open source development model. NOTE: I am actually, personally, quite impressed with the Mozilla project, but someone who wants an excuse to banish free software might start with something like this.

    Finally, as a Firefox user, a personal plea: Somebody, please fix this! Please?

    For more information:
    https://bugzilla.mozilla.org/show_bug.cgi?id=15489 2 [mozilla.org]
      • by shellbeach (610559) on Friday September 09 2005, @12:00AM (#13516144)
        I do not know if this is a problem with firefox, SpellBound, or a combination of the two, but it's pretty damn annoying after a while.

        It's a mozilla dictionaries problem, I think - the dictionaries (which spellbound doesn't provide itself) install into the Firefox application folder, rather than into your profile folder - so when you overwrite that folder, you've just nuked your dictionaries.

        If this annoys you, you could always ask the spellbound devs to provide dictionaries that install into your profile ... It amuses me the way people are far happier to post complaints on /., where they achieve nothing, instead of sending the same complaint direct to the developer, where they might fix the problem!
    • Users need it (Score:5, Insightful)

      by nukem996 (624036) on Friday September 09 2005, @12:07AM (#13516183)
      I have switched many people to Firefox and have found that people I switched months and months ago will never update. They never look at the little red arrow on the top right. They stick with the same version they have unpatched. Other applications use auto update because users dont update programs, its a problem but if Firefox is to be known as the most secure, fastest, bug free browser on the internet then they have to make sure everyone updates.
      • Re:Users need it (Score:4, Insightful)

        by ahaning (108463) on Friday September 09 2005, @12:14AM (#13516222) Homepage Journal
        The biggest problem I can see with the old way that Firefox was updated was that you'd have to completely reinstall. So you were hardly updating.

        You'd also have to stop and restart the browser, thus losing whatever page you were on when you decided to update. Here's hoping that the final versions will restore your browsing session after updating (similar to recent versions of Adobe Acrobat Reader). (Yes, I know about and use sessionsaver.)
      • Re:Users need it (Score:5, Informative)

        by Jugalator (259273) on Friday September 09 2005, @02:07AM (#13516678) Journal
        This, however, is solved in Firefox 1.5.

        Now, when Firefox notice there's an update available, the user gets a dialog telling there's an update, asking "do you wish to close Firefox and install it now? (otherwise it'll install next time you start Firefox)"
    • Re:Auto update! (Score:4, Interesting)

      by Kichigai Mentat (588759) <ivan,kowalenko&gmail,com> on Friday September 09 2005, @01:19AM (#13516523) Homepage Journal
      Awesome - because we all know how well auto-updating stuff goes. Take Windows, for example! :P

      Well, as one who manages the family computer, which runs WinXP, AutoUpdate is actually pretty useful. I haven't had to install an update manually for quite some time.

      Seriously though, I can't wait until we get an OSX port that doesn't suck (Camino is okay, but what good is it if you can't use all the cool firefox extensions?).

      Well, as a Mac OS X user, I feel your pain. But, I'm wondering which parts suck for you? I have issues with page rendering. Look at these rendering jobs from the LiveJournal [livejournal.com] home page (be kind! this is hosted on my personal server box):

      • FireFox 1.0 [dyndns.org] (Sorry, but the "About" Dialogue blocks the effected text, so you'll have to trust me)
      • FireFox 1.5 Deer Park Beta 1 [dyndns.org] the distributed Mac OS X binary, not compiled from soruce
      • Camino 0.92 [dyndns.org] just for comparson
      • Opera 8.02 [dyndns.org] for Mac OS X
      • Safari 2 [dyndns.org] (And if you don't trust me, think about how many web browsers have a brushed metal GUI like that)
      This occurs on several pages, but the only one I could produce on-demand was the LiveJournal page. Note that this is the LiveJournal home page, not user pages, and contains relatively simple and stable code. Note that Safari and Opera read the pages perfectly fine, but all the Mozilla-based browsers (all versions), even Camino, can't render the page properly. And these problems are not always so minor. On occasion, text can continue right outside of the view (and scroll) of the window. Text boxes will end up with text no longer inline with the cursor, making editing and correcting typos virtually impossible.

      Any one else have this problem? I know it's not too isolated since I've had this happen on both installations of OS X 10.4 and even 10.3. Or are there other problems that I don't know about?

    • Re:my big hope (Score:5, Insightful)

      by adrianmonk (890071) on Friday September 09 2005, @12:32AM (#13516313)
      Does it have a multithreaded interface yet? This is by far my biggest gripe with Firefox.

      I agree 100%. There are often pages that I visit which take a while to load. I load them in the background in tabs, but the whole browser grinds nearly to a halt while they load. In fact, if a flash animation takes up lots of CPU in one tab, then all the other tabs, and every other part of the user interface sometimes locks up for a minute at a time. This is just sad.

      My second big gripe is just general bugginess. Yes, it takes time to iron out bugs, but Firefox has had some time. Right now, we're on 1.0.6, and honestly I'd rather see them just spend 100% of their effort on a 1.0.7 that is as close to bug free as humanly possible rather than adding more features. I'm sure the features they're adding right now are worthwile overall, but I'd much rather stay with the feature set I have now and see all the bugs disappear. The worst one is something that seems to relate to perhaps an event queue. Every now and then, something will happen that seems to cause Firefox to just stop processing events. I can press buttons and hit Command-W (I'm on a Mac), and nothing will happen. But if I hold down the mouse button inside a window, somehow this rejuvenates the event queue and these events get processed eventually. Totally, totally weird.

      The worst part is that it seems that flash animations use the same thread as the user interface. So if you have a flash animation that takes a LOT of CPU, which lots of them do, then the user interface becomes unresponsive. This is just silly. You're taking untrusted code (flash from whatever web site) and letting it take CPU time away from critical stuff like being able to close the window that contains the CPU-hogging flash code!