@meridiona/meridian-darwin-arm64 1.31.1 → 1.31.2
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/bin/meridian-tray +0 -0
- package/package.json +1 -1
- package/scripts/install-tray-daemon.sh +13 -6
- package/services/pyproject.toml +1 -1
- package/ui.tar.gz +0 -0
package/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.31.
|
|
1
|
+
1.31.2
|
package/bin/meridian
CHANGED
|
Binary file
|
package/bin/meridian-tray
CHANGED
|
Binary file
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@meridiona/meridian-darwin-arm64",
|
|
3
|
-
"version": "1.31.
|
|
3
|
+
"version": "1.31.2",
|
|
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": {
|
|
@@ -6,14 +6,21 @@ set -euo pipefail
|
|
|
6
6
|
IFS=$'\n\t'
|
|
7
7
|
|
|
8
8
|
REPO_ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
9
|
+
# Support both dev mode (target/release) and bundle mode (bin/)
|
|
10
|
+
TRAY_BIN=""
|
|
11
|
+
if [[ -x "${REPO_ROOT}/target/release/meridian-tray" ]]; then
|
|
12
|
+
# Dev mode: built locally to target/release
|
|
13
|
+
TRAY_BIN="${REPO_ROOT}/target/release/meridian-tray"
|
|
14
|
+
elif [[ -x "${REPO_ROOT}/bin/meridian-tray" ]]; then
|
|
15
|
+
# Bundle mode: installed to ~/.meridian/app/bin
|
|
16
|
+
TRAY_BIN="${REPO_ROOT}/bin/meridian-tray"
|
|
17
|
+
else
|
|
18
|
+
echo "✗ meridian-tray binary not found" >&2
|
|
19
|
+
echo " Dev: build it with: cd tray && npm run tauri build" >&2
|
|
20
|
+
echo " Bundle: already included via: meridian update" >&2
|
|
15
21
|
exit 1
|
|
16
22
|
fi
|
|
23
|
+
PLIST="${HOME}/Library/LaunchAgents/com.meridiona.tray.plist"
|
|
17
24
|
|
|
18
25
|
mkdir -p "$(dirname "${PLIST}")"
|
|
19
26
|
|
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.31.
|
|
7
|
+
version = "1.31.2"
|
|
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
CHANGED
|
Binary file
|