Monday, July 02, 2007

NetBeans 6 Milestone 10 is out

My random check of the NetBeans site shows that NetBeans 6 M10 is out.

Release Notes New and Noteworthy in Milestone 10 Download

I'm looking forward to tasting the new bits. What a great way to start a new week. ;-)

1 comment:

  1. It is certainly a step in the right direction. The editor appears to be faster, however I've experienced several issues with the formatting.

    For example,
    if(isHappy)
    smile();
    becomes
    if(isHappy){
    smile();
    }

    !annoying! Also:
    if(isHappy){
    smile();
    }
    else{
    cry();
    }
    becomes
    if(isHappy){
    smile();
    }else{
    cry();
    }

    Not terribly troublesome, only they tend to break our coding conventions!

    JavaScript editing is a nightmare, the editor appears to randomly jump about the page, which is really annoying as I end up typing code in all sorts of places then needing to go back and figure out whats just happened.

    It is still after all only a preview version, the more we play with these types of apps, the sooner we can solve the majority of the bugs/issues!

    regards
    sabeau

    ReplyDelete