Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/DOCUMENTATION.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

> Access your Tailscale network directly from your browser. No system VPN required.

**Version:** 0.1.10 (native host) | Manifest V3
**Version:** 0.1.11 (native host) | Manifest V3
**Browsers:** Chrome, Firefox
**Platforms:** macOS (amd64, arm64), Linux (amd64), Windows (amd64)
**License:** MIT
Expand Down Expand Up @@ -329,7 +329,7 @@ Defined in `packages/shared/src/constants.ts`:
| `RECONNECT_BASE_MS` | `1000` | Reconnection backoff base |
| `RECONNECT_MAX_MS` | `30000` | Reconnection backoff ceiling |
| `ADMIN_URL` | `https://login.tailscale.com/admin` | Tailscale admin console |
| `EXPECTED_HOST_VERSION` | `0.1.10` | Expected native host version (major.minor match required) |
| `EXPECTED_HOST_VERSION` | `0.1.11` | Expected native host version (major.minor match required) |


---
Expand Down
2 changes: 1 addition & 1 deletion packages/extension/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tailchrome/extension",
"version": "0.1.10",
"version": "0.1.11",
"private": true,
"type": "module",
"scripts": {
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@tailchrome/shared",
"version": "0.1.10",
"version": "0.1.11",
"private": true,
"scripts": {
"typecheck": "tsc --noEmit",
Expand Down
2 changes: 1 addition & 1 deletion packages/shared/src/constants.ts
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ export const RECONNECT_MAX_MS = 30_000;
export const ADMIN_URL = "https://login.tailscale.com/admin";
/** Tailchrome project on GitHub (footer, diagnostics toast). */
export const TAILCHROME_PROJECT_URL = "https://github.com/dantraynor/tailchrome";
export const EXPECTED_HOST_VERSION = "0.1.10";
export const EXPECTED_HOST_VERSION = "0.1.11";
2 changes: 1 addition & 1 deletion scripts/e2e/fixtures.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -202,7 +202,7 @@ export function makeControl(overrides = {}) {
const status = overrides.status ?? makeRunningState();
return {
proxyPort: 1055,
hostVersion: "0.1.10",
hostVersion: "0.1.11",
supportsNetcheck: true,
supportsPingPeer: true,
supportsLogin: true,
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e/native-host.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ function mockSource(baseUrl, initialControl) {
procRunning: {
port: control.proxyPort ?? 1055,
pid: 1,
version: control.hostVersion ?? "0.1.10",
version: control.hostVersion ?? "0.1.11",
error: control.startupError,
supportsNetcheck: control.supportsNetcheck !== false,
supportsPingPeer: control.supportsPingPeer !== false,
Expand Down
2 changes: 1 addition & 1 deletion scripts/e2e/scenarios/connected-dashboard.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ export async function run({ openPopup }) {
await expectText(page, "example.ts.net");
await expectText(page, "100.64.0.1");
await expectText(page, "browser-node");
await expectText(page, "Native helper 0.1.10");
await expectText(page, "Native helper 0.1.11");
await expectText(page, "Network lock is enabled");
await expectText(page, "router");
await expectText(page, "laptop");
Expand Down
Loading