From d9149a2ee8e18dbd4c72a42cecf9d1e3cfb6463b Mon Sep 17 00:00:00 2001 From: duanemoody Date: Mon, 31 Mar 2014 10:29:55 -0700 Subject: [PATCH] Add application category (Utilities) OS X's View by Category requires LSApplicationCategoryType otherwise it sorts out to "Other" at the bottom. --- setup/installer/osx/app/main.py | 1 + 1 file changed, 1 insertion(+) diff --git a/setup/installer/osx/app/main.py b/setup/installer/osx/app/main.py index 9618b90232..6951c6d530 100644 --- a/setup/installer/osx/app/main.py +++ b/setup/installer/osx/app/main.py @@ -357,6 +357,7 @@ class Py2App(object): CFBundleIconFile='library.icns', LSMultipleInstancesProhibited=True, NSHighResolutionCapable=True, + LSApplicationCategoryType='public.app-category.utilities', LSEnvironment=env ) plistlib.writePlist(pl, join(self.contents_dir, 'Info.plist'))