I'll look into this -- I'll get back to you soon.
I'm making a small utility to automate the build process for new releases. This involves following the new release workflow in wyUpdate and finally building the standard setup.
For the wyUpdate part i think the steps are:- add the new version (version number, changes text and files list)- rebuild wyUpdate (wyUpdate.exe and client.wyc)- rebuild the updates
So i'm doing something like this:wybuild.cmd.exe c:\dev\project\project.wyp /bwu -add="tmp.xml"wybuild.cmd.exe c:\dev\project\project.wyp /bu
tmp.xml:<?xml version="1.0" encoding="utf-8"?><Versions> <AddVersion overwrite="true"> <Version>0.1.0.0</Version> <Changes>- line1- line2</Changes>
<InheritPrevRegistry /> <InheritPrevActions />
<Files dir="basedir"> <Folder source="C:\dev\project\Versions\0.1.0.0" insideonly="true" /> </Files> </AddVersion></Versions>
The commands are executed without errors but if i open project.wyp with wyBuild i see that the version has not been added.Any suggestions?
I'll look into this -- I'll get back to you soon.
Sorry this is a bug -- we're fixing it for wyBuild 2.6.15. In the meantime, instead of separating the building of the updates and the building of wyUpdate into 2 separate steps, do them in the same step:
wybuild.cmd.exe c:\dev\project\project.wyp /bu /bwu -add="tmp.xml"
wyBuild 2.6.16 is now out -- we've added the ability to add versions seperately.