I've posted a new wip. Mostly bugfixes. I've written a new skin import utility which I use for updating skins between versions. Also, I added some stuff back to my new version of my ListGen utility which the older version had but the new version didn't have. One example is filtering by control type. You would use a SQL query such as:
select * from gamedata
where
control = 'joy2way'
and is_bios='0'
and buttons = '1'
and orientation = 'vertical'
;
This query will pick up 1-button vertical games, such as Galaga, Space Invaders, and so on.