I am not sure this should be here or in support but it's more related to addons, so I ended up posting this here.
I got a new package for Quick Reply Reposition Addon but I cannot properly install it as the package manager didn't seem to install my template from the right folder. (I attached it here temporarily).
For version 1.0 I use folder 10 and for folder 1.1 I use folder 11 but this was not respected by the package manager. It still uses folder 10 even when install on ElkArte 1.1 RC2, so I am lost as to why and how to fix it. Here is the xml code for installation:
<install for="1.0*">
<readme type="file" parsebbc="true">QRR.readme.txt</readme>
<require-file name="QRR.english.php" destination="LANGUAGEDIR/english/QRR" />
<require-file name="QRR.subs.php" destination="SOURCEDIR/addons/QRR" />
<require-file name="10/QRR.template.php" destination="THEMEDIR/QRR" />
<require-file name="QRR.styles.css" destination="THEMEDIR/css/QRR" />
<code>QRR.hooks.php</code>
<redirect url="?action=admin;area=addonsettings" timeout="499">Redirecting to Addons Settings...</redirect>
</install>
<uninstall for="1.0*">
<readme parsebbc="true">QRR.readme.txt</readme>
<remove-dir name="LANGUAGEDIR/english/QRR" />
<remove-dir name="SOURCEDIR/addons/QRR" />
<remove-dir name="THEMEDIR/QRR" />
<remove-dir name="THEMEDIR/css/QRR" />
<code>QRR.hooks.php</code>
<redirect url="?action=admin;area=packages" timeout="499">Redirecting to Package Manager...</redirect>
</uninstall>
<install for="1.1*">
<readme type="file" parsebbc="true">QRR.readme.txt</readme>
<require-file name="QRR.english.php" destination="LANGUAGEDIR/english/QRR" />
<require-file name="QRR.subs.php" destination="SOURCEDIR/addons/QRR" />
<require-file name="11/QRR.template.php" destination="THEMEDIR/QRR" />
<require-file name="QRR.styles.css" destination="THEMEDIR/css/QRR" />
<code>QRR.hooks.php</code>
<redirect url="?action=admin;area=addonsettings" timeout="499">Redirecting to Addons Settings...</redirect>
</install>
<uninstall for="1.1*">
<readme parsebbc="true">QRR.readme.txt</readme>
<remove-dir name="LANGUAGEDIR/english/QRR" />
<remove-dir name="SOURCEDIR/addons/QRR" />
<remove-dir name="THEMEDIR/QRR" />
<remove-dir name="THEMEDIR/css/QRR" />
<code>QRR.hooks.php</code>
<redirect url="?action=admin;area=packages" timeout="499">Redirecting to Package Manager...</redirect>
</uninstall>
Do enlighten me as to where the fault is.