Hi there, the macOS version doesn't currently work, due to a combination of modifying a signed copy of DOSBox Staging, which has code signing/notarization, and removing/commenting the bundle identifier from the Info.plist.
You'll need to set an actual bundle identifier (I edited mine to `com.kokoscript.wordhopper`) and either remove the code signing as it stands, or sign it yourself with a developer certificate to make this work.
Once I'd edited Info.plist to reinstate a bundle identifier, I made it run on my local machine, with:
# remove any extended attributes and resource forks xattr -cr ~/Downloads/WordHopper.app && \ codesign --force --deep -s - ~/Downloads/WordHopper.app
Note that this is NOT SUFFICIENT FOR DISTRIBUTION, the resulting app is signed to work on the local machine only.