NewAndNoteworthyNB81
Java
Editor
- "Organize Members" now respects dependencies between fields and initializers to prevent compile errors/semantic changes. This includes a new setting in code generator options. Issue 249199
- Navigator now distinguishes methods, which implement methods from super-classes/interfaces Issue 250553
Maven
- Show documentation of goals in goal navigator Issue 244363
- Use pom content to determine what maven binaries to use and download if necessary Issue 247128
- Based on the <prerequisite> element or maven enforcer plugin configuration, NetBeans tries to guess the right version of maven binaries to use and downloads it from http://archive.apache.org
- Can be configured at Tools|Java|Maven|Experimental
Refactoring
- "Find Usages" provides a 'Show only Tests' filter Issue 248250
- "Find Usages" analyzes access to Collections via add/remove/set/put and Arrays too Issue 246630
Profiler
Redesigned profiler with easier setup and improved features:
- Simplified profiler setup
- One-click profiling without setting up anything
- Selecting methods/classes for detailed profiling using checkboxes in results
- Improved attaching to running processes, selected PID is remembered for subsequent sessions
- New features
- Monitoring CPU utilization
- Thread dumps from profiled application
- Displaying merged results of selected threads in CPU views
- Improved live profiling views
- Live forward and reverse call trees in CPU results
- Live allocation trees in Memory results
- Simplified tweaking settings during a profiling session
- Engine improvements
- Significantly faster connection to an already running process
- Limited outgoing calls from profiled methods
- Memory profiling for selected classes
- Polished profiler UI
- One profiler window with all actions, settings and results
- Separate Snapshots window to manage persisted profiling data
- Reimplemented profiler tables and treetables to deliver native looking appearance
- Improved profiler integration into the IDE
- Polished Profile menu
- Introduced Attach to Project action
- Added Profile Class/Method actions into Navigator
Debugger
- Support for DisableOnDebug-Rule (JUnit 4.12) Issue 161568
Instead of using @Test(timeout=xxx)
, which ends the debugging session after the timeout, use DisabledOnDebug
. For example:
@Rule public TestRule timeout = new DisableOnDebug(new Timeout(1000));
Java EE
Remote WebLogic
Support for development on remote WebLogic instances.
HTML/JS category in Options
All panels with options related to HTML5 and JavaScript technologies have been moved under a new top-level category HTML/JS in the Options window (Tools / Options, or NetBeans / Preferences... on OSX).
JavaScript Frameworks
KnockoutJS
Added support for Knockout 3.2.0.
- New bindings in code completion for data-bind
- component
- textInput
- Updated model for code completion
- Includes e.g., pureComputed observables
- Support for Knockout custom components
Code completion for Knockout custom components
Custom HTML elements registered in Knockout JavaScript file using ko.components.register function
Code completion for component binding
Code completion for custom component's parameters
Go to Declaration
Supports multiple source locations (e.g., component is registered in debug and minified JS files, both are present in the project)
AngularJS
Added support for Angular 1.2 and 1.3
Editor support and CC improvements
- "Controller As"
- One-time binding expressions
- Tracking expressions "track by" and Alias expressions "as" in ng-repeat
- ModelOptions directive
Jade Node Template Engine Support
This release brings new support of Jade Template Engine. NetBeans recognize files with .jade extension and new Jade template file can be created through New File wizard. The Jade template file is located in HTML5 / JavaScript category. The Jade support covers mainly the editor features.
Coloring
There are examples of coloring Jade Template files.
In Options dialog the colors can be altered.
The default colors reflects default colors of Html files. Also the colors of html parts comes from the Html editor.
The coloring of plain text comes from html editor support
and coloring of JavaScript parts comes from javascript editor support.
Code Folding
The logical parts of the template can be folded together.
Code Completion
The support provides code completion of html tags, offers css ids and css classes used in the project. Also javascript code completion works on the appropriate places.
Indentation
After ENTER, a beginning of the new line is always indented as the previous line. One exception is a new line after the first line of a comment. In such case, the new line indentation is an indentation of the previous line plus 1 to continue with the writing of a comment.
JavaScript Editor
Code Completion
If the code completion is called inside the string of parameter in method of document.getElementsById(), then it is able to offer all used values of ids attributes in the html and css files in the project.
Similarly the code completion offers CSS classes defined in css file inside the string of parameter in method document.getElementsByClassName().
JSDoc support improvements
@typedef
NetBeans now understand to the @typedef tag for defining custom types. In the example below is defined new type MyContext.Address. The type is mentioned in the parameter definition of createAddress method. As you can see NetBeans recognise the type and is marked and you can also rename the usage of such type. Also the '~' is supported.
When NetBeans know the type, it can be used in code completion.
Other Improvements
Marking optional parameter using Google Compiler Syntax.
Braces formatting
Braces placement options have been added to the Editor/Formatting/JavaScript category in Options. When the code is reformatted, braces in JavaScript sources are placed according to the these settings.
JSON Editor
Code Folding
The code folding of the JSON editor was improved. It's possible to fold arrays of objects.
Also there are new options for folding editor in the Options dialog.
Web Application Inspection
Shadow DOM Support
- Shadow DOM nodes are shown in Browser DOM view
- Elements of shadow DOM can be selected/inspected in Chrome browser
- Styling information for shadow DOM nodes is shown in CSS Styles view
DOM Breakpoints
DOM breakpoints are visualized in Browser DOM view (elements with a breakpoint are marked by a breakpoint badge).
JavaScript Debugging
Conditional Breakpoints
It is possible to specify condition on a JavaScript breakpoint. The breakpoint is hit when the condition evaluates to true.
Node.js Support
Support for Node.js has been added. This includes:
- Configuration of the Node.js executable
- New project wizard...
- ...possibly using Express generator
- Project problems detection
- Running JS files via Node.js
- Project specific configuration of Node.js
- Configuration of start file
- Node.js project can have Site Root (its own frontend part)
- In this case, browser can be opened on project run
- Synchronization of changes between project and its package.json (project name, start file)
- Libraries node in the Projects view
- Running any npm script
Node.js Editor
- Control - hover functionality
When you place the mouse cursor over an runtime module name in require method and press CTRL / Command, then the documentation for the module is displayed.
Gulp Support
Support for Gulp has been added, it works exactly the same way as the existing Grunt support. This includes:
- Configuration of the Gulp executable
- gulpfile is shown among Important Files
- Gulp tasks can be assigned to common IDE actions in the Project Properties dialog
- Any Gulp task can be run via project's context menu
- Gulp output can be reviewed in the Output window
Testing
Unit Testing
HTML5/Javascript Node.js Application
Mocha
Support for Mocha has been added. This includes:
- Configuration of the mocha executable and options
- Integration with Test Results window
Integration Testing - Support for Selenium 2.0
Support for Selenium 2.0 has been added. This includes:
Selenium Standalone Server
- Server registered under Services tab
- Configuration options
Maven Java Application, Web application, EJB Module, Enterprise Application Client
- Wizard to create selenium test file
- Integration with Tools -> Create/Update Tests menu action for Selenium
- Run all selenium project's tests
- Integration with Test Results window
PHP Application
- Configuration of the selenium tests folder location
- Wizard to create selenium test file
- Integration with Tools -> Create/Update Tests menu action for PHPUnit and Selenium
- Run all selenium project's tests
- Integration with Test Results window
HTML5/Javascript Node.js Application
- Configuration of the selenium tests folder location
- Run all selenium project's tests
- Run/debug specific selenium test
- Integration with Test Results window
- Wizards to create selenium related files
Mocha
- Configuration of testing provider options
Protractor
- Configuration of testing provider options
PHP
Phing Support
Support for Phing has been added, it works exactly the same way as the Grunt/Gulp support. This includes:
- Configuration of the Phing executable
- New build file can be created
- Phing targets can be assigned to common IDE actions in the Project Properties dialog
- Any Phing target can be run via project's context menu
- Phing output can be reviewed in the Output window
Projects
Simple Opening of Existing Projects
There is no need to import existing projects into NetBeans using the New Project wizard for the following areas:
- HTML5 - if the existing project contains package.json or bower.json files.
- PHP - if the existing project contains composer.json file.
Tools
- Added "Open in Terminal" action to Mainmenu|Tools and context menu of a file (Tools|Open in Terminal)
Versioning
Git
General
- Upgrade JGit to 3.5.3 Issue 249456
- Annotations sidebar can be configured (Show Revison, Date, Author)
- Adding repository-level versions of git actions Issue 247552
- New actions available "Add All - Repository","Revert All Modifications - Repository", "Commit All - Repository", "Resolve All Conflicts - Repository", "Diff All To HEAD - Repository", "Show Repository History"
Fetching/Pushing
- Show number of incoming/outgoing changes from/to upstream in the versioning label of the project Issue 225787
- to get this working make sure that Tools -> Options -> Team -> Versioning -> Git | Project Node Format contains "{tracking_status}" variable
- Offer sync of the current with tracked branch after Fetch Issue 248332
- Show git output when pushing Issue 233106
Commit dialog
- Commit dialog: Show information about current branch in title bar Issue 248280
- Commit dialog: added ruler and monospace font
Repository browser
- Allow opening any git repo to Git Repository Browser (by choosing "Open repository" in the context menu of the Repository Browser) Issue 247615
- Add rebasing to branch context menu in the repository browser. Allow synchronize of the current branch. If a merge is needed, user is asked to continue with either merge or rebase. Issue 248334
Diff
- Full diff off of all modified files (Both in Git -> Diff or the diff opened from the commit window, cancel the current selection in the file table (i.e. make no file selected) and click on the panel displaying: "Select a file or click to view the overall diff" -> after a click you'll get the textual diff for all files.) Issue 247366
- Full diff for selected files in diff window Issue 248254
- Full diff in commit window now ignores excluded files Issue 248711
Stash functionality
- "Shelve changes" is now primarily implemented with Git stashes Issue 249458
- "Shelve changes" action is added to the Git popup menu
- Stashes are now displayed in the repository browser view under the Stashes node. Stashes may be saved either from the repo browser when selecting Stash changes from the popup on the Stashes node or by invoking Stash Changes action from the Quick Search view. To apply a stash it's enough to dbl-click on its relevant node and to drop the stash simple Delete is available on the node.) Issue 224986
C/C++
New Project Wizard
Creating a project with existing sources had several lacks:
- Not obvious how to set build command for non-makefile project
- Configure project by build log and build result is tricky.
- Build result field confuses users.
- Wizard does not store configure script arguments in project meta data.
New Project Wizard solves the problems above and, as a result, makes pre-build and build steps more clear and understandable.
Pre-Build step can be customized later with the new property tab "Pre-Build" (Accessible from Project Properties -> Build -> Pre-Build).
A new C/C++ sample (HelloCMakeWorld) was added, CMake unmanaged project with the pre-build step.
SVN, Git and Mercurial support in Remote mode
Implemented support for SVN, Git and Mercurial Version Control Systems for remote projects.
Feature allows to use VCS in full remote mode the same way as in a local one. User can customize remote VCS preferences in Tools -> Options -> Team -> Remote Mercurial/Git/Subversion
and in Tools -> Options -> Fonts & Colors -> Remote Mercurial/Git/Subversion
Mixed Development support
Provides editor features like navigation from Java methods to C++ functions when JNI or JNA technologies are used. Makes debugging of mixed applications mostly seamless. Also helps with creation of JNI projects directly from Java classes. Features:
- Generating an auxiliary C++ JNI project from Java code that allows your Java and C++ code to interact
- Navigation in editor from Java (JNI or JNA)methods to C++ implementation
- Debugging both Java and C++ code at once (breakpoints can be placed and will be hit in java and c++ files without the need to adjust a debugger)
- Step Into action on a Javamethod will switch a debugger to the corresponding c++ function
Edit Properties of Multiple Files
Feature allows user to modify and apply properties for multiple files or folders in the context of the same project.
For example, user wants to change
- include directories
- preprocessor definitions
- whether to exclude the file from code assistance
- the kind of tool used to compile the file
It can be done now by calling Properties menu item on multiple files (or folders) and modifying properties which are mutual to the selected nodes.
Support Doxygen C++ comments
A number of projects uses a doxygen-style single line "///" comments for documentation. Type "///" in editor and press tab to generate a doxygen-style documentation template.
/// /// \param argc /// \param argv /// \return int main(int argc, char** argv) { return 0; }
Code Folding for compound blocks
Block folding were added to compound statement (if-else, do-while, while, etc).
For example,
if (1) { printf("1"); } else if (2) { printf("2"); } else { printf("3"); }
can be folded to
if (1) {...3 lines} else if (2) {...3 lines} else {...3 lines}
or
if (1) {...3 lines} else if (2) { printf("2"); } else {...3 lines}
Same for all other conditional statements, iteration statements, etc.
Pinnable terminal
"Pin Tab" action was added to the Terminal popup menu.
IDE will restore all pinned tabs with saved preferences (host, title, working dir) after restart or after reopening Terminal component.
After user pins the tab, a new dialog appears and user is suggested to specify terminal title and working directory.
Current title and current working directory are default values.
Navigating from compiler hint in editor to output log
This feature allows user to navigate from a line with a compiler error/warning in editor to the corresponding line in the build log.
Press Alt+Enter on the line with error and select "Show in Output" item. IDE will find an error line in the output window.
Configure Code Assistance action is added for full remote projects
Added Code Assistance support for full remote projects. Code Assistance wizard lets you specify how your code will be parsed by the built-in parser used for the code assistance features of the IDE.
SendTo Utility
The SendTo utility makes it easier to run any external script on selected files from within the IDE. You can use two types of scripts with SendTo:
- Scripts that act on selected files
- Scripts that act on selected text
The utility includes a small set of pre-defined scripts that you can modify to serve your particular needs. You can also add new scripts.
To execute a SendTo script that acts on selected files, do one of the following:
- Right-click on a file in the Projects window and choose Tools > Send To > script_name
- Right-click on an open file's tab in the Source Editor and choose Send To > script_name
If the selected script has a validation script, that script is executed first to determine whether the selected script can be applied to the selected files.
To execute a SendTo script that acts on selected text:
- Select the text in the Source Editor, right-click and choose Send To > script_name