Skip to content
Jeeeyul Lee edited this page Feb 20, 2014 · 29 revisions

v1.2.0

Java Semantics Supports

Color Picker Assistant

Now you can insert SWT Color or RGB code with GUI Color Picker.

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));
	}
}

${pde_tools_plugin_version} variable for Template

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.

Since

1.1

Misc

  • Now visibility of console debug messages is configurable in Debug Configuration.

Shell Integration (NEW)

  • 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.

Capabilities - Selective features of PDE-Tools (NEW)

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.

activity

Icon Preview

  • Larger than 16x16 images will be shown with correct width / height ratio in center.

Workspace Launcher

  • 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!)

workspace launcher

Bundle Images View

  • Thumbnail quality and performance are improved
  • Expanding Bundle doesn't stop UI thread for while anymore.

icon-size

  • Icon size is showing in status bar.

icon-size

  • Some pre-defiend filters are provided. (view menu)
  • UI is redesigned.

workspace launcher

Clipboard

  • Handler confliction in Juno SR1 was removed.

1.0.2

Clipboard

  • Now user can customize number of line per each clipboard Item
  • Customized sort order
  • Last used item will be transferred into system clipboard.

clipboard preference

Crazy outline

  • Performance improved.