Hi, the current releases provide Windows setup files, but macOS users currently need to build from source.
I tested packaging Proxima locally on an Intel Mac using electron-builder and was able to produce a working x64 macOS app/ZIP.
It would be useful to add an official macOS Intel release artifact, ideally a .dmg, so Mac users can install Proxima without running npm commands.
Suggested package scripts:
"dist": "electron-builder --mac --x64",
"dist:mac": "electron-builder --mac --x64",
"dist:dmg": "electron-builder --mac dmg --x64"
Notes:
- The app can be built as macOS x64 for Intel Macs.
- The existing `assets/proxima-icon.png` can be used as the app icon.
- For public distribution, signing/notarization may be needed to avoid macOS security warnings.
I can open a PR with the packaging changes if maintainers are open to supporting macOS release artifacts.
Hi, the current releases provide Windows setup files, but macOS users currently need to build from source.
I tested packaging Proxima locally on an Intel Mac using electron-builder and was able to produce a working x64 macOS app/ZIP.
It would be useful to add an official macOS Intel release artifact, ideally a
.dmg, so Mac users can install Proxima without running npm commands.Suggested package scripts: