livepilot 1.23.1 → 1.23.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/CHANGELOG.md CHANGED
@@ -1,5 +1,14 @@
1
1
  # Changelog
2
2
 
3
+ ## v1.23.2 — 2026-04-25
4
+
5
+ ### Fixed
6
+ - M4L bridge `.amxd` ping version now matches the release version. v1.23.1 shipped with the frozen `LivePilot_Analyzer.amxd` still embedding `"version": "1.23.0"` (the m4l_device files weren't bumped during the v1.23.1 patch), which tripped the `amxd-freeze-drift` CI guard introduced after past releases lost to the same drift. In-place binary patch at offsets 32653 + 6691677 (same byte count, file size unchanged at 6,754,576 bytes), plus source bumps in `livepilot_bridge.js` (`var VERSION`) and `LivePilot_Analyzer.maxpat` (UI label) so the next freeze starts in sync.
7
+
8
+ ### Notes
9
+ - Bridge functionality is unchanged from v1.23.1. This is a metadata-only patch: end users who looked at the bridge UI in v1.23.1 saw "1.23.0" — that's now corrected.
10
+ - All distribution channels (npm, GitHub release MCPB, marketplace mirror) are re-published from this commit.
11
+
3
12
  ## v1.23.1 — 2026-04-25
4
13
 
5
14
  ### Fixed
Binary file
@@ -34,7 +34,7 @@ outlets = 2; // 0: to udpsend (responses), 1: to buffer~/status
34
34
  // Single source of truth for the bridge version — bumped alongside the
35
35
  // rest of the release manifest. Surfaced in the UI via messnamed("livepilot_version", ...)
36
36
  // so the frozen .amxd visibly reports which build it was last exported from.
37
- var VERSION = "1.23.0";
37
+ var VERSION = "1.23.2";
38
38
 
39
39
  // ── State ──────────────────────────────────────────────────────────────────
40
40
 
@@ -1,2 +1,2 @@
1
1
  """LivePilot MCP Server — bridges MCP protocol to Ableton Live."""
2
- __version__ = "1.23.1"
2
+ __version__ = "1.23.2"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.23.1",
3
+ "version": "1.23.2",
4
4
  "mcpName": "io.github.dreamrec/livepilot",
5
5
  "description": "Agentic production system for Ableton Live 12 — 433 tools, 53 domains, 44 semantic moves. Device atlas (5264 devices, 120 enriched, 7 indexes), Splice intelligence (gRPC + GraphQL describe-a-sound + preview + collections + presets), 9-band spectral perception auto-loaded via ensure_analyzer_on_master, Creative Director skill, technique memory, 12 creative intelligence engines",
6
6
  "author": "Pilot Studio",
@@ -5,7 +5,7 @@ Entry point for the ControlSurface. Ableton calls create_instance(c_instance)
5
5
  when this script is selected in Preferences > Link, Tempo & MIDI.
6
6
  """
7
7
 
8
- __version__ = "1.23.1"
8
+ __version__ = "1.23.2"
9
9
 
10
10
  from _Framework.ControlSurface import ControlSurface
11
11
  from . import router
package/server.json CHANGED
@@ -6,7 +6,7 @@
6
6
  "url": "https://github.com/dreamrec/LivePilot",
7
7
  "source": "github"
8
8
  },
9
- "version": "1.23.1",
9
+ "version": "1.23.2",
10
10
  "packages": [
11
11
  {
12
12
  "registryType": "npm",