The release date for the version of Inquisit running the script.
<inquisit>
inquisit.name.releaseDate
Read Only
string
The releaseDate property can be used in combination with the version property to track which version of Inquisit was used to collect a given set of data. The format of the time is mmddyy. For example, June 6th, 2011 would appear as "060611".
The following displays the value of releaseDate in a text stimulus:
<text myText>
/ items= ("releaseDate = <% inquisit.releaseDate %>")
</text>
The following saves the releaseDate (among other values) to a summary data file:
<summarydata>
/ columns=(script.subjectId, script.startDate, script.startTime, inquisit.version, inquisit.releaseDate, expressions.da, expressions.db, expressions.d)
/ file="iat_summary.iqdat"
</summarydata>