@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.3
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",
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
- printf ' %s\n' "${_eline}"
599
- done) &
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
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
4
4
 
5
5
  [project]
6
6
  name = "meridian-agents"
7
- version = "1.37.3"
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" }]
@@ -51,6 +51,8 @@
51
51
  <string>{{HOME}}/.meridian/meridian.db</string>
52
52
  <key>PYTHONUNBUFFERED</key>
53
53
  <string>1</string>
54
+ <key>TQDM_MININTERVAL</key>
55
+ <string>3</string>
54
56
  <key>MLX_SERVER_PORT</key>
55
57
  <string>{{MLX_SERVER_PORT}}</string>
56
58
  <key>MERIDIAN_OO_AUTH</key>
package/ui.tar.gz CHANGED
Binary file