Community
Participate
Working Groups
This usually happens during test pass where I have several eclipse instances open - each a different build. And it gets tough to identify which one is which as they have similar stuff open as am verifying the bugs before and after. I am requesting a way to display the build-is in the status bar. It can be turned on-off from a preference like we have for Heap Status. It will also help if the self-hosted instance show an extra icon or something to distinguish them from the host.
just FYI: You can use Preferences>General>Workspace to assign a name to each workspace that will be shown in the title bar. There's also a command "Copy Build Id" (CTRL+3 cbi) that will copy the build id of the current build. PW
We won't add this in workbench itself. You can write a plugin, use org.eclipse.ui.menus, and add a <control/> element to the status bar with an appropriate Label. See org.eclipse.ui.internal.ConfigurationInfo.getBuildId() for how to get the build id. PW