[分享]Eclipse 3.3M2 发布了!

[分享]Eclipse 3.3M2 发布了!
是Eclipse 3.3版本的第二个发布版本. 下面是它的 New and Noteworthy:

--------------------------------------------------------------------------------

SWT
--------------------------------------------------------------------------------
 
Faster JPEG/PNG image loading JPEG images now load from 30 to 70 percent faster, and PNG images load 2 to 3 times faster, depending on the image. 

--------------------------------------------------------------------------------
 
SWT graphics showcase Try out the new SWT Graphics Example, which showcases some of SWT's graphics capabilities. This example is included with the other example plug-ins (see the "Example Plug-ins" section of the 3.3M2 download page).

 

--------------------------------------------------------------------------------
 
Color cursors on Mac OS X You can now create color cursors on Mac OS X.


This example snippet created the cursor pictured above.
 

--------------------------------------------------------------------------------

Platform UI
--------------------------------------------------------------------------------
 
Working set usability improvements You can now add and remove selected elements from working sets in your workspace. This functionality is exposed in the Edit menu as well as in the toolbar along side the existing Window Working Set toolbar item.
Additionally, when using the Working Sets toolbar or menu item you can now make your selection exclusive rather than additive by holding down the Ctrl key (Cmd key on Mac OS X).


 

--------------------------------------------------------------------------------
 
Resource search dialog added The new ResourceSearchDialog class now has many of the features of the Open Type dialog. Features of the dialog include:
Multi-selection
Uses JFace viewers, label providers, and content providers
History of already selected elements
 
 

--------------------------------------------------------------------------------
 
Hiding the window toolbar  It is now possible to hide the window toolbar on Windows and Linux as well as OS X. You can do this by clicking Hide Toolbar in the Window menu.

 

--------------------------------------------------------------------------------
 
Working sets for the Project Explorer The Project Explorer now provides a working sets extension to display groupings of elements from the viewer.
 

The working sets can be displayed as top-level groupings or aggregated into a flat list. The window working sets can also be selected and grouped or aggregated based on a user setting.

 

 

--------------------------------------------------------------------------------
 
Java drag-and-drop for Project Explorer Java elements dragged and dropped in the Project Explorer now trigger Java refactoring events.

 

--------------------------------------------------------------------------------
 
Undo support for task and bookmark operations Undo is now available for many task and bookmark operations. When you create, update, add, or delete a task or bookmark, you now have the ability to undo that change. Use the Edit menu from the Navigator, Package Explorer, Tasks, or Bookmarks views to undo the operation.

 

--------------------------------------------------------------------------------
 
New Eclipse 3.3 presentation Starting with 3.3 M2, you will notice that there is a new presentation option "3.3 Presentation (experimental)" on the Window > Appearance preference page. This presentation will provide access to new workbench functionality in a non-intrusive manner.
The first changes to appear in the new presentation are:

New image-based animation feedback
New Minimize/Maximize behavior
The new 'Minimize' behavior is to move the view stack to the trim area that shows a 'restore' button along with the icons for the views in the stack. When in the trim, clicking on a view icon will show the view as a fast view; if you need more permanent access to the view (i.e. for Drag operations) you can always restore the stack.

The new 'Maximize' behavior can be paraphrased as "Maximize me == Minimize everybody else except me". This has several functional advantages over the existing maximize:

It allows access to all the views even when maximized.
It maximizes the editor 'area', not a specific editor (very useful for compare scenarios).


Caveat: This presentation is considered experimental. There are a number of known issues (mostly involving the display of the 'maximize/restore' button in the workbench) at this stage. We are still gathering feedback from the community as to the functionality's final form. Bug 153957 will be kept up-to-date with all the latest info and known issues.
 

--------------------------------------------------------------------------------

User Assistance
--------------------------------------------------------------------------------
 
Remote help content Packaging a comprehensive set of help documentation with a product can often significantly increase its download size. To alleviate this, Help now allows you to host your documentation remotely on an infocenter, and will display the remote contents alongside any locally installed content you may have, giving you significant savings on initial download size.
 
 

--------------------------------------------------------------------------------

Platform Text
--------------------------------------------------------------------------------
 
More live annotate options  The live annotate feature displaying revision information in text editor rulers can now be configured in a number of ways: you can select from three different coloring schemes and choose whether author and revision information should be displayed as text in addition to the coloring. The following screen shot shows the revision numbers, background colored by author, and additional information in the hover:
 

