Enterprise iOS distribution for the Pegasus flight navigation app.
Install Pegasus
Pegasus is an iOS app used by agricultural pilots to navigate precision aerial imaging flights. It provides real-time GPS tracking, field pass guidance, BLE camera system integration, and flight planning tools.
Open the install page on your iOS device in Safari:
https://ceresimaging.github.io/Pegasus-Deploy/
After installing, trust the developer certificate:
- Go to Settings > General > VPN & Device Management
- Tap Ceres AI, Inc.
- Tap Trust
- Export a new
.ipafrom Xcode (Distribute App > Enterprise) - Replace
Pegasus.ipain the repo root - Update
manifest.plistif the version number changed - If adding a new version, create a JSON file in
releases/and add it toreleases/index.json - Commit and push
Drop a new JSON file in releases/:
{
"version": "2.1.0.1",
"date": "2025-09-03",
"notes": [
"First change",
"Second change"
]
}Then add the filename to releases/index.json. The website loads these dynamically.
Pegasus.ipa # The app binary (not checked into git, use Git LFS if needed)
manifest.plist # iOS OTA install manifest
index.html # Install page (hosted via GitHub Pages)
assets/ # Logo, animation
releases/ # Individual JSON files per version (loaded dynamically)
index.json # Manifest listing all release JSON filenames
2.1.0.0.json
2.0.4.9.json
...
To preview locally (fetch won't work with file:// URLs):
python3 -m http.server 8080
# Open http://localhost:8080