diff --git a/benchmark/01-empty-app/nw.js/build.js b/benchmark/01-empty-app/nw.js/build.js index 385dd355..7a0c58ae 100644 --- a/benchmark/01-empty-app/nw.js/build.js +++ b/benchmark/01-empty-app/nw.js/build.js @@ -24,7 +24,8 @@ for(const arch of archs) { glob: false, app: { 'icon': './app/icon.ico', - 'name': '01-empty-app' + 'name': '01-empty-app', + 'LSApplicationCategoryType': 'public.app-category.utilities', } }); console.log(`Building for ${arch} ... Done!`); diff --git a/benchmark/02-empty-app-frameless/nw.js/build.js b/benchmark/02-empty-app-frameless/nw.js/build.js index c28d4216..7d0c87de 100644 --- a/benchmark/02-empty-app-frameless/nw.js/build.js +++ b/benchmark/02-empty-app-frameless/nw.js/build.js @@ -24,7 +24,8 @@ for(const arch of archs) { glob: false, app: { 'icon': './app/icon.ico', - 'name': '02-empty-app-frameless' + 'name': '02-empty-app-frameless', + 'LSApplicationCategoryType': 'public.app-category.utilities', } }); console.log(`Building for ${arch} ... Done!`);