Below we see the author names, with background colored by date. The options are configurable via the ruler context menu (Ctrl+F10):

 
 

--------------------------------------------------------------------------------
 
Sticky revision in live annotate ruler  Changes belonging to the same revision can now be made sticky by clicking on a revision in the live annotate ruler. A second click removes the stickiness again. 

--------------------------------------------------------------------------------
 
Recenter command  A new command has been added that allows recentering the line that contains the caret. By default, this command is only bound to a key binding (Ctrl+L) when using the Emacs scheme. To bind it in the Default scheme, simply assign a key sequence to the Recenter command which can be found in the Text Editing category. 

--------------------------------------------------------------------------------
 
Warning if editing a derived file  The editor now warns when starting to type into a derived file:


This behavior can be configured via General > Editors > Text Editors > Warn before editing a derived file preference.
 

--------------------------------------------------------------------------------

Compare
--------------------------------------------------------------------------------
 
Apply Patch offers full context patch preview The Apply Patch wizard now allows you to preview the patch changes against the contents of the local workspace.

 

--------------------------------------------------------------------------------
 
Local History commands now use History View The Compare With/Local History and Replace With/Local History operations now show the local history of a file in the History View. This makes the operations non-modal thus making it easier to compare and restore changes from the local history. 

--------------------------------------------------------------------------------
 
Compare editors now use editor file buffers When a local file is involved in a comparison, the Compare Editor makes use of the file buffer support in Eclipse to ensure that the contents in the Compare Editor are kept in sync with the contents of any other editor opened on the file being compared. 

--------------------------------------------------------------------------------

Team/CVS
--------------------------------------------------------------------------------
 
Spell check in Commit dialog The Commit dialog now uses the Eclipse spell checker to highlight spelling errors in commit messages.

 

--------------------------------------------------------------------------------

JDT Core
--------------------------------------------------------------------------------
 
Improved handling of duplicate local variables JDT now does a better job of handling invalid code with duplicate local variables; in particular it will minimize secondary errors, and allow the Java tools to perform in offending code, so as to fix it.
Method invocation or field access through a duplicate variable now refers to nearest definition of the local variable, thus reducing the number of secondary errors reported.


Compilation now pushes deeper in the presence of duplicate local variables, allowing more errors or diagnostics to be detected.
For instance, it will now report conflicts in catch blocks even though one of the catch block parameter is a duplicate.


Local rename (Ctrl+2,R) can now operate even in faulty nested loops, allowing you to quickly fix the name of the duplicate variable in all the places it appears.

 

--------------------------------------------------------------------------------
 
Package/enclosing type pattern search  Patterns with '*' or '?' characters may be specified for packages/enclosing types in the Open Type dialog.

 

--------------------------------------------------------------------------------
 
Improved readable name of wildcard captures Wildcard captures now contain identifiers to better address ambiguities in error messages.

 

--------------------------------------------------------------------------------
 
Improved completion on empty statement Code completion (Ctrl+Space) in the empty statement now include the local types of the current compilation unit in the list of proposals.

 

--------------------------------------------------------------------------------
 
Improved completion in annotations Code completion (Ctrl+Space) after an at sign "@" proposes all visible annotation types.


Completing in an annotation member propose all possible attributes which are not already specified.


 

--------------------------------------------------------------------------------

JDT UI
--------------------------------------------------------------------------------
 
Rename refactoring in editor  The Java Rename refactoring (Alt+Shift+R) can now be performed directly in the editor, without showing a dialog.
 

A linked editing environment is started, similar to the Rename in File Quick Fix. To execute the refactoring in the whole workspace, press Enter or click the Refactor Rename link. To see and configure refactoring options, press Alt+Shift+R again, or click the Open Dialog link.

This feature can be enabled in Preferences > Java > Refactoring Java code > Show Rename refactoring in editor.
 

--------------------------------------------------------------------------------
 
Clean Up preference page A preference page has replaced the Source > Clean Up wizard. Clean Up profiles can be defined on this preference page. A profile can be attached to the workspace or to individual projects. Project settings can be shared in a team through a version control system. It is also possible to export and import each profile.
 
 

--------------------------------------------------------------------------------
 
Formatting during Clean Up It is now possible to format source code and comments during clean up. Formatting during clean up can be enabled in the Clean Up profiles dialog on the Code Formatting tab. The formatting settings can be configured on the Formatter preference page.

 
 

--------------------------------------------------------------------------------

