Changed name back to OpenNoodl, updated icons

This commit is contained in:
Richard Osborne
2024-09-24 22:10:20 +02:00
parent 321b6a367c
commit 37668399e5
16 changed files with 250 additions and 536 deletions

Binary file not shown.

Before

Width:  |  Height:  |  Size: 32 KiB

After

Width:  |  Height:  |  Size: 67 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 196 KiB

After

Width:  |  Height:  |  Size: 682 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 20 KiB

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 44 KiB

After

Width:  |  Height:  |  Size: 83 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 3.7 KiB

After

Width:  |  Height:  |  Size: 3.8 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 6.1 KiB

After

Width:  |  Height:  |  Size: 6.9 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 94 KiB

After

Width:  |  Height:  |  Size: 233 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 8.4 KiB

After

Width:  |  Height:  |  Size: 11 KiB

View File

@@ -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)) {

View File

@@ -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,

View File

@@ -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';
}