@interopio/iocd-cli 0.0.39 → 0.0.40

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (83) hide show
  1. package/README.md +780 -779
  2. package/dist/services/installer/electronForge.js +5 -3
  3. package/dist/services/installer/electronForge.js.map +1 -1
  4. package/dist/services/installer/macOS.helper.js +0 -1
  5. package/dist/services/installer/macOS.helper.js.map +1 -1
  6. package/dist/services/license.service.js +14 -14
  7. package/dist/templates/groups/apps/groups/.gitignore.template +23 -23
  8. package/dist/templates/groups/apps/groups/README.md +15 -15
  9. package/dist/templates/groups/apps/groups/config/web-group-dev.json +12 -12
  10. package/dist/templates/groups/apps/groups/index.html +17 -17
  11. package/dist/templates/groups/apps/groups/iocd.app.json +19 -19
  12. package/dist/templates/groups/apps/groups/package.json +25 -25
  13. package/dist/templates/groups/apps/groups/public/manifest.json +24 -24
  14. package/dist/templates/groups/apps/groups/public/robots.txt +3 -3
  15. package/dist/templates/groups/apps/groups/src/App.css +38 -38
  16. package/dist/templates/groups/apps/groups/src/App.tsx +11 -11
  17. package/dist/templates/groups/apps/groups/src/index.css +13 -13
  18. package/dist/templates/groups/apps/groups/src/index.tsx +19 -19
  19. package/dist/templates/groups/apps/groups/vite.config.ts +8 -8
  20. package/dist/templates/groups/template.json +12 -12
  21. package/dist/templates/ioconnect-desktop/.github/actions/setup-smctl/action.yml +121 -121
  22. package/dist/templates/ioconnect-desktop/.github/workflows/build.yml +395 -395
  23. package/dist/templates/ioconnect-desktop/.gitignore.template +15 -15
  24. package/dist/templates/ioconnect-desktop/README.md +780 -779
  25. package/dist/templates/ioconnect-desktop/config/forge.config.js +59 -59
  26. package/dist/templates/ioconnect-desktop/config/iocd.cli.config.json +16 -16
  27. package/dist/templates/ioconnect-desktop/config/mac-build/entitlements.mac.plist +44 -44
  28. package/dist/templates/ioconnect-desktop/config/win-build/template.nuspectemplate +32 -32
  29. package/dist/templates/ioconnect-desktop/modifications/base/iocd/config/system.json.merge +2 -2
  30. package/dist/templates/ioconnect-desktop/modifications/base/iocd/config/system.json.merge-autoUpdate +9 -9
  31. package/dist/templates/ioconnect-desktop/package.json +33 -33
  32. package/dist/templates/ioconnect-desktop/template.json +6 -6
  33. package/dist/templates/launchpad/apps/launchpad/.eslintrc.json +3 -3
  34. package/dist/templates/launchpad/apps/launchpad/.gitignore.template +1 -1
  35. package/dist/templates/launchpad/apps/launchpad/config/iocd.app.def.dev.json +56 -56
  36. package/dist/templates/launchpad/apps/launchpad/config/iocd.system.build.json +2 -2
  37. package/dist/templates/launchpad/apps/launchpad/config/iocd.system.dev.json +2 -2
  38. package/dist/templates/launchpad/apps/launchpad/index.html +16 -16
  39. package/dist/templates/launchpad/apps/launchpad/iocd.app.json +27 -27
  40. package/dist/templates/launchpad/apps/launchpad/package-lock.json +2778 -2778
  41. package/dist/templates/launchpad/apps/launchpad/package.json +21 -21
  42. package/dist/templates/launchpad/apps/launchpad/src/app/app.tsx +41 -41
  43. package/dist/templates/launchpad/apps/launchpad/src/app/constants.ts +27 -27
  44. package/dist/templates/launchpad/apps/launchpad/src/components/logo.tsx +11 -11
  45. package/dist/templates/launchpad/apps/launchpad/src/components/main-context-menu.tsx +161 -161
  46. package/dist/templates/launchpad/apps/launchpad/src/components/notifications-button.tsx +44 -44
  47. package/dist/templates/launchpad/apps/launchpad/src/main.tsx +6 -6
  48. package/dist/templates/launchpad/apps/launchpad/src/styles.css +16 -16
  49. package/dist/templates/launchpad/apps/launchpad/tsconfig.json +10 -10
  50. package/dist/templates/launchpad/apps/launchpad/vite.config.ts +13 -13
  51. package/dist/templates/launchpad/template.json +12 -12
  52. package/dist/templates/splash/apps/splash/assets/styles/style.css +39 -39
  53. package/dist/templates/splash/apps/splash/iocd.app.json +7 -7
  54. package/dist/templates/splash/apps/splash/script.js +53 -53
  55. package/dist/templates/splash/apps/splash/splash.html +25 -25
  56. package/dist/templates/splash/template.json +12 -12
  57. package/dist/templates/tests/template.json +8 -8
  58. package/dist/templates/tests/tests/package-lock.json +7289 -7289
  59. package/dist/templates/tests/tests/package.json +22 -22
  60. package/dist/templates/tests/tests/tests/sample.spec.ts +30 -30
  61. package/dist/templates/tests/tests/tsconfig.json +10 -10
  62. package/dist/templates/tests/tests/wdio.config.ts +32 -32
  63. package/dist/templates/workspaces/apps/workspaces/README.md +15 -15
  64. package/dist/templates/workspaces/apps/workspaces/config/workspaces-dev.json +20 -20
  65. package/dist/templates/workspaces/apps/workspaces/index.html +17 -17
  66. package/dist/templates/workspaces/apps/workspaces/iocd.app.json +19 -19
  67. package/dist/templates/workspaces/apps/workspaces/package.json +29 -29
  68. package/dist/templates/workspaces/apps/workspaces/public/manifest.json +25 -25
  69. package/dist/templates/workspaces/apps/workspaces/public/robots.txt +3 -3
  70. package/dist/templates/workspaces/apps/workspaces/src/App.css +38 -38
  71. package/dist/templates/workspaces/apps/workspaces/src/App.tsx +102 -102
  72. package/dist/templates/workspaces/apps/workspaces/src/index.css +3 -3
  73. package/dist/templates/workspaces/apps/workspaces/src/index.tsx +28 -28
  74. package/dist/templates/workspaces/apps/workspaces/src/logo.svg +7 -7
  75. package/dist/templates/workspaces/apps/workspaces/src/reportWebVitals.ts +15 -15
  76. package/dist/templates/workspaces/apps/workspaces/src/setupTests.ts +5 -5
  77. package/dist/templates/workspaces/apps/workspaces/vite.config.ts +8 -8
  78. package/dist/templates/workspaces/template.json +12 -12
  79. package/package.json +83 -83
  80. package/scripts/copy-assets.js +19 -19
  81. package/scripts/delete-dist.js +12 -12
  82. package/scripts/generate-schema.js +50 -50
  83. package/scripts/handle-gitignore-templates.js +157 -157
