Testing Platform
V 1.2.1
This release improves the testing platform through implementing a large number of bug fixes. Mostly these should be imperceptible from the previous versions.
Backwards Compatability
All sessions made for earlier versions will work with this version, however a few XML changes have occured. The only significant change is in the structure of the <commentquestion>
nodes, which are now wrapped in a container:
V 1.2.0
<commentquestion id="preference" type="radio">
<statement>Please enter your overall preference</statement>
<option name="worst">Very Bad</option>
<option name="bad"></option>
<option name="OK">OK</option>
<option name="Good"></option>
<option name="Great">Great</option>
</commentquestion>
V 1.2.1
<commentquestions>
<commentradio id="preference">
<statement>Please enter your overall preference</statement>
<option name="worst">Very Bad</option>
<option name="bad"></option>
<option name="OK">OK</option>
<option name="Good"></option>
<option name="Great">Great</option>
</commentradio>
</commentquestions>