Migrating old projects

To 0.5 from 0.4


To 0.4 from 0.3

If you open an old 0.3 project file you will probably get a warning:
unknown formatBuffer tag
Ignore it.

If you used parameters, you must manually migrate your project files. Open it with a text editor and change as in the following example.
- Replace parameters with parameter.
- Use a define tag for the first occurence of each variable set.
- Rename the value attribute to value1.
- Delete the type attribute from all remaining set tags.

old:
<parameters>
<set name="color" type="CONSTANT" value="blue"/>
</parameters>
...
<parameters>
<set name="color" type="CONSTANT" value="green"/>
</parameters>

new:
<parameter>
<define name="color" type="CONSTANT" value1="blue"/>
</parameter>
...
<parameter>
<set name="color" value="green"/>
</parameter>


To 0.3 from 0.2

no changes.


To 0.2 from 0.1

Because the file format has been refactored, 0.2 can not open files of version 0.1. But you can manually convert them by opening the project file with a text editor and replace the following tags:
search for    replace with
<project><webproject>
</project></webproject>
<page><htmldoc>
</page></htmldoc>
<element><htmltag>
</element></htmltag>