@@ -1,60 +1,60 @@
1
- // forge.config.js
2
- const path = require('path');
3
-
4
- module.exports = {
5
- makers: [
6
- {
7
- name: '@electron-forge/maker-squirrel',
8
- config: {
9
- // see https://github.com/electron/windows-installer for all of the options
10
- // loadingGif: "" // The local path to a .gif file to display during install.
11
- // iconUrl: "" // A URL to an ICO file to use as the application icon (displayed in Control Panel > Programs and Features). e.g., "https://example.com/icon.ico"
12
- }
13
- },
14
- { name: '@electron-forge/maker-zip' },
15
- { name: '@electron-forge/maker-dmg' },
16
- ],
17
- publishers: [
18
- // {
19
- // // Publishes to GitHub Releases, creating a new release for each version of your app.
20
- // // see https://www.electronforge.io/config/publishers/github
21
- // name: '@electron-forge/publisher-github',
22
- // config: {
23
- // repository: {
24
- // owner: '',
25
- // name: ''
26
- // },
27
- // draft: false,
28
- // force: true,
29
- // }
30
- // },
31
- // {
32
- // name: '@electron-forge/publisher-electron-release-server',
33
- // config: {
34
- // baseUrl: 'http://localhost:8080/',
35
- // username: 'username',
36
- // password: 'password'
37
- // }
38
- // },
39
- ],
40
- // DO NOT REMOVE - keep these hooks
41
- hooks: {
42
- async postMake(_config, makeResults) {
43
- // we need to store the make results after the first publish call. We need the make results to sign the artifacts
44
- const fs = require('fs');
45
- const path = require('path');
46
- const out = path.resolve(__dirname, 'dist', 'makeResults.json');
47
- fs.mkdirSync(path.dirname(out), { recursive: true });
48
- fs.writeFileSync(out, JSON.stringify(makeResults, null, 2));
49
- return makeResults;
50
- },
51
-
52
- readPackageJson: async (_forgeConfig, packageJson) => {
53
- // we need this so we don't need to install electron as a dev dependency; the version specified does not matter
54
- if (!packageJson.devDependencies.electron) {
55
- packageJson.devDependencies["electron"] = "38.0.0";
56
- }
57
- return packageJson;
58
- }
59
- },
1
+ // forge.config.js
2
+ const path = require('path');
3
+
4
+ module.exports = {
5
+ makers: [
6
+ {
7
+ name: '@electron-forge/maker-squirrel',
8
+ config: {
9
+ // see https://github.com/electron/windows-installer for all of the options
10
+ // loadingGif: "" // The local path to a .gif file to display during install.
11
+ // iconUrl: "" // A URL to an ICO file to use as the application icon (displayed in Control Panel > Programs and Features). e.g., "https://example.com/icon.ico"
12
+ }
13
+ },
14
+ { name: '@electron-forge/maker-zip' },
15
+ { name: '@electron-forge/maker-dmg' },
16
+ ],
17
+ publishers: [
18
+ // {
19
+ // // Publishes to GitHub Releases, creating a new release for each version of your app.
20
+ // // see https://www.electronforge.io/config/publishers/github
21
+ // name: '@electron-forge/publisher-github',
22
+ // config: {
23
+ // repository: {
24
+ // owner: '',
25
+ // name: ''
26
+ // },
27
+ // draft: false,
28
+ // force: true,
29
+ // }
30
+ // },
31
+ // {
32
+ // name: '@electron-forge/publisher-electron-release-server',
33
+ // config: {
34
+ // baseUrl: 'http://localhost:8080/',
35
+ // username: 'username',
36
+ // password: 'password'
37
+ // }
38
+ // },
39
+ ],
40
+ // DO NOT REMOVE - keep these hooks
41
+ hooks: {
42
+ async postMake(_config, makeResults) {
43
+ // we need to store the make results after the first publish call. We need the make results to sign the artifacts
44
+ const fs = require('fs');
45
+ const path = require('path');
46
+ const out = path.resolve(__dirname, 'dist', 'makeResults.json');
47
+ fs.mkdirSync(path.dirname(out), { recursive: true });
48
+ fs.writeFileSync(out, JSON.stringify(makeResults, null, 2));
49
+ return makeResults;
50
+ },
51
+
52
+ readPackageJson: async (_forgeConfig, packageJson) => {
53
+ // we need this so we don't need to install electron as a dev dependency; the version specified does not matter
54
+ if (!packageJson.devDependencies.electron) {
55
+ packageJson.devDependencies["electron"] = "38.0.0";
56
+ }
57
+ return packageJson;
58
+ }
59
+ },
60
60
  };
@@ -1,17 +1,17 @@
1
- {
2
- "$schema": "../node_modules/@interopio/iocd-cli/dist/schemas/iocd.cli.config.schema.json",
3
- "productSlug": "{{PRODUCT_SLUG}}",
4
- "productName": "{{PRODUCT_NAME}}",
5
- "version": "${npm_package_version}",
6
- "components": {
7
- "store": {
8
- "github": {
9
- "repo": "interopio/iocd-components/releases",
10
- "usePrereleases": false
11
- }
12
- },
13
- "list": {
14
- "iocd": "latest"
15
- }
16
- }
1
+ {
2
+ "$schema": "../node_modules/@interopio/iocd-cli/dist/schemas/iocd.cli.config.schema.json",
3
+ "productSlug": "{{PRODUCT_SLUG}}",
4
+ "productName": "{{PRODUCT_NAME}}",
5
+ "version": "${npm_package_version}",
6
+ "components": {
7
+ "store": {
8
+ "github": {
9
+ "repo": "interopio/iocd-components/releases",
10
+ "usePrereleases": false
11
+ }
12
+ },
13
+ "list": {
14
+ "iocd": "latest"
15
+ }
16
+ }
17
17
  }
@@ -1,44 +1,44 @@
1
- <?xml version="1.0" encoding="UTF-8"?>
2
- <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
- <plist version="1.0">
4
- <dict>
5
- <key>com.apple.security.cs.allow-jit</key>
6
- <true/>
7
-
8
- <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
9
- <true/>
10
-
11
- <key>com.apple.security.cs.allow-dyld-environment-variables</key>
12
- <true/>
13
-
14
- <key>com.apple.security.cs.debugger</key>
15
- <true/>
16
-
17
- <key>com.apple.security.cs.disable-library-validation</key>
18
- <true/>
19
-
20
- <key>com.apple.security.inherit</key>
21
- <true/>
22
-
23
- <key>com.apple.security.files.user-selected.read-write</key>
24
- <true/>
25
-
26
- <key>com.apple.security.files.downloads.read-write</key>
27
- <true/>
28
-
29
- <key>com.apple.security.scripting-targets</key>
30
- <dict>
31
- <key>com.apple.systemevents</key>
32
- <string>com.apple.systemevents</string>
33
- <key>com.apple.finder</key>
34
- <string>com.apple.finder</string>
35
- </dict>
36
-
37
- <key>com.apple.security.device.camera</key>
38
- <true/>
39
-
40
- <key>com.apple.security.device.microphone</key>
41
- <true/>
42
-
43
- </dict>
44
- </plist>
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
3
+ <plist version="1.0">
4
+ <dict>
5
+ <key>com.apple.security.cs.allow-jit</key>
6
+ <true/>
7
+
8
+ <key>com.apple.security.cs.allow-unsigned-executable-memory</key>
9
+ <true/>
10
+
11
+ <key>com.apple.security.cs.allow-dyld-environment-variables</key>
12
+ <true/>
13
+
14
+ <key>com.apple.security.cs.debugger</key>
15
+ <true/>
16
+
17
+ <key>com.apple.security.cs.disable-library-validation</key>
18
+ <true/>
19
+
20
+ <key>com.apple.security.inherit</key>
21
+ <true/>
22
+
23
+ <key>com.apple.security.files.user-selected.read-write</key>
24
+ <true/>
25
+
26
+ <key>com.apple.security.files.downloads.read-write</key>
27
+ <true/>
28
+
29
+ <key>com.apple.security.scripting-targets</key>
30
+ <dict>
31
+ <key>com.apple.systemevents</key>
32
+ <string>com.apple.systemevents</string>
33
+ <key>com.apple.finder</key>
34
+ <string>com.apple.finder</string>
35
+ </dict>
36
+
37
+ <key>com.apple.security.device.camera</key>
38
+ <true/>
39
+
40
+ <key>com.apple.security.device.microphone</key>
41
+ <true/>
42
+
43
+ </dict>
44
+ </plist>
@@ -1,33 +1,33 @@
1
- <?xml version="1.0" encoding="utf-8"?>
2
- <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3
- <metadata>
4
- <id><%- name %></id>
5
- <title><%- title %></title>
6
- <version><%- version %></version>
7
- <authors><%- authors %></authors>
8
- <owners><%- owners %></owners>
9
- <iconUrl><%- iconUrl %></iconUrl>
10
- <requireLicenseAcceptance>false</requireLicenseAcceptance>
11
- <description><%- description %></description>
12
- <copyright><%- copyright %></copyright>
13
- </metadata>
14
- <files>
15
- <file src="locales\**" target="lib\net45\locales" />
16
- <file src="resources\**" target="lib\net45\resources" />
17
- <file src="config\**" target="lib\net45\config" />
18
- <file src="assets\**" target="lib\net45\assets" />
19
- <file src="components\**" target="lib\net45\assets" />
20
- <file src="*.bin" target="lib\net45" />
21
- <file src="*.dll" target="lib\net45" />
22
- <file src="*.pak" target="lib\net45" />
23
- <file src="*.exe.config" target="lib\net45" />
24
- <file src="*.exe.sig" target="lib\net45" />
25
- <file src="icudtl.dat" target="lib\net45\icudtl.dat" />
26
- <file src="Squirrel.exe" target="lib\net45\squirrel.exe" />
27
- <file src="LICENSE" target="lib\net45\LICENSE" />
28
- <file src="<%- exe %>" target="lib\net45\<%- exe %>" />
29
- <% additionalFiles.forEach(function(f) { %>
30
- <file src="<%- f.src %>" target="<%- f.target %>" />
31
- <% }); %>
32
- </files>
1
+ <?xml version="1.0" encoding="utf-8"?>
2
+ <package xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
3
+ <metadata>
4
+ <id><%- name %></id>
5
+ <title><%- title %></title>
6
+ <version><%- version %></version>
7
+ <authors><%- authors %></authors>
8
+ <owners><%- owners %></owners>
9
+ <iconUrl><%- iconUrl %></iconUrl>
10
+ <requireLicenseAcceptance>false</requireLicenseAcceptance>
11
+ <description><%- description %></description>
12
+ <copyright><%- copyright %></copyright>
13
+ </metadata>
14
+ <files>
15
+ <file src="locales\**" target="lib\net45\locales" />
16
+ <file src="resources\**" target="lib\net45\resources" />
17
+ <file src="config\**" target="lib\net45\config" />
18
+ <file src="assets\**" target="lib\net45\assets" />
19
+ <file src="components\**" target="lib\net45\assets" />
20
+ <file src="*.bin" target="lib\net45" />
21
+ <file src="*.dll" target="lib\net45" />
22
+ <file src="*.pak" target="lib\net45" />
23
+ <file src="*.exe.config" target="lib\net45" />
24
+ <file src="*.exe.sig" target="lib\net45" />
25
+ <file src="icudtl.dat" target="lib\net45\icudtl.dat" />
26
+ <file src="Squirrel.exe" target="lib\net45\squirrel.exe" />
27
+ <file src="LICENSE" target="lib\net45\LICENSE" />
28
+ <file src="<%- exe %>" target="lib\net45\<%- exe %>" />
29
+ <% additionalFiles.forEach(function(f) { %>
30
+ <file src="<%- f.src %>" target="<%- f.target %>" />
31
+ <% }); %>
32
+ </files>
33
33
  </package>
@@ -1,3 +1,3 @@
1
- {
2
- "build": "{{PRODUCT_NAME}}"
1
+ {
2
+ "build": "{{PRODUCT_NAME}}"
3
3
  }
@@ -1,10 +1,10 @@
1
- {
2
- "autoUpdater": {
3
- "enabled": false,
4
- "updateSource": {
5
- "type": "Service",
6
- "baseUrl": "http://localhost:3000"
7
- },
8
- "interval" : 5
9
- }
1
+ {
2
+ "autoUpdater": {
3
+ "enabled": false,
4
+ "updateSource": {
5
+ "type": "Service",
6
+ "baseUrl": "http://localhost:3000"
7
+ },
8
+ "interval" : 5
9
+ }
10
10
  }
@@ -1,34 +1,34 @@
1
- {
2
- "name": "{{PRODUCT_SLUG}}",
3
- "version": "1.0.0",
4
- "description": "{{PRODUCT_NAME}}",
5
- "scripts": {
6
- "dev": "iocd dev",
7
- "test": "iocd test",
8
- "setup": "iocd setup",
9
- "build": "iocd build",
10
- "build-skip-install": "iocd build --skip-install",
11
- "apps-dev": "iocd apps dev",
12
- "components-install": "iocd components install"
13
- },
14
- "keywords": [
15
- "io.connect",
16
- "desktop",
17
- "{{PRODUCT_NAME}}"
18
- ],
19
- "author": "Your Name",
20
- "license": "MIT",
21
- "engines": {
22
- "node": ">=22.0.0"
23
- },
24
- "devDependencies": {
25
- "@interopio/iocd-cli": "latest",
26
- "@electron-forge/core": "^7.9.0",
27
- "@electron-forge/maker-dmg": "^7.9.0",
28
- "@electron-forge/maker-squirrel": "^7.9.0",
29
- "@electron-forge/maker-zip": "^7.9.0",
30
- "@electron-forge/publisher-github": "^7.9.0",
31
- "@electron-forge/publisher-electron-release-server": "^7.9.0",
32
- "@electron-forge/publisher-s3": "^7.9.0"
33
- }
1
+ {
2
+ "name": "{{PRODUCT_SLUG}}",
3
+ "version": "1.0.0",
4
+ "description": "{{PRODUCT_NAME}}",
5
+ "scripts": {
6
+ "dev": "iocd dev",
7
+ "test": "iocd test",
8
+ "setup": "iocd setup",
9
+ "build": "iocd build",
10
+ "build-skip-install": "iocd build --skip-install",
11
+ "apps-dev": "iocd apps dev",
12
+ "components-install": "iocd components install"
13
+ },
14
+ "keywords": [
15
+ "io.connect",
16
+ "desktop",
17
+ "{{PRODUCT_NAME}}"
18
+ ],
19
+ "author": "Your Name",
20
+ "license": "MIT",
21
+ "engines": {
22
+ "node": ">=22.0.0"
23
+ },
24
+ "devDependencies": {
25
+ "@interopio/iocd-cli": "latest",
26
+ "@electron-forge/core": "^7.9.0",
27
+ "@electron-forge/maker-dmg": "^7.9.0",
28
+ "@electron-forge/maker-squirrel": "^7.9.0",
29
+ "@electron-forge/maker-zip": "^7.9.0",
30
+ "@electron-forge/publisher-github": "^7.9.0",
31
+ "@electron-forge/publisher-electron-release-server": "^7.9.0",
32
+ "@electron-forge/publisher-s3": "^7.9.0"
33
+ }
34
34
  }
@@ -1,7 +1,7 @@
1
- {
2
- "name": "ioconnect-desktop",
3
- "displayName": "io.Connect Desktop Project",
4
- "description": "Complete io.Connect Desktop project template with configuration, components, and customizations",
5
- "version": "1.0.0",
6
- "type": "base"
1
+ {
2
+ "name": "ioconnect-desktop",
3
+ "displayName": "io.Connect Desktop Project",
4
+ "description": "Complete io.Connect Desktop project template with configuration, components, and customizations",
5
+ "version": "1.0.0",
6
+ "type": "base"
7
7
  }
@@ -1,3 +1,3 @@
1
- {
2
- "extends": ["../../.eslintrc.json"]
3
- }
1
+ {
2
+ "extends": ["../../.eslintrc.json"]
3
+ }
@@ -1 +1 @@
1
- public/modals-ui/
1
+ public/modals-ui/
@@ -1,57 +1,57 @@
1
- [
2
- {
3
- "title": "io.Connect Launchpad",
4
- "type": "window",
5
- "name": "io-connect-desktop-launchpad",
6
- "shell": true,
7
- "hidden": true,
8
- "details": {
9
- "autoInjectAPI": {
10
- "enabled": true
11
- },
12
- "url": "http://localhost:5178/",
13
- "mode": "frameless",
14
- "showInTaskbar": true,
15
- "hasSizeAreas": true,
16
- "top": 8,
17
- "left": 8,
18
- "width": 400,
19
- "maxWidth": 400,
20
- "minWidth": 400,
21
- "height": 800,
22
- "minHeight": 480,
23
- "transparent": false,
24
- "roundedCorners": true,
25
- "isSticky": false,
26
- "allowClose": false,
27
- "allowMaximize": false,
28
- "allowMinimize": false,
29
- "allowCollapse": false,
30
- "maximizable": false,
31
- "zoom": {
32
- "enabled": false
33
- },
34
- "nativeWindowOpen": "off",
35
- "search": {
36
- "enabled": false
37
- },
38
- "taskbar": {
39
- "allowPin": true
40
- },
41
- "jumpList": {
42
- "enabled": true
43
- },
44
- "logging": true
45
- },
46
- "allowLogging": true,
47
- "autoStart": true,
48
- "allowMultiple": false,
49
- "ignoreSavedLayout": false,
50
- "customProperties": {
51
- "logger": {
52
- "consoleLevel": "trace",
53
- "publishLevel": "error"
54
- }
55
- }
56
- }
1
+ [
2
+ {
3
+ "title": "io.Connect Launchpad",
4
+ "type": "window",
5
+ "name": "io-connect-desktop-launchpad",
6
+ "shell": true,
7
+ "hidden": true,
8
+ "details": {
9
+ "autoInjectAPI": {
10
+ "enabled": true
11
+ },
12
+ "url": "http://localhost:5178/",
13
+ "mode": "frameless",
14
+ "showInTaskbar": true,
15
+ "hasSizeAreas": true,
16
+ "top": 8,
17
+ "left": 8,
18
+ "width": 400,
19
+ "maxWidth": 400,
20
+ "minWidth": 400,
21
+ "height": 800,
22
+ "minHeight": 480,
23
+ "transparent": false,
24
+ "roundedCorners": true,
25
+ "isSticky": false,
26
+ "allowClose": false,
27
+ "allowMaximize": false,
28
+ "allowMinimize": false,
29
+ "allowCollapse": false,
30
+ "maximizable": false,
31
+ "zoom": {
32
+ "enabled": false
33
+ },
34
+ "nativeWindowOpen": "off",
35
+ "search": {
36
+ "enabled": false
37
+ },
38
+ "taskbar": {
39
+ "allowPin": true
40
+ },
41
+ "jumpList": {
42
+ "enabled": true
43
+ },
44
+ "logging": true
45
+ },
46
+ "allowLogging": true,
47
+ "autoStart": true,
48
+ "allowMultiple": false,
49
+ "ignoreSavedLayout": false,
50
+ "customProperties": {
51
+ "logger": {
52
+ "consoleLevel": "trace",
53
+ "publishLevel": "error"
54
+ }
55
+ }
56
+ }
57
57
  ]
@@ -1,3 +1,3 @@
1
- {
2
- "useEmbeddedShell": true
1
+ {
2
+ "useEmbeddedShell": true
3
3
  }
@@ -1,3 +1,3 @@
1
- {
2
- "useEmbeddedShell": false
1
+ {
2
+ "useEmbeddedShell": false
3
3
  }
@@ -1,16 +1,16 @@
1
- <!DOCTYPE html>
2
- <html lang="en" class="dark">
3
- <head>
4
- <meta charset="utf-8" />
5
- <title>Launchpad</title>
6
- <base href="./" />
7
-
8
- <meta name="viewport" content="width=device-width, initial-scale=1" />
9
- <link rel="icon" type="image/x-icon" href="/favicon.ico" />
10
- <link rel="stylesheet" href="/src/styles.css" />
11
- </head>
12
- <body>
13
- <div id="root"></div>
14
- <script type="module" src="/src/main.tsx"></script>
15
- </body>
16
- </html>
1
+ <!DOCTYPE html>
2
+ <html lang="en" class="dark">
3
+ <head>
4
+ <meta charset="utf-8" />
5
+ <title>Launchpad</title>
6
+ <base href="./" />
7
+
8
+ <meta name="viewport" content="width=device-width, initial-scale=1" />
9
+ <link rel="icon" type="image/x-icon" href="/favicon.ico" />
10
+ <link rel="stylesheet" href="/src/styles.css" />
11
+ </head>
12
+ <body>
13
+ <div id="root"></div>
14
+ <script type="module" src="/src/main.tsx"></script>
15
+ </body>
16
+ </html>