Posts by author florent.chuffart
0.2.RC7 is out
A new release candidate before releasing the final 0.2 soon.
Main Improvements :
- Many IHM bug fix #122 #125 #135 #137
- New plan: Groovy plan to build your own plan
- Add jar to your groovy script
- New font for the groovy editor
RC7 needs xml application migration. It concerns <GroovyProcessor> nodes. <groovyCode> nodes and <localjars> nodes need to be encapsulated into a <groovyShellProxy> node.
for example:
GroovyProcessor node in RC6
...
<org.simexplorer.methods.processors.GroovyProcessor>
<metadata>
<name>GroovyProcessor</name>
</metadata>
<state>READY</state>
<localjars class="linked-list">
...
</localjars>
<jars class="linked-list"/>
<groovyCode>
...
</groovyCode>
</org.simexplorer.methods.processors.GroovyProcessor>
GroovyProcessor node in RC7:
...
<org.simexplorer.methods.processors.GroovyProcessor>
<metadata>
<name>GroovyProcessor</name>
</metadata>
<state>READY</state>
<groovyShellProxy>
<localjars class="linked-list">
...
</localjars>
<groovyCode>
...
</groovyCode>
</groovyShellProxy>
<jars class="linked-list"/>
</org.simexplorer.methods.processors.GroovyProcessor>

rss




