Skip to content

Commit 735f74f

Browse files
authored
Merge branch 'main' into update_cloud_plugin_2026-04-03
2 parents c07ec7d + 6703bf3 commit 735f74f

File tree

4 files changed

+31
-6
lines changed

4 files changed

+31
-6
lines changed

apps/memos-local-openclaw/install.ps1

Lines changed: 15 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -361,5 +361,18 @@ if (-not (Test-Path $ExtensionDir)) {
361361

362362
Update-OpenClawConfig -OpenClawHome $OpenClawHome -ConfigPath $OpenClawConfigPath -PluginId $PluginId -InstallPath $ExtensionDir -Spec $PackageSpec
363363

364-
Write-Success "Restarting OpenClaw Gateway..."
365-
& npx openclaw gateway run --port $Port --force
364+
Write-Info "Installing OpenClaw Gateway service..."
365+
& npx openclaw gateway install --port $Port --force 2>&1
366+
if (-not $?) { Write-Warn "Gateway service install returned a warning; continuing..." }
367+
368+
Write-Success "Starting OpenClaw Gateway service..."
369+
& npx openclaw gateway start 2>&1
370+
371+
Write-Host ""
372+
Write-Success "=========================================="
373+
Write-Success " Installation complete!"
374+
Write-Success "=========================================="
375+
Write-Host ""
376+
Write-Info " OpenClaw Web UI: http://localhost:$Port"
377+
Write-Info " Memory Viewer: http://localhost:18799"
378+
Write-Host ""

apps/memos-local-openclaw/install.sh

Lines changed: 14 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -360,5 +360,17 @@ fi
360360

361361
update_openclaw_config
362362

363-
success "Restart OpenClaw Gateway, 重启 OpenClaw Gateway..."
364-
exec npx openclaw gateway run --port "${PORT}" --force
363+
info "Install OpenClaw Gateway service, 安装 OpenClaw Gateway 服务..."
364+
npx openclaw gateway install --port "${PORT}" --force 2>&1 || true
365+
366+
success "Start OpenClaw Gateway service, 启动 OpenClaw Gateway 服务..."
367+
npx openclaw gateway start 2>&1
368+
369+
echo ""
370+
success "=========================================="
371+
success " Installation complete! 安装完成!"
372+
success "=========================================="
373+
echo ""
374+
info " OpenClaw Web UI: http://localhost:${PORT}"
375+
info " Memory Viewer: http://localhost:18799"
376+
echo ""

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
##############################################################################
55

66
name = "MemoryOS"
7-
version = "2.0.11"
7+
version = "2.0.12"
88
description = "Intelligence Begins with Memory"
99
license = {text = "Apache-2.0"}
1010
readme = "README.md"

src/memos/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "2.0.11"
1+
__version__ = "2.0.12"
22

33
from memos.configs.mem_cube import GeneralMemCubeConfig
44
from memos.configs.mem_os import MOSConfig

0 commit comments

Comments
 (0)