Skip to content

Commit

Permalink
Merge branch 'release' of github.com:aptana/studio3 into release
Browse files Browse the repository at this point in the history
  • Loading branch information
Shalom Gibly committed Apr 27, 2012
2 parents ee49a7c + 790880b commit 905716b
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 6 deletions.
16 changes: 11 additions & 5 deletions plugins/com.aptana.core/src/com/aptana/core/logging/IdeLog.java
Expand Up @@ -610,11 +610,17 @@ public static String buildMessage(Plugin plugin, int severity, String message, S
scope = StringUtil.EMPTY;
}

String tempMessage = StringUtil.format(
"(Build {0}) {1} {2} {3}", new String[] { EclipseUtil.getPluginVersion(plugin), //$NON-NLS-1$
getLabel(severity), scope, message });

return tempMessage;
String version;
if (EclipseUtil.isStandalone())
{
version = EclipseUtil.getProductVersion();
}
else
{
version = EclipseUtil.getStudioVersion();
}
return StringUtil.format("(Build {0}) {1} {2} {3}", //$NON-NLS-1$
new String[] { version, getLabel(severity), scope, message });
}

/**
Expand Down
Expand Up @@ -4,7 +4,7 @@ Require-Bundle: org.eclipse.ui,
org.eclipse.core.expressions
Bundle-Vendor: %Bundle-Vendor
Bundle-ActivationPolicy: lazy
Bundle-Version: 1.0.4.201108061054
Bundle-Version: 1.0.4.qualifier
Eclipse-PlatformFilter: (&(osgi.os=macosx)(osgi.ws=cocoa))
Bundle-Name: %Bundle-Name
Bundle-Activator: com.aptana.eclipse.fullscreen.ui.Activator
Expand Down

0 comments on commit 905716b

Please sign in to comment.