What forums do you run?
Why don't I just post all my personal contact information as well as my colleagues and friends? Hahaha
Seriously I don't run any sites that anyone here would care about...
What happened is the new version of SMF arcade removed all the nice blocks at the top and other nice features until they can work out the bugs. Those will be back in the next release. So yeah, the older version looks nicer for now.
With the new arcade you can install large numbers of games instantly, but you have to enter icon info after install. In the version I set up it was a tedious install for each game but then the icons worked.
Here is an sql query you can use to get your icons back:
update smf_arcade_games
set thumbnail = CONCAT(smf_arcade_games.internalName,'.gif')
This will set all the icons to be the same name as the the game filename .gif
If you used the old icons that were like filename1.gif for the big one and filename2.gif for the small icon then just change the code to be:
update smf_arcade_games
set thumbnail = CONCAT(smf_arcade_games.internalName,'1.gif')
Or use a file renamer.
I just found this on the smf forums and it worked like a charm