ableton-js 3.2.3 → 3.2.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/CHANGELOG.md CHANGED
@@ -4,8 +4,14 @@ All notable changes to this project will be documented in this file. Dates are d
4
4
 
5
5
  Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).
6
6
 
7
+ #### [v3.2.4](https://github.com/leolabs/ableton.js/compare/v3.2.3...v3.2.4)
8
+
9
+ - :sparkles: Add `color_index` to the raw props of clips and tracks [`fc6f38d`](https://github.com/leolabs/ableton.js/commit/fc6f38dbcf0a2293f1cd774656a42cdd2ca6f4fc)
10
+
7
11
  #### [v3.2.3](https://github.com/leolabs/ableton.js/compare/v3.2.2...v3.2.3)
8
12
 
13
+ > 25 June 2023
14
+
9
15
  - :bug: Fix stray heartbeats emitting a disconnect event [`6157a95`](https://github.com/leolabs/ableton.js/commit/6157a952b766f4c9548e8752c12bde599ccc1a07)
10
16
 
11
17
  #### [v3.2.2](https://github.com/leolabs/ableton.js/compare/v3.2.1...v3.2.2)
@@ -13,6 +13,7 @@ class Clip(Interface):
13
13
  "id": clip_id,
14
14
  "name": clip.name,
15
15
  "color": clip.color,
16
+ "color_index": clip.color_index,
16
17
  "is_audio_clip": clip.is_audio_clip,
17
18
  "is_midi_clip": clip.is_midi_clip,
18
19
  "start_time": clip.start_time,
@@ -14,7 +14,14 @@ class Track(Interface):
14
14
  return None
15
15
 
16
16
  track_id = Interface.save_obj(track)
17
- return {"id": track_id, "name": track.name, "color": track.color, "is_foldable": track.is_foldable, "is_grouped": track.is_grouped}
17
+ return {
18
+ "id": track_id,
19
+ "name": track.name,
20
+ "color": track.color,
21
+ "color_index": track.color_index,
22
+ "is_foldable": track.is_foldable,
23
+ "is_grouped": track.is_grouped
24
+ }
18
25
 
19
26
  @staticmethod
20
27
  def serialize_routing_channel(channel):
@@ -1 +1 @@
1
- version = "3.2.3"
1
+ version = "3.2.4"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ableton-js",
3
- "version": "3.2.3",
3
+ "version": "3.2.4",
4
4
  "description": "Control Ableton Live from Node",
5
5
  "main": "index.js",
6
6
  "author": "Leo Bernard <admin@leolabs.org>",