JDT Text
--------------------------------------------------------------------------------
 
No more "I don't see the full source" questions on the newsgroup  The command group that contains the Show Source of Selected Element Only tool bar button  is now hidden by default. It can be toggled using the Java > Editor > Only show the selected Java element preference.

--------------------------------------------------------------------------------
 
Class file editor shows disassembled code  The Java class file editor now shows the disassembled bytecodes when source code is not available.
 
 

--------------------------------------------------------------------------------

Ant
--------------------------------------------------------------------------------
 
Improved support for <input> task The valid input arguments (specified via the validargs attribute of the input task) are now presented in a combo box for easy selection in the default SWT-based input handler.

--------------------------------------------------------------------------------

PDE
--------------------------------------------------------------------------------
 
Cheat sheet editor  Cheat sheets guide users through a series of steps to achieve an overall task. PDE now provides a cheat sheet editor to let you compose cheat sheets, complete with embedded workbench commands and links to the Help documentation.

The editor also provides a Preview function that allows you to preview your work on the fly directly in the Cheat Sheets view.

You can create a cheat sheet via File > New > Other> User Assistance > Cheat Sheets.


 

--------------------------------------------------------------------------------
 
Command composer  Cheat sheets support the embedding of workbench commands allowing you to execute commands such as opening a particular perspective or a wizard in a script-like fashion. The Command Composer dialog shows you a categorized list of available commands and their parameters, making it easy to compose, test, serialize, and embed commands into your cheat sheet. Command Composer can be invoked from the Command section of the cheat sheet editor.


 

--------------------------------------------------------------------------------
 
Hover support in plug-in manifest editors  The source pages in the plug-in manifest editors now provide a number of useful hovers. Hovering over an attribute in the plugin.xml shows the schema description for that attribute, while hovering over a manifest header shows the Javadoc for that header.


The hover support has also improved on the Extensions page of the plug-in manifest editor. Hovering over a translated attribute now shows the actual substituted value for that attribute.


 

--------------------------------------------------------------------------------
 
Launching OSGi frameworks  PDE now provides the org.eclipse.pde.ui.osgiFrameworks extension point to enable the integration of additional OSGi frameworks into the PDE bundle tooling.

If more than one OSGi framework is installed, the default can be set on the Plug-in Development > OSGi Frameworks preference page.


Testing against different OSGi frameworks is as easy as selecting that framework in the OSGi Framework launch configuration.


Note that PDE only provides the Equinox OSGi framework extension.
 

--------------------------------------------------------------------------------
 
OSGi Services Templates  The New Plug-in Project wizard, available under File > New > Project > Plug-in Development > Plug-in Project, provides new templates demonstrating the usage and implementation of programmatic OSGi services.


The templates are available when the option to target an OSGi framework is selected on the first page of the wizard.


 

--------------------------------------------------------------------------------

Eclipse RelEng Tools
--------------------------------------------------------------------------------
 
Build note generation for releng tools It's now possible to optionally generate build notes when using the org.eclipse.releng.tools plug-in.
Once at the Notes for Build Changes page, a list of all changed bugs will be displayed in the text box. The commit comment can be of any format, as long as the comment contains the string "bug XXXX", where XXXX is any bug number that exists in Eclipse Bugzilla. For example: "Bug 123456 - fixed bug" would be a valid comment for the report.

The generated list can also be saved to a build notes HTML file if the Update Build Notes File checkbox is checked. The selected build notes file will be updated with the new report, committed and released along with the rest of the build.


 
详细情况见:http://download.eclipse.org/eclipse/downloads/drops/S-3.3M2-200609220010/eclipse-news-M2.html

 

posted on 2006-09-30 08:18 XiaoLi 阅读(580) 评论(0)  编辑  收藏 所属分类: Eclipse


只有注册用户登录后才能发表评论。


网站导航:
 

公告


文章发布许可

本站作品均采用知识共享署名-非
商业性使用-禁止演绎 2.5 中国大
陆许可协议
进行许可。

Books I've Translated

《精通Nginx(第二版)》

精通Nginx(第二版)
《云计算:原理与范式》

 云计算:原理与范式

《SQL技术手册(第三版)》
SQL技术手册(第三版)
《MySQL核心技术手册(第二版)》
MySQL核心技术手册(第2版)
《RESTful Web Services中文版》
RESTful Web Services中文版

导航

留言簿(2)

随笔分类

搜索

最新评论