@meridiona/meridian-darwin-arm64 1.26.2 → 1.27.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/VERSION +1 -1
- package/bin/meridian +0 -0
- package/package.json +1 -1
- package/scripts/meridian-cli.sh +24 -0
- package/services/pyproject.toml +1 -1
- package/ui.tar.gz +0 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.27.0
|
package/bin/meridian
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meridiona/meridian-darwin-arm64",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "1.27.0",
|
|
4
4
|
"description": "Prebuilt Meridian app for macOS arm64 (daemon binary + dashboard + Python services). Installed via @meridiona/meridian.",
|
|
5
5
|
"homepage": "https://github.com/Meridiona/meridian",
|
|
6
6
|
"repository": {
|
package/scripts/meridian-cli.sh
CHANGED
|
@@ -50,6 +50,7 @@ Commands:
|
|
|
50
50
|
[--day YYYY-MM-DD]
|
|
51
51
|
config edit Open the repo-root .env in $EDITOR
|
|
52
52
|
permissions Open macOS permission panes for screenpipe
|
|
53
|
+
update Pull latest changes, rebuild, and restart (source checkout only)
|
|
53
54
|
uninstall Stop daemons and remove CLI symlinks
|
|
54
55
|
version Print installed version
|
|
55
56
|
--help | -h Show this help
|
|
@@ -450,6 +451,28 @@ cmd_config() {
|
|
|
450
451
|
"${EDITOR:-nano}" "$env_file"
|
|
451
452
|
}
|
|
452
453
|
|
|
454
|
+
# --- update ---
|
|
455
|
+
cmd_update() {
|
|
456
|
+
if _is_source_checkout; then
|
|
457
|
+
info "pulling latest changes…"
|
|
458
|
+
git -C "${REPO_ROOT}" pull --ff-only || {
|
|
459
|
+
err "git pull failed — resolve conflicts manually, then run 'meridian dev build' and 'meridian restart'"
|
|
460
|
+
exit 1
|
|
461
|
+
}
|
|
462
|
+
info "rebuilding daemon (cargo --release)…"
|
|
463
|
+
( cd "${REPO_ROOT}" && cargo build --release )
|
|
464
|
+
info "rebuilding UI…"
|
|
465
|
+
( cd "${REPO_ROOT}/ui" && npm run build )
|
|
466
|
+
info "restarting daemons…"
|
|
467
|
+
cmd_restart
|
|
468
|
+
ok "updated to $(cat "${REPO_ROOT}/VERSION" 2>/dev/null || git -C "${REPO_ROOT}" rev-parse --short HEAD)"
|
|
469
|
+
else
|
|
470
|
+
err "meridian update is not available in a source checkout context."
|
|
471
|
+
err "Run: npm install -g @meridiona/meridian@latest"
|
|
472
|
+
exit 1
|
|
473
|
+
fi
|
|
474
|
+
}
|
|
475
|
+
|
|
453
476
|
# --- uninstall ---
|
|
454
477
|
cmd_uninstall() {
|
|
455
478
|
local ans
|
|
@@ -704,6 +727,7 @@ case "$CMD" in
|
|
|
704
727
|
migrate-db) cmd_migrate_db "$@" ;;
|
|
705
728
|
config) cmd_config "$@" ;;
|
|
706
729
|
dev) cmd_dev "$@" ;;
|
|
730
|
+
update) cmd_update ;;
|
|
707
731
|
uninstall) cmd_uninstall ;;
|
|
708
732
|
permissions) cmd_permissions ;;
|
|
709
733
|
version|--version|-v) cat "${REPO_ROOT}/VERSION" 2>/dev/null || echo "unknown" ;;
|
package/services/pyproject.toml
CHANGED
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "meridian-agents"
|
|
7
|
-
version = "1.
|
|
7
|
+
version = "1.27.0"
|
|
8
8
|
description = "Meridian agents — hermes task linking and Jira progress updates for meridian.db"
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
authors = [{ name = "Meridiona" }]
|
package/ui.tar.gz
DELETED
|
Binary file
|