-
Notifications
You must be signed in to change notification settings - Fork 19
Release Note
Jeeeyul Lee edited this page Feb 20, 2014
·
29 revisions
Now you can insert SWT Color or RGB code with GUI Color Picker.
It will automatically imports Color
or RGB
class also like below:
import org.eclipse.swt.widgets.Shell;
import org.eclipse.swt.graphics.Color;
import org.eclipse.swt.widgets.Display;
public class Main {
public static void main(String[] args) {
Shell shell = new Shell();
shell.setBackground(new Color(Display.getDefault(), 247, 159, 41));
}
}
You can use ${pde_tools_plugin_version}
to insert plugin project version in templates for Java Doc.
PDE-Tools ships @since
template for example and convinience.
- Now visibility of console debug messages is configurable in Debug Configuration.
- Now you can reveal current selected file with native explorer. Linux User may suffer some different experience with OSX or Windows. Since there is no command to reveal item on Shell.
- Now you can open Shell(Terminal, CMD) on selected resource.
You may want to disable some features in PDE-Tools, because you love alternative solutions likes OSX Launcher or Easy Shell. Now you can turn off feature in PDE-Tools in:
Preference >> General >> Capabilities >> PDE-Tools >> Advanced...
This feature may not work charm in Juno or higher version of eclipse since they have bug about capabilities.
- Larger than 16x16 images will be shown with correct width / height ratio in center.
- Now it supports workspaces whose file path contains utf-8 characters.
- Now you can launch new workspace rather than switch. (in File menu)
- Now Workspace Launcher supports custom products. (likes STS, Thanks! turesheim!)
- Thumbnail quality and performance are improved
- Expanding Bundle doesn't stop UI thread for while anymore.
- Icon size is showing in status bar.
- Some pre-defiend filters are provided. (view menu)
- UI is redesigned.
- Handler confliction in Juno SR1 was removed.
- Now user can customize number of line per each clipboard Item
- Customized sort order
- Last used item will be transferred into system clipboard.
- Performance improved.