leighmcculloch / AppSandboxFileAccess

A class that wraps up writing and accessing files outside a Mac apps App Sandbox files into a simple interface. The class will request permission from the user with a simple to understand dialog consistent with Apple's documentation and persist permissions across application runs.
BSD 2-Clause "Simplified" License
114 stars 23 forks source link

Try harder to get application's name. #2

Closed vslavik closed 10 years ago

vslavik commented 10 years ago

CFBundleDisplayName may lack localization or may be missing altogether (default Info.plist files created by Xcode don't have it). Try to use non-localized entry or CFBundleName as fallbacks. This is similar to what e.g. Sparkle does.

leighmcculloch commented 10 years ago

@vslavik I've fixed this in branch release/1.0.13, could you let me know if this resolves the issues you had?

vslavik commented 10 years ago

It does, thanks.

leighmcculloch commented 10 years ago

Thanks for finding the issue and a solution. :blush: