@meridiona/meridian-darwin-arm64 1.37.3 → 1.37.4
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
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.37.
|
|
1
|
+
1.37.4
|
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.37.
|
|
3
|
+
"version": "1.37.4",
|
|
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": {
|
|
@@ -595,8 +595,14 @@ for line in sys.stdin:
|
|
|
595
595
|
') &
|
|
596
596
|
_log_pid=$!
|
|
597
597
|
(tail -F -n 0 "${_MLX_ERR}" 2>/dev/null | while IFS= read -r _eline; do
|
|
598
|
-
|
|
599
|
-
|
|
598
|
+
# tqdm progress lines contain '%' — update in-place with \r so users
|
|
599
|
+
# see a live download bar instead of a flood of static lines.
|
|
600
|
+
if [[ "${_eline}" == *%* && "${_eline}" == *it/s* || "${_eline}" == *Fetching* ]]; then
|
|
601
|
+
printf '\r %-80s' "${_eline}"
|
|
602
|
+
else
|
|
603
|
+
printf '\n %s' "${_eline}"
|
|
604
|
+
fi
|
|
605
|
+
done; printf '\n') &
|
|
600
606
|
_err_pid=$!
|
|
601
607
|
|
|
602
608
|
until curl -sf "http://127.0.0.1:${MLX_PORT}/health" >/dev/null 2>&1; do
|
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.37.
|
|
7
|
+
version = "1.37.4"
|
|
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
|