Installation
Prebuilt binaries for Linux, Windows, and macOS are on the Releases page. They’re built by CI, not signed with a paid code-signing certificate, so Windows and macOS both show a first-run warning — this is expected, not a sign of a broken or tampered download.
Windows
An unsigned .exe downloaded from a browser gets flagged by SmartScreen with a “Windows protected your PC” dialog. It’s a soft block:
- Click More info.
- Click Run anyway.
macOS
macOS tags anything downloaded via a browser with a quarantine attribute (com.apple.quarantine). Launching it then shows “cannot be opened because the developer cannot be verified” (or, on newer macOS, “is damaged and can’t be opened”). This is also a soft block, not a hard one:
-
Right-click the app → Open → Open Anyway — works on most versions, though Apple has tightened this on newer macOS: sometimes it takes a second step, going to System Settings → Privacy & Security and clicking Open Anyway there after the first failed attempt.
-
Or, more reliably, clear the quarantine attribute directly from Terminal:
xattr -cr /path/to/Smaragd.appThis strips the quarantine flag and sidesteps Gatekeeper’s warning entirely.
Linux
The AppImage needs its executable bit set before it will run:
chmod +x Smaragd-*.AppImage