<?xml version="1.0"?>
<webupdate>
	<msg-update-available lang="en">
Toucan 2.0 is avalible, it includes numerous bug fixes!
	</msg-update-available>
	<msg-update-notavailable lang="en">
	No updates at the moment, sorry
	</msg-update-notavailable>

   <!-- all the info about a specific package are enclose in the <package> tag -->
   <package id="toucan">
   
      <!-- the most important is the latest version available for this package -->
      <latest-version importance="high">2.0.0</latest-version>
      
      <!-- then comes the donwload URLs... -->
      <latest-download>
			<uri>http://slamerton.cubegames.net/simple.zip</uri>
            
            <!-- each 'download' can be for one or more specific platform(s) or for
                 all platforms (using "any") -->
			<platform name="msw"/>	
            
            <!-- now you need to tell to WebUpdater how to install this package... -->
			<actions>
            
                <!-- the EXTRACT action is one of the predefined actions... -->
				<extract file="$(thisfile)" where="$(downloaddir)"/>
               			<run cmd="$(cp)" args="$(downloaddir)/Toucan.exe ..\..\" />
			</actions>
	  </latest-download>

   </package>
   
</webupdate>