chore: Update more branding (#9)

Co-authored-by: alan-x-n <x.alanan.x@gmail.com>
This commit is contained in:
Eric Tuvesson
2024-04-03 00:14:40 +02:00
committed by GitHub
parent d7147efa0c
commit 51224f9455
4 changed files with 15 additions and 21 deletions

View File

@@ -1,9 +1,9 @@
{
"name": "noodl-editor",
"productName": "Fluxscape",
"description": "Low-code for when experience matter",
"author": "Noodl <info@noodl.net>",
"homepage": "https://noodl.net",
"description": "Node-Based App Builder for Scalability & Rapid Development, a fork of Noodl",
"author": "Fluxscape <contact@fluxscape.io>",
"homepage": "https://fluxscape.io",
"version": "1.0.0",
"main": "src/main/main.js",
"scripts": {

View File

@@ -109,7 +109,7 @@ function TopBar({ showSpinner, setShowSpinner }: TopBarProps) {
}}
/>
<TextButton label="Docs" onClick={() => platform.openExternal(getDocsEndpoint())} />
<TextButton label="Community" onClick={() => platform.openExternal('https://www.noodl.net/community')} />
<TextButton label="Community" onClick={() => platform.openExternal('https://www.fluxscape.io/community')} />
</HStack>
</div>
);

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://noodlapp.github.io/noodl-docs';
return localDocs ? 'http://localhost:3000' : 'https://docs.fluxscape.io';
}