mirror of
https://github.com/tinyhumansai/openhuman.git
synced 2026-07-27 21:08:00 +00:00
- 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.
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"
|