@meridiona/meridian-darwin-arm64 1.34.2 → 1.34.3
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/install-from-bundle.sh +6 -1
- package/scripts/meridian-cli.sh +3 -4
- package/services/pyproject.toml +1 -1
- package/ui.tar.gz +0 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.34.
|
|
1
|
+
1.34.3
|
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.34.
|
|
3
|
+
"version": "1.34.3",
|
|
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": {
|
|
@@ -605,7 +605,12 @@ for line in sys.stdin:
|
|
|
605
605
|
sleep 3; _w=$((_w+3))
|
|
606
606
|
[[ $_w -ge 300 ]] && { warn "MLX not ready after 300s — check: meridian logs mlx-server"; break; }
|
|
607
607
|
done
|
|
608
|
-
|
|
608
|
+
# kill python3/bash first, then explicitly kill the tail processes —
|
|
609
|
+
# tail -F ignores SIGPIPE and survives as an orphan if only the reader dies.
|
|
610
|
+
{ kill "${_log_pid}" "${_err_pid}" 2>/dev/null; \
|
|
611
|
+
pkill -f "tail.*mlx-server\\.log" 2>/dev/null; \
|
|
612
|
+
pkill -f "tail.*mlx-server-error\\.log" 2>/dev/null; \
|
|
613
|
+
wait "${_log_pid}" "${_err_pid}" 2>/dev/null; } || true
|
|
609
614
|
|
|
610
615
|
# Only stamp after confirmed ready — prevents stale stamp on a failed restart.
|
|
611
616
|
if curl -sf "http://127.0.0.1:${MLX_PORT}/health" >/dev/null 2>&1; then
|
package/scripts/meridian-cli.sh
CHANGED
|
@@ -539,13 +539,12 @@ PYEOF
|
|
|
539
539
|
|
|
540
540
|
# --- permissions ---
|
|
541
541
|
cmd_permissions() {
|
|
542
|
-
local sp_bin
|
|
543
|
-
sp_bin="$(command -v screenpipe 2>/dev/null || echo "/opt/homebrew/bin/screenpipe")"
|
|
542
|
+
local sp_bin="${HOME}/.meridian/bin/screenpipe"
|
|
544
543
|
info "screenpipe needs three macOS permissions to record activity"
|
|
545
544
|
echo " binary path: ${sp_bin}"
|
|
546
545
|
echo
|
|
547
|
-
echo " Screen Recording + Accessibility panes: click '+'
|
|
548
|
-
echo "
|
|
546
|
+
echo " Screen Recording + Accessibility panes: click '+' → ⌘⇧G → paste"
|
|
547
|
+
echo " the path above → Open → toggle ON."
|
|
549
548
|
echo " Microphone pane has no '+'. screenpipe will appear there only after"
|
|
550
549
|
echo " it tries to use the mic — then toggle it ON. If it isn't listed yet,"
|
|
551
550
|
echo " grant Screen Recording first and screenpipe will request mic access."
|
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.34.
|
|
7
|
+
version = "1.34.3"
|
|
8
8
|
description = "Meridian agents — MLX classifier server and Jira worklog synthesis for meridian.db"
|
|
9
9
|
requires-python = ">=3.11"
|
|
10
10
|
authors = [{ name = "Meridiona" }]
|
package/ui.tar.gz
CHANGED
|
Binary file
|