Hi, Could someone please explain the workflow Joomla uses for identifying NEW version when we click on Extensions > Extension manager > Update > Find updates?
Does it analyze <version> tag in the com_customextension_update.xml file? If yes, how does it compare two different versions? Like strings?
Here is my xml file, I created it using Joomla Component Tutorial (from
docs.joomla.org). I didn't find any explanations on how to use other tags (i.e. <infourl>, <downloads>) and attributes (i.e. attributes for tag <platform>)
<?xml version="1.0" encoding="utf-8"?>
<updates>
<update>
<name>basketball</name>
<description></description>
<element>com_basketball</element>
<type>component</type>
<version>1.0</version>
<infourl title="basketball URL">
http://www.krepsiniopulsas.lt</infourl>
<downloads>
<downloadurl type="full" format="zip">
http://www.krepsiniopulsas.lt/com_basketball_v1.0.zip</downloadurl>
</downloads>
<maintainer>Antanas Vipartas</maintainer>
<maintainerurl>
http://vipartas.lt</maintainerurl>
<targetplatform name="joomla" version="2.5" />
</update>
<update>
<name>basketball</name>
<description></description>
<element>com_basketball</element>
<type>component</type>
<version>1.1</version>
<infourl title="basketball URL">
http://www.krepsiniopulsas.lt</infourl>
<downloads>
<downloadurl type="full" format="zip">
http://www.krepsiniopulsas.lt/com_basketball_v1.1.zip</downloadurl>
</downloads>
<maintainer>Antanas Vipartas</maintainer>
<maintainerurl>
http://vipartas.lt</maintainerurl>
<targetplatform name="joomla" version="2.5" />
</update>
</updates>