Features

From the manifest on diskto a notification insomeone else's viewport.

A complete update pipeline for Blender add-ons. You publish a version; every client that has your add-on installed finds out on its next check.

Delivery

Every installed add-on, one round trip

The master add-on batches the whole library into a single request on startup. One round trip, not one per add-on, and it runs on a background thread so Blender never waits on the network.

Ownership

An add-on ID nobody else can publish under

Claim your ID once and it is bound to your account. If someone contests it, evidence goes to review rather than to whoever registered first. Verified add-ons carry a badge users can check.

Adoption

Which build people are actually running

Version spread across your installed base, and how quickly a release is taken up. Enough to know when an old branch can finally be dropped.

Support

A bug report that finds you, not the other way around

Reporters file straight from Blender — traceback pasted, auto-redacted, sent. You get a ticket to triage from the dashboard, duplicates to merge into one thread, and a message in Discord the moment it lands, if you have wired up a webhook.

The pipeline

Five steps between your commit and their viewport.

01

blender_manifest.toml

Version is read from the manifest on disk — the actual source of truth, not a constant someone forgot to bump.

02

Batched check

Every installed ID and version goes out together, on an interval you control. Daily by default.

03

Server-side compare

Semantic comparison happens in the registry. Your add-on never reimplements semver.

04

Differential patch

Where you have uploaded a from→to patch, the client pulls only the delta, straight from the CDN.

05

Notification

Changelog attached, criticality flagged, one click to the download. Nothing installs itself.

Scroll to advance
Everything else

The rest of what is in the box.

For your add-on

Drop-in Python module

One file. Async checks, no blocking, no third-party dependencies.

Plain REST API

One endpoint returns version, changelog, and update URL.

Manifest native

Reads blender_manifest.toml directly.

Interval control

Decide how often clients check. Daily by default.

Ticket-based triage

No account for the reporter — a ticket they can poll for your status and note.

Discord alerts

Wire a webhook once; every new report pings the channel with the excerpt, ticket, and versions.

For your release

Changelogs

Users see what changed before deciding to update.

Critical flag

Mark a release users should not skip.

Differential patches

Ship a delta instead of the whole archive.

Verified badge

Prove an add-on is genuinely yours.

For your account

Scoped API keys

Revoke and regenerate from the dashboard at any time.

Community fallback

Unregistered add-ons still get version tracking from independent sources.

No end-user tracking

No personal data is collected from the people running your add-on.

Free

No tiers, no seat counts, no card on file.

Start

Register your first add-on.

Free, and it takes about two minutes.