Quick Start Guide

Get up and running with Project LEUC in less than 5 minutes.

1. Create an Account

First, sign up for a free developer account. This will allow you to register add-ons and manage your releases.

2. Register Your Add-on

Go to your Dashboard and click "Register Add-on".

warning
Important: The Add-on ID you enter must match the id field in your blender_manifest.toml exactly.

3. Download the Module

One file. It is the whole integration — there is nothing to install and no package to add.

downloadaddon_update_checker.py

4. Add to Your Project

Place the file in your add-on's directory. For example:

my_addon/
├── __init__.py
├── blender_manifest.toml
└── addon_update_checker.py  <-- Place here

5. Integrate Code

Add these lines to your __init__.py:

__init__.py
from . import addon_update_checker

def register():
    # ... your existing code ...
    addon_update_checker.register()

def unregister():
    addon_update_checker.unregister()
    # ... your existing code ...

6. Publish Your First Version

Back in your Dashboard, click on your add-on, then "Publish Version". Enter your version number (e.g. 1.0.0).

That's it! Your add-on will now automatically check for updates once per session.