Old Face To Say Hello


namco

Member
Joined
Mar 22, 2006
Messages
410
Age
41
Location
Manchester, UK
Website
www.stupendous-stuff.com
I've not been on this forum in ages!
 
But I am here to say hi and...waitaminute...what am I doing on the Pandora section???
 
Ah ha, that's because I managed to get a Rebirth in around June last year and thoroughly enjoying my little bundle of joy. I've also managed, last night, to get a test SDL app running using a modification of the old GP2X makefile. I only have one question, when I set up the pnd with PNDTools and upload it to the menu folder on the SD card, the menu doesn't display any of the other applications. Running the .pnd via run_pnd.sh works fine though. Any suggestions?
 
Also does anyone know a fast way to reload the menu without having to reset the Pandora?
 
I'll update the post with the PXML file later tonight and will put up a post on how I setup my dev system for Pandora.
 
Interesting. I can't really help you (since I couldn't find a Pandora to buy in the US), but it's nice to see someone is putting in effort into the wonderful handheld.
 
I wish you the best of luck!
 
PXML file here:
<?xml version="1.0" encoding="UTF-8"?>
<PXML xmlns="http://openpandora.org/namespaces/PXML">
<package id="parallaxscrollingtest.jamesdunn">
<author name="James Dunn"/>
<version major="1" minor="0" release="0" build="0"/>
<titles>
<title lang="en_US">Parallax Scrolling Test</title>
</titles>
<descriptions>
<description lang="en_US"></description>
</descriptions>
<icon src="./assets/icon.png"/>
</package>
<application id="parallaxscrollingtest.jamesdunn">
<exec command="./test"/>
<author name="James Dunn"/>
<version major="1" minor="0" release="0" build="0"/>
<titles>
<title lang="en_US">Parallax Scrolling Test</title>
</titles>
<descriptions>
<description lang="en_US"></description>
</descriptions>
<!--Extra block for compatibility with OS versions before HF6-->
<title lang="en_US">Parallax Scrolling Test</title>
<description lang="en_US"></description>
<!--END Extra block-->
<icon src="./assets/icon.png"/>
<licenses>
<license name="none"/>
</licenses>
<icon src="./assets/icon.png"/>
<previewpics>
<pic src="./assets/parallax1.png"/>
</previewpics>
<categories>
<category name="Game">
<subcategory name="ActionGame"/>
</category>
</categories>
</application>
<!--Created with the PXMLCreator of PNDTools v.0.7.1-->
</PXML>
 
I ran your PXML file through xmllint with the PXML schema (see this Pandora Wiki article for how to do this yourself), and it complained about empty <description> blocks on lines 10, 22, 26 and the extra <icon src="./assets/icon.png"/> on line 32. Hope this helps.
 
Back
Top