there are multiple issues with your Info.plist file that severely damage the integration into macOS: • your CFBundleName entry is present but set to an empty string, which causes the app to show up without name at all in QuickLook
• you have no CFBundleIdentifier. every macOS app must have one. (native cocoa)preferences and caching won't work without one. you had one previously ("org.speedcrunch") maybe this got lost due to a bug
• version information is partly missing and partly damaged. CFBundleShortVersionString is set to 'master' and 'CFBundleVersion' is empty. both should be set to 0.12
• CFBundleLongVersionString has been deprecated for nearly 2 decades now. it should be removed. also CFBundleGetInfoString has been deprecated for more than 1 decade and should be removed.
Comments (4)
-
repo owner -
Cleaning the file won’t hurt. In any case, the part concerning the preferences should indeed be fixed.
-
repo owner -
assigned issue to
- changed milestone to 1.0
-
assigned issue to
-
- changed status to resolved
- Log in to comment
@sgaist Thoughts on this?