Skip to content

Commit

Permalink
Merge pull request #237 from openworm/development
Browse files Browse the repository at this point in the history
Release 0.2.0
  • Loading branch information
tarelli committed Jan 2, 2015
2 parents b8d6a58 + 33a4947 commit c678b25
Show file tree
Hide file tree
Showing 36 changed files with 2,235 additions and 970 deletions.
7 changes: 6 additions & 1 deletion .project
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,13 @@
</arguments>
</buildCommand>
<buildCommand>
<name>org.springframework.ide.eclipse.core.springbuilder</name>
<name>org.eclipse.ui.externaltools.ExternalToolBuilder</name>
<triggers>full,incremental,</triggers>
<arguments>
<dictionary>
<key>LaunchConfigHandle</key>
<value>&lt;project&gt;/.externalToolBuilders/org.springframework.ide.eclipse.core.springbuilder.launch</value>
</dictionary>
</arguments>
</buildCommand>
<buildCommand>
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "org.geppetto.frontend",
"version": "0.1.9",
"version": "0.2.0",
"devDependencies": {
"grunt": "~0.4.5",
"grunt-cli": "~0.1.13",
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<modelVersion>4.0.0</modelVersion>
<groupId>org.geppetto</groupId>
<artifactId>frontend</artifactId>
<version>0.1.9</version>
<version>0.2.0</version>
<name>Geppetto Frontend</name>
<packaging>war</packaging>
<properties>
Expand Down
2 changes: 1 addition & 1 deletion src/main/java/org/geppetto/frontend/Resources.java
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ public enum Resources {
" - you can join the ongoing simulation as an observer "),
SERVER_AVAILABLE("The current operator left the control of Geppetto." +
" Refresh your browser to attempt to assume control (first come, first served).");

private Resources(final String text) {
this.text = text;
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ public static GeppettoTransportMessage getTransportMessage(String requestID, OUT
params.add(new SimpleEntry<String, String>("message", Resources.SERVER_AVAILABLE.toString()));
break;
case SIMULATOR_FULL:
params.add(new SimpleEntry<String, String>("simulatorFull", (update!=null) ? update : EMPTY_STRING));
params.add(new SimpleEntry<String, String>("message", (update!=null) ? update : EMPTY_STRING));
break;
case SIMULATION_LOADED:
params.add(new SimpleEntry<String, String>(OUTBOUND_MESSAGE_TYPES.SIMULATION_LOADED.toString(), (update!=null) ? update : EMPTY_STRING));
Expand Down
Loading

0 comments on commit c678b25

Please sign in to comment.