*/
private void setNodeBoxVersion() throws RuntimeException {
Properties properties = new Properties();
try {
properties.load(new FileInputStream("version.properties"));
version = new Version(properties.getProperty("nodebox.version"));
} catch (IOException e) {
throw new RuntimeException("Could not read NodeBox version file. Please re-install NodeBox.", e);
}
}