Skip to content

Releases: EdwinZhanCN/Lumen-SDK

Release v1.3.2

Choose a tag to compare

@github-actions github-actions released this 18 Jul 09:59
9514d11

Lumen Host Broker v1.3.2

lumen-hostd discovers Lumen inference nodes on the LAN via mDNS and
republishes them over /v1/nodes/watch for applications that cannot
perform local-network discovery themselves (e.g. inside Docker Desktop).
It is a discovery-only control-plane process — it never proxies
inference payloads.

🚀 Installation

Download and install

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.2/lumen-hostd-v1.3.2-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true

# Windows AMD64: download lumen-hostd-v1.3.2-windows-amd64.zip and unzip

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true

Run as a background service

lumen-hostd install   # registers a per-user background service (LaunchAgent / systemd user unit / Task Scheduler) and starts it
lumen-hostd status    # check install/running state
lumen-hostd doctor    # diagnose discovery and reachability issues
lumen-hostd uninstall # remove the background service

Or run it in the foreground (e.g. in a container): lumen-hostd serve.


📖 Documentation

What's Changed

Full Changelog: v1.3.1...v1.3.2

Release v1.3.1

Choose a tag to compare

@github-actions github-actions released this 11 Jul 01:32
d3046ac

Lumen Host Broker v1.3.1

lumen-hostd discovers Lumen inference nodes on the LAN via mDNS and
republishes them over /v1/nodes/watch for applications that cannot
perform local-network discovery themselves (e.g. inside Docker Desktop).
It is a discovery-only control-plane process — it never proxies
inference payloads.

🚀 Installation

Download and install

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.1/lumen-hostd-v1.3.1-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.1/lumen-hostd-v1.3.1-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumen-hostd /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.1/lumen-hostd-v1.3.1-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.1/lumen-hostd-v1.3.1-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true
sudo install -m 0755 lumen-hostd /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumen-hostd 2>/dev/null || true

# Windows AMD64: download lumen-hostd-v1.3.1-windows-amd64.zip and unzip

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumen-hostd 2>/dev/null || true

Run as a background service

lumen-hostd install   # registers a per-user background service (LaunchAgent / systemd user unit / Task Scheduler) and starts it
lumen-hostd status    # check install/running state
lumen-hostd doctor    # diagnose discovery and reachability issues
lumen-hostd uninstall # remove the background service

Or run it in the foreground (e.g. in a container): lumen-hostd serve.


📖 Documentation

Full Changelog: v1.3.0...v1.3.1

Release v1.3.0

Choose a tag to compare

@github-actions github-actions released this 04 Jul 22:42
6727583

Lumen Gateway v1.3.0

🖥️ Lumen Gateway (GUI)

Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.

