Pandora Repo Preview Pics


CyberLeo

Member
Joined
Jun 29, 2011
Messages
31
Having finished porting and packaging the broadcast tool butt, I figured I'd share it in case anyone else found it useful.

However, even after letting it settle for a few hours after upload to the repo, the preview picture I included still isn't showing up on the website or in pndmanager.

How long does this usually take? Did I botch something while creating the pnd? Any other observations?

Thanks!
 
The preview pics are shown instantly.
I suspect you don't have put the correct field in the PXML.xml file, as putting preview*.png in the PND is not enough.
For example, in rvgl, I have put 4 preview pics. There are in the "root" of the PND. So in the "<application>" section of the PXML, I have
Code:
    <previewpics>
        <pic src="preview1.png"/>
        <pic src="preview2.png"/>
        <pic src="preview3.png"/>
        <pic src="preview4.png"/>
   </previewpics>

I hope it helps.
 
And i use ever the PNDTools for Windows from this Forum :)
There is an Grafical Option to edit the PXML Files.
All my Pictures worked only when they are PNG and 800x480 Pandora Display Screen Size.
Maybe its a Resolution/Format Error with your Pichtures.
 
The preview pics are shown instantly.
I suspect you don't have put the correct field in the PXML.xml file, as putting preview*.png in the PND is not enough.
For example, in rvgl, I have put 4 preview pics. There are in the "root" of the PND. So in the "<application>" section of the PXML, I have
Code:
    <previewpics>
        <pic src="preview1.png"/>
        <pic src="preview2.png"/>
        <pic src="preview3.png"/>
        <pic src="preview4.png"/>
   </previewpics>

I hope it helps.

I've got this, to point to the screenshot stored in previews/:
Code:
<previewpics>
  <pic src="preview/shot.png" />
</previewpics>
And this turns out to be the problem, because I missed the 's'.

Thanks!
 
Back
Top