From 50b01c30a546663e63a86556360e672bdfbf7b2e Mon Sep 17 00:00:00 2001 From: OpenClaw Manager Date: Sat, 7 Mar 2026 01:13:39 +0100 Subject: [PATCH] chore: release v0.0.19 hotfix for ollama missing provider --- .github/workflows/release.yml | 1 + package.json | 2 +- src-tauri/Cargo.toml | 2 +- src-tauri/tauri.conf.json | 2 +- 4 files changed, 4 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 8aa59f6..20cefc5 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -44,6 +44,7 @@ jobs: - **React Lazy Chunking:** Split the frontend JS bundles. Heavy components (Settings, API tools) load entirely on demand, severely lightening the payload. - **Concurrent Shell Environment Check:** Rust environment assertions (`node`, `git`, OpenClaw CLI) now evaluate in parallel async via `tokio`, cutting startup delay significantly. - **Next-Gen 2026 AI Models:** Formally bumped and integrated the newest developer API endpoints matching the absolute latest models out right now: Anthropic (Claude Opus/Sonnet 4.6), OpenAI (GPT-5.4, o3-mini), Google (Gemini 3.1 Pro/Flash-Lite), DeepSeek, Qwen (3.5 Plus/Max), MiniMax (M2.5), and Venice AI (Llama 3.3 Default). + - **Hotfix (v0.0.19):** Restored the Ollama local AI provider configuration that was accidentally dropped in the previous update. See the [full changelog](https://github.com/${{ github.repository }}/commits/${{ github.ref_name }}) for details. draft: true diff --git a/package.json b/package.json index 6469447..a45e818 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "openclaw-manager", - "version": "0.0.18", + "version": "0.0.19", "description": "🦞 OpenClaw Cross-Platform Manager - High-Performance AI Assistant Configuration & Service Management", "author": "OpenClaw Team", "license": "MIT", diff --git a/src-tauri/Cargo.toml b/src-tauri/Cargo.toml index 72808cb..81ff4d3 100644 --- a/src-tauri/Cargo.toml +++ b/src-tauri/Cargo.toml @@ -1,6 +1,6 @@ [package] name = "openclaw-manager" -version = "0.0.18" +version = "0.0.19" description = "OpenClaw Cross-Platform Manager" authors = ["OpenClaw Team"] edition = "2021" diff --git a/src-tauri/tauri.conf.json b/src-tauri/tauri.conf.json index cf786ca..4c8e5ee 100644 --- a/src-tauri/tauri.conf.json +++ b/src-tauri/tauri.conf.json @@ -1,7 +1,7 @@ { "$schema": "https://schema.tauri.app/config/2", "productName": "OpenClaw Manager", - "version": "0.0.18", + "version": "0.0.19", "identifier": "com.openclaw.manager", "build": { "beforeDevCommand": "npm run dev",