milkshake
Advanced Member
@tuki_cat
Hi, when II saw you updated the pnd file I noticed the preview pic was broken, I thought I had a bug in my code but I didnt.
in your pxml you wrongly labled your previewpic src as "uae_pvw.png" when in fact it is a jpeg not a png.
I have now included extra checks to make sure I don't display a broken image, however in your case the preview pic exists but my site does not show it because of the PXML error.
as part of my bug hunt i extracted the PXML file and noticed it was old so i came up with a more modern version you should probably use.
please edit where needed.
Hi, when II saw you updated the pnd file I noticed the preview pic was broken, I thought I had a bug in my code but I didnt.
in your pxml you wrongly labled your previewpic src as "uae_pvw.png" when in fact it is a jpeg not a png.
I have now included extra checks to make sure I don't display a broken image, however in your case the preview pic exists but my site does not show it because of the PXML error.
as part of my bug hunt i extracted the PXML file and noticed it was old so i came up with a more modern version you should probably use.
please edit where needed.
Code:
<?xml version="1.0" encoding="UTF-8"?>
<!-- This is a sample PXML.xml file making use of many different things.-->
<PXML xmlns="http://openpandora.org/namespaces/PXML">
<package id="uae4all">
<version major="1" minor="1" release="1" build="16" type="release"/>
<author name="Various" website=""/>
<titles>
<title lang="en_US">UAE4ALL</title>
</titles>
<descriptions>
<description lang="en_US">A fast and optimized Amiga 500 Emulator</description>
<description lang="de_DE">Ein schneller und optimierter Amiga 500 Emulator</description>
</descriptions>
<icon src="uae.png"/>
</package>
<application id="uae4all">
<exec command="runme.sh"/>
<version major="1" minor="1" release="1" build="16" type="release"/> <!--This program's version-->
<osversion major="1" minor="0" release="0" build="0"/><!--The minimum OS version required-->
<author name="Chui, Various" website="http://chui.dcemu.co.uk/uae4all.html"/> <!--Optional email and website, name required-->
<titles>
<title lang="en_US">UAE4ALL</title>
</titles>
<title lang="en_US">UAE4ALL</title> <!--Extra <title> block for compatibility with OS versions before HF6-->
<descriptions>
<description lang="en_US">A fast and optimized Amiga 500 Emulator</description>
<description lang="de_DE">Ein schneller und optimierter Amiga 500 Emulator</description>
</descriptions>
<description lang="en_US">A fast and optimized Amiga 500 Emulator</description><!--Extra <description> block for compatibility with OS versions before HF6-->
<description lang="de_DE">Ein schneller und optimierter Amiga 500 Emulator</description><!--Extra <description> block for compatibility with OS versions before HF6-->
<icon src="uae.png"/>
<licenses>
<license name="GPL" url="http://www.gnu.org/licenses/gpl.html" sourcecodeurl="http://notaz.gp2x.de/releases/uae4all_gp2x_0.7.1.tar.bz2"/><!--Optional url and sourcecodeurl, mandatory name-->
</licenses>
<previewpics>
<pic src="uae_pvw.jpg"/>
</previewpics>
<info name="UAE4ALL ReadMe" type="txt/html" src="Readme_Pandora.txt"/>
<!--the categories has to conform to the FDO categories, those will be enforced by the schema and libpnd!-->
<categories>
<category name="Game"><!--Main category: a category like "Game", "Graphics", "Network", etc-->
<subcategory name="Emulator"/><!--Subcategory 1: a subcategory, like "BoardGame", "StrategyGame", "ActionGame"-->
</category>
</categories>
<!--<associations>
<!--File associations, with a short description, an extension, and start params.-->
<!--<association name="View Word File" filetype="application/msword" exec="-f %s -t doc"/>
</associations>-->
<clockspeed frequency="600"/><!--Frequency in Hz-->
</application>
</PXML>
Last edited by a moderator: