Feedback:
- Add what still needs testing so testers know what still open
[] AmberELEC
[] ArkOS
[] JELOS
Resolution Tests
Test all major resolutions:
[] 480x320
[] 640x480
[] 720x720 (RGB30)
[] Higher resolutions (e.g., 1280x720)```
- .gitkeep file needs to be added to gamedata folder
- About the gameinfo.xml to my understanding if you only have the information of path, name and image you don't need to supply that file at all since you're not actually adding metadata beside what portmaster already provides automatically as metadata.
So Emtpy shell from this port:
<?xml version='1.0' encoding='utf-8'?>
<gameList>
<game>
<path>./SunsetWitchClassic.sh</path>
<name>Sunset Witch Classic</name>
<image>./sunsetwitchclassic/screenshot.png</image>
</game>
</gameList>
vs example which a porter could provide:
<?xml version='1.0' encoding='utf-8'?>
<gameList>
<game>
<path>./Banana Duck.sh</path>
<name>Banana Duck</name>
<desc>Banana Duck is an action game that puts you in a relatable challenge. Picture yourself as a banana-craving, non-swimming duck in a fridge full of tomatoes and carrots. Navigate past evil veggies and nonsensical saw blades to relish the pursuit of bananas. Embrace the challenge, enjoy the absurdity, and savor the taste of this unique adventure.</desc>
<releasedate>20230801T000000</releasedate>
<developer>Hamdy Elzanqali</developer>
<publisher>Hamdy Elzanqali</publisher>
<genre>Action-Platform</genre>
<image>./bananaduck/cover.png</image>
</game>
</gameList>