Add desktop app download links to README and fix build config

- Add download table for macOS and Windows installers in README
- Add desktop app build instructions to Quick Start section
- Move electron-builder output to release/ to avoid Vite dist conflicts
- Add electron:build:all script to build all platforms in one pass
This commit is contained in:
Anil Matcha 2026-03-18 12:00:00 +05:30
parent 6e0b18cd22
commit 9d0bc2580e
2 changed files with 39 additions and 1 deletions

View file

@ -2,6 +2,23 @@
> **The free, open-source alternative to Higgsfield AI.** Generate AI images and videos using 200+ state-of-the-art models — without the closed ecosystem or subscription fees.
## ⬇️ Download Desktop App
One-click installers — no Node.js or terminal required.
| Platform | Download |
|---|---|
| macOS Apple Silicon (M1/M2/M3/M4) | [Open Higgsfield AI-1.0.0-arm64.dmg](https://github.com/Anil-matcha/Open-Higgsfield-AI/releases/download/v1.0.0/Open.Higgsfield.AI-1.0.0-arm64.dmg) |
| macOS Intel (x64) | [Open Higgsfield AI-1.0.0.dmg](https://github.com/Anil-matcha/Open-Higgsfield-AI/releases/download/v1.0.0/Open.Higgsfield.AI-1.0.0.dmg) |
| Windows (x64 + ARM64) | [Open Higgsfield AI Setup 1.0.0.exe](https://github.com/Anil-matcha/Open-Higgsfield-AI/releases/download/v1.0.0/Open.Higgsfield.AI.Setup.1.0.0.exe) |
> **macOS:** If you see an "unidentified developer" warning, right-click the app → **Open**.
> **Windows:** If SmartScreen warns, click **More info → Run anyway**.
All releases: [github.com/Anil-matcha/Open-Higgsfield-AI/releases](https://github.com/Anil-matcha/Open-Higgsfield-AI/releases)
---
Open Higgsfield AI is an open-source AI image, video, cinema, and lip sync studio that brings Higgsfield-style creative workflows to everyone. Powered by [Muapi.ai](https://muapi.ai), it supports text-to-image, image-to-image, text-to-video, image-to-video, and audio-driven lip sync generation across models like Flux, Nano Banana, Midjourney, Kling, Sora, Veo, Seedream, Infinite Talk, LTX Lipsync, Wan 2.2, and more — all from a sleek, modern interface you can self-host and customize.
**Why Open Higgsfield AI instead of Higgsfield AI?**
@ -184,6 +201,23 @@ npm run build
npm run preview
```
### Desktop App Build
Build native desktop apps with Electron:
```bash
# macOS (DMG — Intel + Apple Silicon)
npm run electron:build
# Windows (NSIS installer — x64 + ARM64)
npm run electron:build:win
# Both platforms in one pass
npm run electron:build:all
```
Installers are output to the `release/` folder. Pre-built binaries are also available on the [Releases page](https://github.com/Anil-matcha/Open-Higgsfield-AI/releases).
## 🏗️ Architecture
```

View file

@ -12,12 +12,16 @@
"electron:dev": "vite build && electron .",
"electron:build": "vite build && electron-builder --mac",
"electron:build:dmg": "vite build && electron-builder --mac dmg",
"electron:build:win": "vite build && electron-builder --win"
"electron:build:win": "vite build && electron-builder --win",
"electron:build:all": "vite build && electron-builder --mac --win"
},
"build": {
"appId": "ai.higgsfield.open",
"productName": "Open Higgsfield AI",
"copyright": "Copyright © 2025",
"directories": {
"output": "release"
},
"files": [
"dist/**/*",
"electron/**/*"