@interopio/iocd-cli 0.0.30 → 0.0.32
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.
- package/README.md +72 -72
- package/dist/schemas/iocd.cli.config.schema.json +4 -4
- package/dist/services/components/stores/github.store.js +0 -2
- package/dist/services/components/stores/github.store.js.map +1 -1
- package/dist/services/components/stores/local.store.js +2 -1
- package/dist/services/components/stores/local.store.js.map +1 -1
- package/dist/services/config/config.service.js +6 -1
- package/dist/services/config/config.service.js.map +1 -1
- package/dist/services/installer/windows.helper.js +11 -46
- package/dist/services/installer/windows.helper.js.map +1 -1
- package/dist/services/license.service.js +14 -14
- package/dist/templates/groups/apps/groups/.gitignore.template +23 -23
- package/dist/templates/groups/apps/groups/README.md +15 -15
- package/dist/templates/groups/apps/groups/config/web-group-dev.json +12 -12
- package/dist/templates/groups/apps/groups/index.html +17 -17
- package/dist/templates/groups/apps/groups/iocd.app.json +19 -19
- package/dist/templates/groups/apps/groups/package.json +25 -25
- package/dist/templates/groups/apps/groups/public/manifest.json +24 -24
- package/dist/templates/groups/apps/groups/public/robots.txt +3 -3
- package/dist/templates/groups/apps/groups/src/App.css +38 -38
- package/dist/templates/groups/apps/groups/src/App.tsx +11 -11
- package/dist/templates/groups/apps/groups/src/index.css +13 -13
- package/dist/templates/groups/apps/groups/src/index.tsx +19 -19
- package/dist/templates/groups/apps/groups/vite.config.ts +8 -8
- package/dist/templates/groups/template.json +12 -12
- package/dist/templates/ioconnect-desktop/.env.example +35 -41
- package/dist/templates/ioconnect-desktop/.github/actions/setup-smctl/action.yml +122 -0
- package/dist/templates/ioconnect-desktop/.github/workflows/build.yml +395 -327
- package/dist/templates/ioconnect-desktop/.gitignore.template +14 -14
- package/dist/templates/ioconnect-desktop/README.md +13 -13
- package/dist/templates/ioconnect-desktop/config/forge.config.js +59 -59
- package/dist/templates/ioconnect-desktop/config/iocd.cli.config.json +42 -42
- package/dist/templates/ioconnect-desktop/config/mac-build/entitlements.mac.plist +44 -44
- package/dist/templates/ioconnect-desktop/config/win-build/template.nuspectemplate +32 -32
- package/dist/templates/ioconnect-desktop/modifications/base/iocd/config/system.json.merge +2 -2
- package/dist/templates/ioconnect-desktop/modifications/base/iocd/config/system.json.merge-autoUpdate +9 -9
- package/dist/templates/ioconnect-desktop/package.json +32 -32
- package/dist/templates/ioconnect-desktop/template.json +6 -6
- package/dist/templates/launchpad/apps/launchpad/.eslintrc.json +3 -3
- package/dist/templates/launchpad/apps/launchpad/.gitignore.template +1 -1
- package/dist/templates/launchpad/apps/launchpad/config/iocd.app.def.dev.json +56 -56
- package/dist/templates/launchpad/apps/launchpad/config/iocd.system.build.json +2 -2
- package/dist/templates/launchpad/apps/launchpad/config/iocd.system.dev.json +2 -2
- package/dist/templates/launchpad/apps/launchpad/index.html +16 -16
- package/dist/templates/launchpad/apps/launchpad/iocd.app.json +27 -27
- package/dist/templates/launchpad/apps/launchpad/package-lock.json +2778 -2778
- package/dist/templates/launchpad/apps/launchpad/package.json +21 -21
- package/dist/templates/launchpad/apps/launchpad/src/app/app.tsx +41 -41
- package/dist/templates/launchpad/apps/launchpad/src/app/constants.ts +27 -27
- package/dist/templates/launchpad/apps/launchpad/src/components/logo.tsx +11 -11
- package/dist/templates/launchpad/apps/launchpad/src/components/main-context-menu.tsx +161 -161
- package/dist/templates/launchpad/apps/launchpad/src/components/notifications-button.tsx +44 -44
- package/dist/templates/launchpad/apps/launchpad/src/main.tsx +6 -6
- package/dist/templates/launchpad/apps/launchpad/src/styles.css +16 -16
- package/dist/templates/launchpad/apps/launchpad/tsconfig.json +10 -10
- package/dist/templates/launchpad/apps/launchpad/vite.config.ts +13 -13
- package/dist/templates/launchpad/template.json +12 -12
- package/dist/templates/splash/apps/splash/assets/styles/style.css +39 -39
- package/dist/templates/splash/apps/splash/iocd.app.json +7 -7
- package/dist/templates/splash/apps/splash/script.js +53 -53
- package/dist/templates/splash/apps/splash/splash.html +25 -25
- package/dist/templates/splash/template.json +12 -12
- package/dist/templates/tests/template.json +8 -8
- package/dist/templates/tests/tests/package-lock.json +7283 -7283
- package/dist/templates/tests/tests/package.json +22 -22
- package/dist/templates/tests/tests/tests/sample.spec.ts +30 -30
- package/dist/templates/tests/tests/tsconfig.json +10 -10
- package/dist/templates/tests/tests/wdio.config.ts +32 -32
- package/dist/templates/workspaces/apps/workspaces/README.md +15 -15
- package/dist/templates/workspaces/apps/workspaces/config/workspaces-dev.json +20 -20
- package/dist/templates/workspaces/apps/workspaces/index.html +17 -17
- package/dist/templates/workspaces/apps/workspaces/iocd.app.json +19 -19
- package/dist/templates/workspaces/apps/workspaces/package.json +29 -29
- package/dist/templates/workspaces/apps/workspaces/public/manifest.json +25 -25
- package/dist/templates/workspaces/apps/workspaces/public/robots.txt +3 -3
- package/dist/templates/workspaces/apps/workspaces/src/App.css +38 -38
- package/dist/templates/workspaces/apps/workspaces/src/App.tsx +102 -102
- package/dist/templates/workspaces/apps/workspaces/src/index.css +3 -3
- package/dist/templates/workspaces/apps/workspaces/src/index.tsx +28 -28
- package/dist/templates/workspaces/apps/workspaces/src/logo.svg +7 -7
- package/dist/templates/workspaces/apps/workspaces/src/reportWebVitals.ts +15 -15
- package/dist/templates/workspaces/apps/workspaces/src/setupTests.ts +5 -5
- package/dist/templates/workspaces/apps/workspaces/vite.config.ts +8 -8
- package/dist/templates/workspaces/template.json +12 -12
- package/package.json +83 -83
- package/scripts/copy-assets.js +15 -15
- package/scripts/delete-dist.js +12 -12
- package/scripts/generate-schema.js +50 -50
- package/scripts/handle-gitignore-templates.js +157 -157
- package/dist/templates/tests/tests/interopio-wdio-iocd-service-0.1.0.tgz +0 -0
|
@@ -1,15 +1,15 @@
|
|
|
1
|
-
config/iocd.license.key
|
|
2
|
-
temp/
|
|
3
|
-
dist/
|
|
4
|
-
node_modules/
|
|
5
|
-
components/
|
|
6
|
-
|
|
7
|
-
# macOS
|
|
8
|
-
.DS_Store
|
|
9
|
-
.AppleDouble
|
|
10
|
-
.LSOverride
|
|
11
|
-
|
|
12
|
-
# Windows
|
|
13
|
-
Thumbs.db
|
|
14
|
-
ehthumbs.db
|
|
1
|
+
config/iocd.license.key
|
|
2
|
+
temp/
|
|
3
|
+
dist/
|
|
4
|
+
node_modules/
|
|
5
|
+
components/
|
|
6
|
+
|
|
7
|
+
# macOS
|
|
8
|
+
.DS_Store
|
|
9
|
+
.AppleDouble
|
|
10
|
+
.LSOverride
|
|
11
|
+
|
|
12
|
+
# Windows
|
|
13
|
+
Thumbs.db
|
|
14
|
+
ehthumbs.db
|
|
15
15
|
Desktop.ini
|
|
@@ -1,13 +1,13 @@
|
|
|
1
|
-
## Github Actions Secrets
|
|
2
|
-
|
|
3
|
-
The workflow uses the following secrets, which you need to set up in your GitHub repository settings:
|
|
4
|
-
|
|
5
|
-
- IOCD_LICENSE_KEY - License key for io.Connect Desktop
|
|
6
|
-
- GITHUB_TOKEN - GitHub token for publishing releases (usually automatically provided by GitHub Actions)
|
|
7
|
-
|
|
8
|
-
|
|
9
|
-
Mac Code Signing (if using certificate-based signing)
|
|
10
|
-
- MAC_IDENTITY - Code signing identity (e.g., "Developer ID Application: Your Name (Team ID)" or SHA-1 hash)
|
|
11
|
-
- MAC_CODE_SIGN_TYPE - certificate (this can be set into the config as well)
|
|
12
|
-
- MAC_CERTIFICATE_PATH - Path to the .p12 or .pfx certificate file
|
|
13
|
-
- MAC_CERTIFICATE_PASSWORD - Password for the certificate
|
|
1
|
+
## Github Actions Secrets
|
|
2
|
+
|
|
3
|
+
The workflow uses the following secrets, which you need to set up in your GitHub repository settings:
|
|
4
|
+
|
|
5
|
+
- IOCD_LICENSE_KEY - License key for io.Connect Desktop
|
|
6
|
+
- GITHUB_TOKEN - GitHub token for publishing releases (usually automatically provided by GitHub Actions)
|
|
7
|
+
|
|
8
|
+
|
|
9
|
+
Mac Code Signing (if using certificate-based signing)
|
|
10
|
+
- MAC_IDENTITY - Code signing identity (e.g., "Developer ID Application: Your Name (Team ID)" or SHA-1 hash)
|
|
11
|
+
- MAC_CODE_SIGN_TYPE - certificate (this can be set into the config as well)
|
|
12
|
+
- MAC_CERTIFICATE_PATH - Path to the .p12 or .pfx certificate file
|
|
13
|
+
- MAC_CERTIFICATE_PASSWORD - Password for the certificate
|
|
@@ -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,43 +1,43 @@
|
|
|
1
|
-
{
|
|
2
|
-
"$schema": "../node_modules/@interopio/iocd-cli/dist/schemas/iocd.cli.config.schema.json",
|
|
3
|
-
"productSlug": "{{PRODUCT_SLUG}}",
|
|
4
|
-
"productName": "{{PRODUCT_NAME}}",
|
|
5
|
-
"productDescription": "io.Connect Desktop is a real-time user interface integration platform.",
|
|
6
|
-
"company": "interop.io",
|
|
7
|
-
"version": "${npm_package_version}",
|
|
8
|
-
"copyright": "Copyright © 2025 interop.io",
|
|
9
|
-
"components": {
|
|
10
|
-
"store": {
|
|
11
|
-
"github": {
|
|
12
|
-
"repo": "interopio/desktop-releases/releases",
|
|
13
|
-
"usePrereleases": true
|
|
14
|
-
}
|
|
15
|
-
},
|
|
16
|
-
"list": {
|
|
17
|
-
"iocd": "latest"
|
|
18
|
-
},
|
|
19
|
-
"excludeFromBuild": []
|
|
20
|
-
},
|
|
21
|
-
"win": {
|
|
22
|
-
"exe": {
|
|
23
|
-
"exeName": "{{PRODUCT_SLUG}}.exe",
|
|
24
|
-
"exeIconPath": "${IOCD_COMPONENT_DIR}/assets/images/logo.ico"
|
|
25
|
-
},
|
|
26
|
-
"codeSign": {
|
|
27
|
-
"type": "${WIN_CODE_SIGN_TYPE}"
|
|
28
|
-
}
|
|
29
|
-
},
|
|
30
|
-
"mac": {
|
|
31
|
-
"appBundleName": "{{PRODUCT_NAME}}.app",
|
|
32
|
-
"appBundleId": "com.interopio.io.connect.desktop",
|
|
33
|
-
"codeSign": {
|
|
34
|
-
"type": "keychain"
|
|
35
|
-
},
|
|
36
|
-
"notarization": {
|
|
37
|
-
"type": "notarytool"
|
|
38
|
-
}
|
|
39
|
-
},
|
|
40
|
-
"license": {
|
|
41
|
-
"copyLicenseToOutput": true
|
|
42
|
-
}
|
|
1
|
+
{
|
|
2
|
+
"$schema": "../node_modules/@interopio/iocd-cli/dist/schemas/iocd.cli.config.schema.json",
|
|
3
|
+
"productSlug": "{{PRODUCT_SLUG}}",
|
|
4
|
+
"productName": "{{PRODUCT_NAME}}",
|
|
5
|
+
"productDescription": "io.Connect Desktop is a real-time user interface integration platform.",
|
|
6
|
+
"company": "interop.io",
|
|
7
|
+
"version": "${npm_package_version}",
|
|
8
|
+
"copyright": "Copyright © 2025 interop.io",
|
|
9
|
+
"components": {
|
|
10
|
+
"store": {
|
|
11
|
+
"github": {
|
|
12
|
+
"repo": "interopio/desktop-releases/releases",
|
|
13
|
+
"usePrereleases": true
|
|
14
|
+
}
|
|
15
|
+
},
|
|
16
|
+
"list": {
|
|
17
|
+
"iocd": "latest"
|
|
18
|
+
},
|
|
19
|
+
"excludeFromBuild": []
|
|
20
|
+
},
|
|
21
|
+
"win": {
|
|
22
|
+
"exe": {
|
|
23
|
+
"exeName": "{{PRODUCT_SLUG}}.exe",
|
|
24
|
+
"exeIconPath": "${IOCD_COMPONENT_DIR}/assets/images/logo.ico"
|
|
25
|
+
},
|
|
26
|
+
"codeSign": {
|
|
27
|
+
"type": "${WIN_CODE_SIGN_TYPE}"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"mac": {
|
|
31
|
+
"appBundleName": "{{PRODUCT_NAME}}.app",
|
|
32
|
+
"appBundleId": "com.interopio.io.connect.desktop",
|
|
33
|
+
"codeSign": {
|
|
34
|
+
"type": "keychain"
|
|
35
|
+
},
|
|
36
|
+
"notarization": {
|
|
37
|
+
"type": "notarytool"
|
|
38
|
+
}
|
|
39
|
+
},
|
|
40
|
+
"license": {
|
|
41
|
+
"copyLicenseToOutput": true
|
|
42
|
+
}
|
|
43
43
|
}
|
|
@@ -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
|
}
|
package/dist/templates/ioconnect-desktop/modifications/base/iocd/config/system.json.merge-autoUpdate
CHANGED
|
@@ -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,33 +1,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-start": "iocd apps start"
|
|
12
|
-
},
|
|
13
|
-
"keywords": [
|
|
14
|
-
"io.connect",
|
|
15
|
-
"desktop",
|
|
16
|
-
"{{PRODUCT_NAME}}"
|
|
17
|
-
],
|
|
18
|
-
"author": "Your Name",
|
|
19
|
-
"license": "MIT",
|
|
20
|
-
"engines": {
|
|
21
|
-
"node": ">=18.0.0"
|
|
22
|
-
},
|
|
23
|
-
"devDependencies": {
|
|
24
|
-
"@interopio/iocd-cli": "latest",
|
|
25
|
-
"@electron-forge/core": "^7.9.0",
|
|
26
|
-
"@electron-forge/maker-dmg": "^7.9.0",
|
|
27
|
-
"@electron-forge/maker-squirrel": "^7.9.0",
|
|
28
|
-
"@electron-forge/maker-zip": "^7.9.0",
|
|
29
|
-
"@electron-forge/publisher-github": "^7.9.0",
|
|
30
|
-
"@electron-forge/publisher-electron-release-server": "^7.9.0",
|
|
31
|
-
"@electron-forge/publisher-s3": "^7.9.0"
|
|
32
|
-
}
|
|
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-start": "iocd apps start"
|
|
12
|
+
},
|
|
13
|
+
"keywords": [
|
|
14
|
+
"io.connect",
|
|
15
|
+
"desktop",
|
|
16
|
+
"{{PRODUCT_NAME}}"
|
|
17
|
+
],
|
|
18
|
+
"author": "Your Name",
|
|
19
|
+
"license": "MIT",
|
|
20
|
+
"engines": {
|
|
21
|
+
"node": ">=18.0.0"
|
|
22
|
+
},
|
|
23
|
+
"devDependencies": {
|
|
24
|
+
"@interopio/iocd-cli": "latest",
|
|
25
|
+
"@electron-forge/core": "^7.9.0",
|
|
26
|
+
"@electron-forge/maker-dmg": "^7.9.0",
|
|
27
|
+
"@electron-forge/maker-squirrel": "^7.9.0",
|
|
28
|
+
"@electron-forge/maker-zip": "^7.9.0",
|
|
29
|
+
"@electron-forge/publisher-github": "^7.9.0",
|
|
30
|
+
"@electron-forge/publisher-electron-release-server": "^7.9.0",
|
|
31
|
+
"@electron-forge/publisher-s3": "^7.9.0"
|
|
32
|
+
}
|
|
33
33
|
}
|
|
@@ -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/
|