Cannot create Gallery extension

Hello all,

I am trying to create a gallery extension as explained here.

When I import my extension, I get the usual prompt about the users and all seems to go well. But when I restart LO, I cannot see the images in the gallery.

I am running LO 5.2.6.2 on Windows 7. My account has no admin rights, but I can launch LO as a different user with more rights.

My .oxt bundle contains:

  • gallery: 2 each of a .sdg, .sdv and .thm file.

  • license: the license txt file.

  • META-INF: manifest.xml

      <xml version="1.0" encoding="UTF-8"?> <!DOCTYPE manifest:manifest PUBLIC "-//OpenOffice.org//DTD Manifest 1.0//EN" "Manifest.dtd">
      <manifest:manifest xmlns:manifest="http://openoffice.org/2001/manifest"> <manifest:file-entry manifest:media-type="application/vnd.sun.star.configuration-data" manifest:full-path ="Paths.xcu"/> <manifest:file-entry manifest:full-path="pkg-desc/pkg-description.txt" manifest:media-type="application/vnd.sun.star.package-bundle-description"/>      </manifest:manifest>
    
  • pkg-desc: pkg-description.txt.

  • Release-notes: release-notes_en.txt

  • icon.png

  • description.xml:

<?xml version="1.0" encoding="UTF-8"?>

<?xml version="1.0" encoding="UTF-8"?>
<description 
xmlns="http://openoffice.org/extensions/description/2006"
xmlns:d="http://openoffice.org/extensions/description/2006"
xmlns:l="http://libreoffice.org/extensions/description/2011"
xmlns:xlink="http://www.w3.org/1999/xlink">

    <identifier value="mycompany.myproduct" />
    <version value="0.0.1" />
    <dependencies>
         <l:LibreOffice-minimal-version value="3.5" d:name="LibreOffice 3.5" />
    </dependencies>
    <release-notes>
		<src xlink:href="release-notes/release-notes_en.txt" lang="en" />
	</release-notes>
    <display-name>
       <name lang="en">Gallery</name>
   </display-name>
    <platform value="all" />
    <icon>
        <default xlink:href="icon.png" />
    </icon>
</description>