diff --git a/CLAUDE.md b/CLAUDE.md index f499c6b..814f271 100644 --- a/CLAUDE.md +++ b/CLAUDE.md @@ -91,4 +91,4 @@ Release artifacts go to GitHub Releases, not the repo. - Windows x64: 🚧 In development - Linux x86_64: ✅ Working (scripts + live USB mode) - Linux ARM64: ✅ Working (scripts) -- Mac Intel (x64): ❌ Not yet +- Mac Intel (x64): ✅ Working(portable 需先运行 setup.sh 下载 node-mac-x64) diff --git a/portable/Mac-Start.command b/portable/Mac-Start.command index b96a1e9..e996841 100755 --- a/portable/Mac-Start.command +++ b/portable/Mac-Start.command @@ -30,9 +30,11 @@ ARCH=$(uname -m) if [ "$ARCH" = "arm64" ]; then NODE_DIR="$APP_DIR/runtime/node-mac-arm64" echo -e " ${GREEN}Apple Silicon (M series)${NC}" +elif [ "$ARCH" = "x86_64" ]; then + NODE_DIR="$APP_DIR/runtime/node-mac-x64" + echo -e " ${GREEN}Intel Mac (x64)${NC}" else - echo -e " ${RED}This version only supports Apple Silicon (M1-M4).${NC}" - echo -e " ${RED}Intel Mac is not supported in this release.${NC}" + echo -e " ${RED}Unsupported architecture: $ARCH${NC}" echo "" read -p " Press Enter to exit..." exit 1