Skip to content

Commit 523ff1b

Browse files
Merge pull request #12 from off-grid-ai/codex/four-platform-downloads
Publish Windows nightly and iOS 0.0.103
2 parents a5f6135 + f4ea9e2 commit 523ff1b

14 files changed

Lines changed: 98 additions & 58 deletions

README.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,12 @@
11
# Off Grid Website
22

3-
Marketing site and documentation for [Off Grid](https://getoffgridai.co) - run powerful
4-
AI models directly on your iPhone or Android phone, no internet required.
3+
Marketing site and documentation for [Off Grid](https://getoffgridai.co) - private AI
4+
that runs on hardware you own, with no cloud or account. Off Grid is available on:
5+
6+
- **iOS** - stable 0.0.103 on the App Store (iOS 17+)
7+
- **Android** - stable on Google Play (Android 10+)
8+
- **macOS** - stable 0.0.38 for Apple Silicon, plus a nightly track
9+
- **Windows** - x64 nightly 0.0.39-beta.66; free core app only, with no stable build or Pro support yet
510

611
Built with [Jekyll](https://jekyllrb.com/) and deployed to **https://getoffgridai.co**
712
via GitHub Pages (see `.github/workflows/pages.yml`). Search is powered by
@@ -18,9 +23,12 @@ The site is then available at http://localhost:4000.
1823

1924
## Structure
2025

21-
- `index.md`, `mission.md`, `vision.md`, `ethos.md`, `early-access.md`, `quick-start.md` - top-level pages
26+
- `index.md`, `download.md`, `mobile.md`, `desktop.md` - product discovery and downloads
27+
- `mobile-releases.md`, `desktop-releases.md` - platform release status and notes
28+
- `mission.md`, `vision.md`, `ethos.md`, `early-access.md`, `quick-start.md` - top-level pages
2229
- `guides/` - setup and how-to guides
2330
- `writing/` - long-form articles
31+
- `llms.txt` - machine-readable product and platform summary
2432
- `_layouts/` - page templates
2533
- `assets/` - CSS, images, icons
2634
- `CNAME` - custom domain (`getoffgridai.co`)

_config.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
title: Off Grid
2-
description: Run powerful AI models directly on your iPhone or Android phone - no internet required, no subscriptions, no cloud. Your data never leaves your device.
2+
description: Run AI on iOS, Android, macOS, and Windows using hardware you own. Local models keep your prompts on your device; remote models connect only to servers you choose.
33
url: https://getoffgridai.co
44
baseurl: ""
55

_layouts/default.html

Lines changed: 5 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -384,18 +384,19 @@
384384
posthog.capture('docs_download_click', { href: href, page: page });
385385
return;
386386
}
387-
// Desktop .dmg downloads (stable + nightly)
388-
if (href.indexOf('.dmg') !== -1) {
387+
// Desktop installers (macOS stable/nightly + Windows nightly)
388+
if (href.indexOf('.dmg') !== -1 || href.indexOf('.exe') !== -1) {
389389
posthog.capture('desktop_download_click', {
390390
href: href,
391391
page: page,
392-
build: href.indexOf('nightly') !== -1 ? 'nightly' : 'stable'
392+
build: href.indexOf('nightly') !== -1 ? 'nightly' : 'stable',
393+
platform: href.indexOf('.exe') !== -1 ? 'windows' : 'macos'
393394
});
394395
return;
395396
}
396397
// Star on GitHub (repo root, not a release/download link)
397398
if (/github\.com\/off-grid-ai\//.test(href) && href.indexOf('/releases') === -1) {
398-
var product = href.indexOf('off-grid-ai-desktop') !== -1 ? 'desktop'
399+
var product = href.indexOf('/OGAD') !== -1 || href.indexOf('off-grid-ai-desktop') !== -1 ? 'desktop'
399400
: (href.indexOf('off-grid-ai-mobile') !== -1 ? 'mobile' : 'github');
400401
posthog.capture(product + '_github_star_click', { href: href, page: page });
401402
return;

desktop-releases.md

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -4,17 +4,18 @@ title: Releases
44
parent: Desktop
55
nav_order: 1
66
permalink: /desktop/releases/
7-
description: Off Grid AI Desktop release notes for macOS - what shipped, and when. Two tracks, stable and nightly, both signed and free.
7+
description: Off Grid AI Desktop releases for macOS and Windows. macOS has stable and nightly builds. The free core app is available for Windows x64 as a nightly pre-release, with no stable build yet.
88
---
99

1010
# Off Grid AI Desktop - releases
1111

12-
Everything that ships to your Mac, in the order it shipped. Two tracks:
12+
Everything that ships to your Mac or Windows PC, in the order it shipped. Platform availability differs:
1313

14-
- **Stable** - the tested, signed and notarized build. This is the [Download for macOS](https://github.com/off-grid-ai/off-grid-ai-desktop/releases/latest/download/OffGrid-latest.dmg) button, and it updates itself in place.
15-
- **Nightly** - the [nightly build](https://github.com/off-grid-ai/off-grid-ai-desktop/releases/download/nightly/OffGrid-nightly.dmg) rebuilds on every change, so you get new features first. Expect rough edges.
14+
- **macOS stable** - version 0.0.38 is tested, signed and notarized for Apple Silicon. [Download macOS stable](https://github.com/off-grid-ai/OGAD/releases/latest/download/OffGrid-latest.dmg).
15+
- **macOS nightly** - the [nightly build](https://github.com/off-grid-ai/OGAD/releases/download/nightly/OffGrid-nightly.dmg) rebuilds on every change, so you get new features first. Expect rough edges.
16+
- **Windows x64 nightly** - version 0.0.39-beta.66 is a pre-release of the free core app. [Download the permanent nightly installer](https://github.com/off-grid-ai/OGAD/releases/download/nightly/OffGrid-nightly-setup.exe) or [read its release notes](https://github.com/off-grid-ai/OGAD/releases/tag/v0.0.39-beta.66). There is no stable Windows build yet, and Pro is not included.
1617

17-
<p class="ea-pricing-note">Current stable: <strong>0.0.38</strong> · Apple Silicon. Full per-build history lives on <a href="https://github.com/off-grid-ai/off-grid-ai-desktop/releases" target="_blank" rel="noopener">GitHub releases</a>.</p>
18+
<p class="ea-pricing-note">Current macOS stable: <strong>0.0.38</strong> - Apple Silicon. Current Windows x64 nightly: <strong>0.0.39-beta.66</strong> - free core app, pre-release. Full per-build history lives on <a href="https://github.com/off-grid-ai/OGAD/releases" target="_blank" rel="noopener">GitHub releases</a>.</p>
1819

1920
---
2021

@@ -33,6 +34,6 @@ See the full tour on the [Desktop page]({{ '/desktop/' | relative_url }}).
3334

3435
## How updates reach you
3536

36-
New work lands on **nightly** the moment it's built, then graduates to **stable** once it's tested. The stable app updates itself in place, so you rarely have to think about it. Want to be first? Install the nightly and you're on the newest build every day.
37+
New work lands on **nightly** the moment it's built. On macOS, tested work graduates to **stable**, and the stable app updates itself in place. On Windows, nightly is the only available track today. Install it if you are comfortable using a pre-release that can have rough edges.
3738

38-
<p class="ea-pricing-note">Every version, with full notes and downloads, is on <a href="https://github.com/off-grid-ai/off-grid-ai-desktop/releases" target="_blank" rel="noopener">GitHub releases</a>.</p>
39+
<p class="ea-pricing-note">Every version, with full notes and downloads, is on <a href="https://github.com/off-grid-ai/OGAD/releases" target="_blank" rel="noopener">GitHub releases</a>.</p>

desktop.md

Lines changed: 23 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -4,25 +4,26 @@ title: Desktop
44
nav_order: 4
55
nav_group: Products
66
has_children: true
7-
description: Off Grid AI Desktop is a private, local AI studio for macOS - chat, vision, image, and voice, running on your own hardware. Free and open source. No cloud, no account, no API key.
7+
description: Off Grid AI Desktop is a private, local AI studio for macOS and Windows - chat, vision, image, and voice, running on your own hardware. Free and open source. No cloud, no account, no API key.
88
---
99

1010
<div class="early-access-hero">
11-
<div class="early-access-badge">Off Grid AI Desktop · macOS</div>
12-
<h1>A private AI<br>that runs on your Mac.</h1>
13-
<p class="early-access-sub">Chat, vision, image, and voice, all running on your own hardware. No account, no API key, nothing you type ever leaves your Mac. Free and open source.</p>
11+
<div class="early-access-badge">Off Grid AI Desktop - macOS + Windows</div>
12+
<h1>A private AI<br>that runs on your computer.</h1>
13+
<p class="early-access-sub">Chat, vision, image, and voice, all running on your own hardware. No account, no API key, nothing you type ever leaves your computer. Free and open source.</p>
1414
</div>
1515

1616
<div class="hero-buttons">
17-
<a href="https://github.com/off-grid-ai/off-grid-ai-desktop/releases/latest/download/OffGrid-latest.dmg" class="btn btn-green">Download for macOS</a>
18-
<a href="https://github.com/off-grid-ai/off-grid-ai-desktop" target="_blank" rel="noopener" class="btn btn-outline">Star on GitHub</a>
17+
<a href="https://github.com/off-grid-ai/OGAD/releases/latest/download/OffGrid-latest.dmg" class="btn btn-green">Download macOS stable</a>
18+
<a href="https://github.com/off-grid-ai/OGAD/releases/download/nightly/OffGrid-nightly-setup.exe" class="btn btn-outline">Download Windows x64 nightly</a>
19+
<a href="https://github.com/off-grid-ai/OGAD" target="_blank" rel="noopener" class="btn btn-outline">Star on GitHub</a>
1920
</div>
2021

21-
<p class="ea-pricing-note" style="text-align:center;">macOS, Apple Silicon · signed and notarized · free and open source</p>
22+
<p class="ea-pricing-note" style="text-align:center;">macOS stable 0.0.38: Apple Silicon, signed and notarized. Windows x64 nightly 0.0.39-beta.66: free core app, pre-release, expect rough edges. There is no stable Windows build yet.</p>
2223

2324
<p class="ea-pricing-note" style="text-align:center;">15-30 tokens a second on a flagship Mac · 100,000+ downloads · 2,500+ GitHub stars</p>
2425

25-
<a href="https://github.com/off-grid-ai/off-grid-ai-desktop/releases/latest/download/OffGrid-latest.dmg" style="display:block"><img class="hero-cover" src="{{ '/assets/img/desktop-chat.png' | relative_url }}" alt="Off Grid AI Desktop running a private chat on macOS, models listed down the left, a streaming reply in the center." width="1760" height="983" loading="eager"></a>
26+
<a href="https://github.com/off-grid-ai/OGAD/releases/latest/download/OffGrid-latest.dmg" style="display:block"><img class="hero-cover" src="{{ '/assets/img/desktop-chat.png' | relative_url }}" alt="Off Grid AI Desktop running a private chat on macOS, models listed down the left, a streaming reply in the center." width="1760" height="983" loading="eager"></a>
2627

2728
---
2829

@@ -105,14 +106,15 @@ A full AI studio on your own machine. Everything a cloud chat app does, without
105106
</div>
106107
</div>
107108

108-
<a href="https://github.com/off-grid-ai/off-grid-ai-desktop/releases/latest/download/OffGrid-latest.dmg" style="display:block"><img class="hero-cover" src="{{ '/assets/img/desktop-models.png' | relative_url }}" alt="Off Grid AI Desktop model library on macOS - a catalog of local models with sizes, plus Hugging Face search." width="1760" height="983" loading="lazy"></a>
109+
<a href="https://github.com/off-grid-ai/OGAD/releases/latest/download/OffGrid-latest.dmg" style="display:block"><img class="hero-cover" src="{{ '/assets/img/desktop-models.png' | relative_url }}" alt="Off Grid AI Desktop model library on macOS - a catalog of local models with sizes, plus Hugging Face search." width="1760" height="983" loading="lazy"></a>
109110
<p class="ea-pricing-note" style="text-align:center;margin-top:-16px;">Run any model - a curated catalog plus direct Hugging Face search, all local.</p>
110111

111112
<div class="hero-buttons">
112-
<a href="https://github.com/off-grid-ai/off-grid-ai-desktop/releases/latest/download/OffGrid-latest.dmg" class="btn btn-green">Download for macOS</a>
113+
<a href="https://github.com/off-grid-ai/OGAD/releases/latest/download/OffGrid-latest.dmg" class="btn btn-green">Download macOS stable</a>
114+
<a href="https://github.com/off-grid-ai/OGAD/releases/download/nightly/OffGrid-nightly-setup.exe" class="btn btn-outline">Download Windows x64 nightly</a>
113115
</div>
114116

115-
<p class="ea-pricing-note" style="text-align:center;">Want new features first? <a href="https://github.com/off-grid-ai/off-grid-ai-desktop/releases/download/nightly/OffGrid-nightly.dmg">Get the nightly build</a> · pre-release, updated on every change, expect rough edges</p>
117+
<p class="ea-pricing-note" style="text-align:center;">Want new features first on macOS? <a href="https://github.com/off-grid-ai/OGAD/releases/download/nightly/OffGrid-nightly.dmg">Get the macOS nightly</a>. On Windows, <a href="https://github.com/off-grid-ai/OGAD/releases/tag/v0.0.39-beta.66">0.0.39-beta.66</a> is the current pre-release. Nightly builds can have rough edges.</p>
116118

117119
---
118120

@@ -123,8 +125,9 @@ Your data never leaves your device, by architecture. No cloud inference, no acco
123125
100,000+ downloads across the apps, 2,500+ GitHub stars, a 500-strong community.
124126

125127
<div class="hero-buttons">
126-
<a href="https://github.com/off-grid-ai/off-grid-ai-desktop/releases/latest/download/OffGrid-latest.dmg" class="btn btn-green">Download for macOS</a>
127-
<a href="https://github.com/off-grid-ai/off-grid-ai-desktop" target="_blank" rel="noopener" class="btn btn-outline">Star on GitHub</a>
128+
<a href="https://github.com/off-grid-ai/OGAD/releases/latest/download/OffGrid-latest.dmg" class="btn btn-green">Download macOS stable</a>
129+
<a href="https://github.com/off-grid-ai/OGAD/releases/download/nightly/OffGrid-nightly-setup.exe" class="btn btn-outline">Download Windows x64 nightly</a>
130+
<a href="https://github.com/off-grid-ai/OGAD" target="_blank" rel="noopener" class="btn btn-outline">Star on GitHub</a>
128131
</div>
129132

130133
---
@@ -150,6 +153,8 @@ Run it headless with `--server-only` for a homelab box, a server, or wiring loca
150153

151154
The free app runs models. Pro adds the always-on layer that sees your work, remembers it, reflects it back, and acts with your approval. You forget what you did last Tuesday. Your Mac does not. Off Grid keeps a quiet record of your work you can actually ask, and it hands you what you need before you go looking. Opt-in, with a recording indicator, and nothing leaves the device.
152155

156+
<p class="ea-pricing-note">Pro is available on macOS only today. It is not included in the Windows nightly.</p>
157+
153158
<a href="{{ '/pro' | relative_url }}" style="display:block"><img class="hero-cover" src="{{ '/assets/img/pro-day.png' | relative_url }}" alt="Off Grid AI Pro showing Your Day - a journal, to-do list, and timeline of the day, on macOS." width="1760" height="797" loading="lazy"></a>
154159
<p class="ea-pricing-note" style="text-align:center;margin-top:-16px;">Your Day - the brief a chief of staff would hand you each morning.</p>
155160

@@ -262,15 +267,16 @@ The free app runs models. Pro adds the always-on layer that sees your work, reme
262267

263268
**Which Macs?** macOS on Apple Silicon, M1 and later. Signed and notarized.
264269

270+
**What about Windows?** The free core app is available for Windows x64 as a nightly pre-release. The current release is 0.0.39-beta.66. There is no stable Windows build yet, and Pro is not included.
271+
265272
**Does it phone home?** No cloud inference, no account, no API key. Capture is opt-in, with a visible indicator.
266273

267274
**What models can I run?** Qwen, Gemma, Llama, Mistral, and any GGUF from Hugging Face.
268275

269276
**What does Pro cost?** ${{ site.data.pricing.lifetime }} once today, yours forever with no renewal - climbing toward ${{ site.data.pricing.top_lifetime }} as we grow, and the tier you join at is the price you hold. Not ready to commit? Pay ${{ site.data.pricing.price }}/{{ site.data.pricing.period }} yearly instead, climbing toward ${{ site.data.pricing.top_price }}/{{ site.data.pricing.period }}. One license covers {{ site.data.pricing.devices }} devices.
270277

271278
<div class="hero-buttons">
272-
<a href="https://github.com/off-grid-ai/off-grid-ai-desktop/releases/latest/download/OffGrid-latest.dmg" class="btn btn-green">Download for macOS</a>
273-
<a href="https://github.com/off-grid-ai/off-grid-ai-desktop" target="_blank" rel="noopener" class="btn btn-outline">Star on GitHub</a>
279+
<a href="https://github.com/off-grid-ai/OGAD/releases/latest/download/OffGrid-latest.dmg" class="btn btn-green">Download macOS stable</a>
280+
<a href="https://github.com/off-grid-ai/OGAD/releases/download/nightly/OffGrid-nightly-setup.exe" class="btn btn-outline">Download Windows x64 nightly</a>
281+
<a href="https://github.com/off-grid-ai/OGAD" target="_blank" rel="noopener" class="btn btn-outline">Star on GitHub</a>
274282
</div>
275-
</content>
276-
</invoke>

docs/GAPS_BACKLOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,12 @@ _None._
88

99
## Resolved
1010

11+
- **Visual browser QA was incomplete for the four-platform rollout** (2026-07-17). Rendered and inspected `/`, `/download/`, `/desktop/`, `/desktop/releases/`, `/mobile/`, and `/mobile/releases/` at 1440x1000 and 390x844 after the final production build. Platform labels, release states, download controls, headings, and requirements are readable and unclipped at both widths, with no horizontal overflow in the changed journey.
12+
13+
- **Platform availability was not represented consistently across the main customer journey** (2026-07-17). Home, Download, Desktop, Desktop Releases, Mobile, Mobile Releases, analytics metadata, site metadata, and `llms.txt` now present iOS, Android, macOS, and Windows. The copy distinguishes macOS stable/nightly from Windows x64 nightly-only and states that Windows has no stable build yet. Verified with a production Jekyll build, Pagefind indexing, rendered assertions for six routes plus `llms.txt`, and GitHub release APIs: macOS stable `v0.0.38`, Windows pre-release `v0.0.39-beta.66`, and both permanent nightly assets exist and redirect.
14+
15+
- **Mobile minimum-version copy conflicted across download, product, and guide pages** (2026-07-17). Standardized the published requirements to iOS 17+ and Android 10+ across the affected customer journey. Verified iOS 0.0.103 and minimum iOS 17.0 through Apple's lookup API, then rebuilt the production site and asserted the rendered routes.
16+
1117
- **Landing page had no product screenshots** (2026-07-06). Pulled real app shots from `desktop/docs/screenshots/`, resized to 1760px wide and (for the Pro shots) top-cropped to trim empty background. Wired 5 into `desktop.md` via `.hero-cover`: chat (hero), artifacts (free studio), and Day / Reflect / Entities (Pro section, each captioned). Verified rendered and copied into `_site/assets/img/` by screenshot.
1218

1319
- **Download / Star buttons fired no named analytics events** (2026-07-06). Only mobile app-store links were tracked (`docs_download_click`). Added `desktop_download_click` (with `build: stable|nightly`) and `github_star_click` to the outbound-click handler in `_layouts/default.html`. Verified present in the built `_site/desktop/index.html`.

0 commit comments

Comments
 (0)