Updated icons and references to Noodl, plus build scripts
|
Before Width: | Height: | Size: 17 KiB After Width: | Height: | Size: 32 KiB |
|
Before Width: | Height: | Size: 21 KiB After Width: | Height: | Size: 196 KiB |
|
Before Width: | Height: | Size: 2.2 KiB After Width: | Height: | Size: 20 KiB |
|
Before Width: | Height: | Size: 4.2 KiB After Width: | Height: | Size: 44 KiB |
|
Before Width: | Height: | Size: 671 B After Width: | Height: | Size: 3.7 KiB |
|
Before Width: | Height: | Size: 925 B After Width: | Height: | Size: 6.1 KiB |
|
Before Width: | Height: | Size: 9.0 KiB After Width: | Height: | Size: 94 KiB |
|
Before Width: | Height: | Size: 1.2 KiB After Width: | Height: | Size: 8.4 KiB |
@@ -1,6 +1,5 @@
|
||||
const fs = require('fs');
|
||||
const path = require('path');
|
||||
var electron_notarize = require('electron-notarize');
|
||||
|
||||
module.exports = async function (params) {
|
||||
if (process.platform !== 'darwin') {
|
||||
@@ -12,7 +11,7 @@ module.exports = async function (params) {
|
||||
return;
|
||||
}
|
||||
|
||||
const appId = 'noodl.net.noodl';
|
||||
const appId = 'com.code-crusher.app';
|
||||
|
||||
const appPath = path.join(params.appOutDir, `${params.packager.appInfo.productFilename}.app`);
|
||||
if (!fs.existsSync(appPath)) {
|
||||
@@ -22,6 +21,7 @@ module.exports = async function (params) {
|
||||
console.log(`Notarizing ${appId} found at ${appPath}`);
|
||||
|
||||
try {
|
||||
const electron_notarize = require('electron-notarize');
|
||||
await electron_notarize.notarize({
|
||||
appBundleId: appId,
|
||||
appPath: appPath,
|
||||
|
||||