livepilot 1.8.2 → 1.8.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/CHANGELOG.md CHANGED
@@ -1,11 +1,13 @@
1
1
  # Changelog
2
2
 
3
- ## 1.8.2 — FluCoMa Wiring + Analyzer Fix (March 2026)
3
+ ## 1.8.3 — FluCoMa Wiring + Analyzer Fix (March 2026)
4
4
 
5
5
  - Fix: wire 6 FluCoMa DSP objects into LivePilot_Analyzer.maxpat (spectral shape, mel bands, chroma, loudness, onset, novelty)
6
6
  - Fix: onset/novelty Python handlers now accept 1 arg (fluid.onsetfeature~/noveltyfeature~ output single float)
7
- - Fix: rebuild .amxd with FluCoMa objects + binary patch openinpresentation
7
+ - Fix: restore .amxd after binary corruption .amxd must be rebuilt via Max editor, not programmatic JSON editing
8
+ - Fix: panel z-order in .maxpat — move background panel first in boxes array so multislider renders on top
8
9
  - FluCoMa perception tools now fully functional when FluCoMa package is installed
10
+ - Note: after installing, rebuild .amxd from .maxpat via Max editor (see BUILD_GUIDE.md)
9
11
 
10
12
  ## 1.8.1 — Patch (March 2026)
11
13
 
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "description": "Agentic production system for Ableton Live 12 — 168 tools, 17 domains, device atlas, spectral perception, technique memory, neo-Riemannian harmony, Euclidean rhythm, species counterpoint, MIDI I/O",
5
5
  "author": {
6
6
  "name": "Pilot Studio"
Binary file
@@ -83,7 +83,7 @@ function anything() {
83
83
  function dispatch(cmd, args) {
84
84
  switch(cmd) {
85
85
  case "ping":
86
- send_response({"ok": true, "version": "1.8.2"});
86
+ send_response({"ok": true, "version": "1.8.3"});
87
87
  break;
88
88
  case "get_params":
89
89
  cmd_get_params(args);
@@ -1,2 +1,2 @@
1
1
  """LivePilot MCP Server — bridges MCP protocol to Ableton Live."""
2
- __version__ = "1.8.2"
2
+ __version__ = "1.8.3"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "livepilot",
3
- "version": "1.8.2",
3
+ "version": "1.8.3",
4
4
  "mcpName": "io.github.dreamrec/livepilot",
5
5
  "description": "Agentic production system for Ableton Live 12 — 168 tools, 17 domains, device atlas, spectral perception, technique memory, neo-Riemannian harmony, Euclidean rhythm, species counterpoint, MIDI I/O",
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.8.2"
8
+ __version__ = "1.8.3"
9
9
 
10
10
  from _Framework.ControlSurface import ControlSurface
11
11
  from .server import LivePilotServer