ableton-js 2.3.3 → 2.3.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
+ #### [v2.3.4](https://github.com/leolabs/ableton.js/compare/v2.3.3...v2.3.4)
8
+
9
+ - :sparkles: Return the start and end time of clips in the raw clip [`1862efe`](https://github.com/leolabs/ableton.js/commit/1862efe6c6e8bc4d894cdce9b376e1fde93c8c7b)
10
+
7
11
  #### [v2.3.3](https://github.com/leolabs/ableton.js/compare/v2.3.2...v2.3.3)
8
12
 
13
+ > 30 April 2022
14
+
9
15
  - :sparkles: Add set_or_delete_cue, undo, and redo commands [`41d5ef7`](https://github.com/leolabs/ableton.js/commit/41d5ef7a2461fea95b125de13e18285beb47a2d6)
10
16
 
11
17
  #### [v2.3.2](https://github.com/leolabs/ableton.js/compare/v2.3.1...v2.3.2)
@@ -15,6 +15,8 @@ class Clip(Interface):
15
15
  "color": clip.color,
16
16
  "is_audio_clip": clip.is_audio_clip,
17
17
  "is_midi_clip": clip.is_midi_clip,
18
+ "start_time": clip.start_time,
19
+ "end_time": clip.end_time,
18
20
  }
19
21
 
20
22
  def __init__(self, c_instance, socket):
@@ -10,4 +10,4 @@ class Internal(Interface):
10
10
  return self
11
11
 
12
12
  def get_version(self, ns):
13
- return "2.3.3"
13
+ return "2.3.4"
package/ns/clip.d.ts CHANGED
@@ -132,6 +132,8 @@ export interface RawClip {
132
132
  color: number;
133
133
  is_audio_clip: boolean;
134
134
  is_midi_clip: boolean;
135
+ start_time: number;
136
+ end_time: number;
135
137
  }
136
138
  /**
137
139
  * This class represents an entry in Live's Session view matrix.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ableton-js",
3
- "version": "2.3.3",
3
+ "version": "2.3.4",
4
4
  "description": "Control Ableton Live from Node",
5
5
  "main": "index.js",
6
6
  "author": "Leo Bernard <admin@leolabs.org>",