From dc51627c07ce068735afb41c624d8d522b0beea3 Mon Sep 17 00:00:00 2001 From: Feross Aboukhadijeh Date: Wed, 23 Mar 2016 19:32:54 -0700 Subject: [PATCH] OS X: pick a better bundle ID The old bundle ID ended in .app, which OS X will interpret as an executable app. This meant that our preferences folder was treated like an app, lol. --- bin/package.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bin/package.js b/bin/package.js index 03781909..bb04bcd9 100755 --- a/bin/package.js +++ b/bin/package.js @@ -82,14 +82,14 @@ var darwin = { platform: 'darwin', // The bundle identifier to use in the application's plist (OS X only). - 'app-bundle-id': 'io.webtorrent.app', + 'app-bundle-id': 'io.webtorrent.webtorrent', // The application category type, as shown in the Finder via "View" -> "Arrange by // Application Category" when viewing the Applications directory (OS X only). 'app-category-type': 'public.app-category.utilities', // The bundle identifier to use in the application helper's plist (OS X only). - 'helper-bundle-id': 'io.webtorrent.app.helper', + 'helper-bundle-id': 'io.webtorrent.webtorrent-helper', // Application icon. icon: config.APP_ICON + '.icns'