mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-30 23:14:37 +00:00
* added gitbooks * add: create TODO.md for upcoming features and improvements - Documented tasks including skill downloads, JSON-RPC state management, and custom MCP server integration. - Outlined payment flow integration and various skill enhancements. - Added checklist for upcoming Android version and background processes. * refactor: update ESLint configuration and adjust module import path - Removed 'deploy/**' from ESLint ignore patterns to ensure better linting coverage. - Changed the module import path in the GitHub Actions workflow from 'deploy/prepareTauriConfig.js' to 'scripts/prepareTauriConfig.js' for improved organization.
15 lines
383 B
Bash
15 lines
383 B
Bash
#!/usr/bin/env bash
|
|
|
|
create-dmg \
|
|
--volname "AlphaHuman installer" \
|
|
--volicon "./src-tauri/icons/icon.icns" \
|
|
--background "./src-tauri/images/background-dmg.svg" \
|
|
--window-size 540 380 \
|
|
--icon-size 100 \
|
|
--icon "AlphaHuman.app" 138 225 \
|
|
--hide-extension "AlphaHuman.app" \
|
|
--app-drop-link 402 225 \
|
|
--no-internet-enable \
|
|
"$1" \
|
|
"$2"
|