Changed name back to OpenNoodl, updated icons
|
Before Width: | Height: | Size: 32 KiB After Width: | Height: | Size: 67 KiB |
|
Before Width: | Height: | Size: 196 KiB After Width: | Height: | Size: 682 KiB |
|
Before Width: | Height: | Size: 20 KiB After Width: | Height: | Size: 31 KiB |
|
Before Width: | Height: | Size: 44 KiB After Width: | Height: | Size: 83 KiB |
|
Before Width: | Height: | Size: 3.7 KiB After Width: | Height: | Size: 3.8 KiB |
|
Before Width: | Height: | Size: 6.1 KiB After Width: | Height: | Size: 6.9 KiB |
|
Before Width: | Height: | Size: 94 KiB After Width: | Height: | Size: 233 KiB |
|
Before Width: | Height: | Size: 8.4 KiB After Width: | Height: | Size: 11 KiB |
@@ -11,7 +11,7 @@ module.exports = async function (params) {
|
||||
return;
|
||||
}
|
||||
|
||||
const appId = 'com.code-crusher.app';
|
||||
const appId = 'com.opennoodl.app';
|
||||
|
||||
const appPath = path.join(params.appOutDir, `${params.packager.appInfo.productFilename}.app`);
|
||||
if (!fs.existsSync(appPath)) {
|
||||
|
||||
@@ -15,30 +15,30 @@
|
||||
"test:ci": "webpack-cli --config=webpackconfigs/webpack.test-ci.js && electron test.js"
|
||||
},
|
||||
"build": {
|
||||
"appId": "com.code-crusher.app",
|
||||
"appId": "com.opennoodl.app",
|
||||
"afterSign": "./build/macos-notarize.js",
|
||||
"mac": {
|
||||
"hardenedRuntime": true,
|
||||
"entitlements": "build/entitlements.mac.plist",
|
||||
"extendInfo": {
|
||||
"LSMultipleInstancesProhibited": true,
|
||||
"NSMicrophoneUsageDescription": "Allow Code-Crusher apps that you create and run to access the microphone?",
|
||||
"NSCameraUsageDescription": "Allow Code-Crusher apps that you create and run to access the camera?"
|
||||
"NSMicrophoneUsageDescription": "Allow OpenNoodl apps that you create and run to access the microphone?",
|
||||
"NSCameraUsageDescription": "Allow OpenNoodl apps that you create and run to access the camera?"
|
||||
}
|
||||
},
|
||||
"win": {
|
||||
"target": "nsis"
|
||||
},
|
||||
"nsis": {
|
||||
"guid": "com.code-crusher.app"
|
||||
"guid": "com.opennoodl.app"
|
||||
},
|
||||
"linux": {
|
||||
"target": "deb"
|
||||
},
|
||||
"protocols": {
|
||||
"name": "code-crusher",
|
||||
"name": "opennoodl",
|
||||
"schemes": [
|
||||
"code-crusher"
|
||||
"opennoodl"
|
||||
]
|
||||
},
|
||||
"npmRebuild": false,
|
||||
|
||||
@@ -2,5 +2,5 @@ const remote = require('@electron/remote');
|
||||
|
||||
export default function getDocsEndpoint() {
|
||||
const localDocs = remote.getGlobal('useLocalDocs');
|
||||
return localDocs ? 'http://localhost:3000' : 'https://the-low-code-foundation.github.io/code-crusher-docs';
|
||||
return localDocs ? 'http://localhost:3000' : 'https://the-low-code-foundation.github.io/opennoodl-docs';
|
||||
}
|
||||
|
||||