You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Adds a channel selector to both SDKs and the release/Docker layout so users can pick
the Chromium base:
- stable -> Fortress on Chromium 149.0.7827.232 (the recommended default; matches the
Chrome version most real users run, so it blends in best)
- latest -> Chromium 151.0.7908.0 (newest engine)
Python: Fortress(channel="stable"|"latest") or FORTRESS_CHANNEL; caches per release tag.
Node: Fortress.launch({channel}) / CHANNELS export; same env override.
Docker: tilion/fortress:149 and :151. README documents both. SHA-verified downloads unchanged.
> The SDK ships the compiled build **plus `patches/`**, so you can rebuild the engine yourself and verify every surface correction against the source. Downloads are SHA-256-verified against the release `SHA256SUMS` automatically.
190
190
191
+
### Versions
192
+
193
+
Fortress ships on **two Chromium bases** — pick your trade-off between blend-in and currency:
194
+
195
+
| Channel | Chromium | When to use |
196
+
|---|---|---|
197
+
|**`stable`***(default)*|**149**| Recommended — matches the Chrome version the mass of real users run, so it blends in best |
198
+
|**`latest`**|**151**| Newest engine (reports a version slightly ahead of stable) |
199
+
200
+
```python
201
+
Fortress().start() # Python: stable (149) by default
202
+
Fortress(channel="latest").start() # opt into 151
203
+
```
204
+
```js
205
+
awaitFortress.launch(); // Node: stable (149) by default
206
+
awaitFortress.launch({ channel:"latest" });
207
+
```
208
+
```bash
209
+
docker run --rm -p 9222:9222 tilion/fortress:149 # or :151
210
+
# or set FORTRESS_CHANNEL=latest for either SDK
211
+
```
212
+
213
+
Native binaries: **Linux x64** (both versions) + **Windows x64** (151); Windows-149 and macOS run via the Docker image.
214
+
191
215
### Drop it into your AI agent
192
216
193
217
Fortress is the browser your agent drives: raw CDP on `:9222`, no stealth plugins to wire up. There are two ways in.
0 commit comments