macOS Installation (Universal)

  1. Download lumen-gateway-v1.3.0-darwin-universal.zip.
  2. Unzip the file and move Lumen Gateway.app to your /Applications folder.
  3. Right-click the app and choose Open (or run xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app" to bypass Gatekeeper).

Windows Installation (AMD64)

  1. Download Lumen-Gateway-v1.3.0-windows-amd64.exe.
  2. Double-click to run. The gateway will run in your system tray on port 5866 (configurable).

🚀 Installation

Download Binaries

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.0/lumengateway-v1.3.0-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumengatewayd lumengateway /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.0/lumengateway-v1.3.0-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumengatewayd lumengateway /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.0/lumengateway-v1.3.0-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumengatewayd lumengateway 2>/dev/null || true
sudo install -m 0755 lumengatewayd lumengateway /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumengatewayd /usr/local/bin/lumengateway 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.3.0/lumengateway-v1.3.0-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumengatewayd lumengateway 2>/dev/null || true
sudo install -m 0755 lumengatewayd lumengateway /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumengatewayd /usr/local/bin/lumengateway 2>/dev/null || true

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumengatewayd lumengateway 2>/dev/null || true

📋 Changes

  • fix: new release 1.3.0 for Lumilio Photos (6727583)

📖 Documentation

Release v1.2.9

Choose a tag to compare

@github-actions github-actions released this 24 Jun 03:57
49a2896

Lumen Hub v1.2.9

🖥️ Lumen Gateway (GUI)

Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.

macOS Installation (Universal)

  1. Download lumen-gateway-v1.2.9-darwin-universal.zip.
  2. Unzip the file and move Lumen Gateway.app to your /Applications folder.
  3. Right-click the app and choose Open (or run xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app" to bypass Gatekeeper).

Windows Installation (AMD64)

  1. Download Lumen-Gateway-v1.2.9-windows-amd64.exe.
  2. Double-click to run. The gateway will run in your system tray on port 5866 (configurable).

🚀 Installation

Download Binaries

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.9/lumenhub-v1.2.9-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.9/lumenhub-v1.2.9-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.9/lumenhub-v1.2.9-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.9/lumenhub-v1.2.9-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true

📋 Changes

  • feat: new EmbeddingV1 schema, for score (49a2896)

📖 Documentation

Release v1.2.8

Choose a tag to compare

@github-actions github-actions released this 12 Jun 23:00
3705d6f

Lumen Hub v1.2.8

🖥️ Lumen Gateway (GUI)

Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.

macOS Installation (Universal)

  1. Download lumen-gateway-v1.2.8-darwin-universal.zip.
  2. Unzip the file and move Lumen Gateway.app to your /Applications folder.
  3. Right-click the app and choose Open (or run xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app" to bypass Gatekeeper).

Windows Installation (AMD64)

  1. Download Lumen-Gateway-v1.2.8-windows-amd64.exe.
  2. Double-click to run. The gateway will run in your system tray on port 5866 (configurable).

🚀 Installation

Download Binaries

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.8/lumenhub-v1.2.8-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.8/lumenhub-v1.2.8-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.8/lumenhub-v1.2.8-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.8/lumenhub-v1.2.8-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true

📋 Changes


📖 Documentation

Release v1.2.7

Choose a tag to compare

@github-actions github-actions released this 11 Jun 15:23
8e17541

Lumen Hub v1.2.7

🖥️ Lumen Gateway (GUI)

Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.

macOS Installation (Universal)

  1. Download lumen-gateway-v1.2.7-darwin-universal.zip.
  2. Unzip the file and move Lumen Gateway.app to your /Applications folder.
  3. Right-click the app and choose Open (or run xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app" to bypass Gatekeeper).

Windows Installation (AMD64)

  1. Download Lumen-Gateway-v1.2.7-windows-amd64.exe.
  2. Double-click to run. The gateway will run in your system tray on port 5866 (configurable).

🚀 Installation

Download Binaries

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.7/lumenhub-v1.2.7-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.7/lumenhub-v1.2.7-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.7/lumenhub-v1.2.7-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.7/lumenhub-v1.2.7-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true

📋 Changes

  • feat: fix mDNS discovery and auto-resolve service from capabilities (8e17541)

📖 Documentation

Release v1.2.6

Choose a tag to compare

@github-actions github-actions released this 30 May 09:47
541e3a1

Lumen Hub v1.2.6

🖥️ Lumen Gateway (GUI)

Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.

macOS Installation (Universal)

  1. Download lumen-gateway-v1.2.6-darwin-universal.zip.
  2. Unzip the file and move Lumen Gateway.app to your /Applications folder.
  3. Right-click the app and choose Open (or run xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app" to bypass Gatekeeper).

Windows Installation (AMD64)

  1. Download Lumen-Gateway-v1.2.6-windows-amd64.exe.
  2. Double-click to run. The gateway will run in your system tray on port 5866 (configurable).

🚀 Installation

Download Binaries

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.6/lumenhub-v1.2.6-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.6/lumenhub-v1.2.6-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.6/lumenhub-v1.2.6-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.6/lumenhub-v1.2.6-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true

📋 Changes

  • Delete semantic_text_embed_test.go (541e3a1)

📖 Documentation

Release v1.2.5

Choose a tag to compare

@github-actions github-actions released this 27 May 22:23
f936e9f

Lumen Hub v1.2.5

🖥️ Lumen Gateway (GUI)

Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.

macOS Installation (Universal)

  1. Download lumen-gateway-v1.2.5-darwin-universal.zip.
  2. Unzip the file and move Lumen Gateway.app to your /Applications folder.
  3. Right-click the app and choose Open (or run xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app" to bypass Gatekeeper).

Windows Installation (AMD64)

  1. Download Lumen-Gateway-v1.2.5-windows-amd64.exe.
  2. Double-click to run. The gateway will run in your system tray on port 5866 (configurable).

🚀 Installation

Download Binaries

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.5/lumenhub-v1.2.5-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.5/lumenhub-v1.2.5-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.5/lumenhub-v1.2.5-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.5/lumenhub-v1.2.5-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true

📋 Changes


📖 Documentation

Release v1.2.4

Choose a tag to compare

@github-actions github-actions released this 27 May 19:04
328a90d

Lumen Hub v1.2.4

🖥️ Lumen Gateway (GUI)

Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.

macOS Installation (Universal)

  1. Download lumen-gateway-v1.2.4-darwin-universal.zip.
  2. Unzip the file and move Lumen Gateway.app to your /Applications folder.
  3. Right-click the app and choose Open (or run xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app" to bypass Gatekeeper).

Windows Installation (AMD64)

  1. Download Lumen-Gateway-v1.2.4-windows-amd64.exe.
  2. Double-click to run. The gateway will run in your system tray on port 5866 (configurable).

🚀 Installation

Download Binaries

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.4/lumenhub-v1.2.4-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.4/lumenhub-v1.2.4-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.4/lumenhub-v1.2.4-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.4/lumenhub-v1.2.4-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true

📋 Changes


📖 Documentation

Release v1.2.3

Choose a tag to compare

@github-actions github-actions released this 27 May 19:02
02fb93b

Lumen Hub v1.2.3

🖥️ Lumen Gateway (GUI)

Lumen Gateway is a cross-platform system tray application that runs in the background and hosts the daemon, routing strategies, and an interactive React-based network discovery dashboard.

macOS Installation (Universal)

  1. Download lumen-gateway-v1.2.3-darwin-universal.zip.
  2. Unzip the file and move Lumen Gateway.app to your /Applications folder.
  3. Right-click the app and choose Open (or run xattr -d com.apple.quarantine "/Applications/Lumen Gateway.app" to bypass Gatekeeper).

Windows Installation (AMD64)

  1. Download Lumen-Gateway-v1.2.3-windows-amd64.exe.
  2. Double-click to run. The gateway will run in your system tray on port 5866 (configurable).

🚀 Installation

Download Binaries

# Linux AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.3/lumenhub-v1.2.3-linux-amd64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# Linux ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.3/lumenhub-v1.2.3-linux-arm64.tar.gz | tar xz
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/

# macOS AMD64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.3/lumenhub-v1.2.3-darwin-amd64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

# macOS ARM64
curl -fsSL https://github.com/EdwinZhanCN/Lumen-SDK/releases/download/v1.2.3/lumenhub-v1.2.3-darwin-arm64.tar.gz | tar xz
xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true
sudo install -m 0755 lumenhubd lumenhub /usr/local/bin/
sudo xattr -d com.apple.quarantine /usr/local/bin/lumenhubd /usr/local/bin/lumenhub 2>/dev/null || true

macOS builds are currently unsigned/not notarized. If you download the archive with a browser or another tool that adds Gatekeeper quarantine, remove it before installing:

xattr -d com.apple.quarantine lumenhubd lumenhub 2>/dev/null || true

📋 Changes


📖 Documentation