ableton-js 2.5.2 → 2.5.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 +7 -0
- package/README.md +4 -4
- package/midi-script/Clip.py +1 -0
- package/midi-script/Internal.py +1 -1
- package/ns/clip.d.ts +2 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,15 @@ 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.5.3](https://github.com/leolabs/ableton.js/compare/v2.5.2...v2.5.3)
|
|
8
|
+
|
|
9
|
+
- :memo: Fix some typos in the readme [`10c8566`](https://github.com/leolabs/ableton.js/commit/10c8566758bc1a7e7ab6bc20fa269d38474e1d96)
|
|
10
|
+
- :sparkles: Add support for observing the `muted` prop of clips [`ecb604a`](https://github.com/leolabs/ableton.js/commit/ecb604a2b25aa3a064ffe5d199d44cfca0c12144)
|
|
11
|
+
|
|
7
12
|
#### [v2.5.2](https://github.com/leolabs/ableton.js/compare/v2.5.1...v2.5.2)
|
|
8
13
|
|
|
14
|
+
> 26 August 2022
|
|
15
|
+
|
|
9
16
|
- :mute: Don't emit errors when received events can't be assigned to any listener [`da32ca5`](https://github.com/leolabs/ableton.js/commit/da32ca5924df0ffb20fab981e0e98bb606cbef4a)
|
|
10
17
|
|
|
11
18
|
#### [v2.5.1](https://github.com/leolabs/ableton.js/compare/v2.5.0...v2.5.1)
|
package/README.md
CHANGED
|
@@ -14,16 +14,16 @@ functions to TypeScript. If you'd like to contribute, please feel free to do so.
|
|
|
14
14
|
I've used Ableton.js to build a setlist manager called
|
|
15
15
|
[AbleSet](https://ableset.app). AbleSet allows you to easily manage and control
|
|
16
16
|
your Ableton setlists from any device, re-order songs and add notes to them, and
|
|
17
|
-
get an overview of the current of your set.
|
|
17
|
+
get an overview of the current state of your set.
|
|
18
18
|
|
|
19
|
-
[](https://ableset.app)
|
|
19
|
+
[](https://ableset.app/?utm_campaign=ableton-js)
|
|
20
20
|
|
|
21
21
|
## Prerequisites
|
|
22
22
|
|
|
23
23
|
To use this library, you'll need to install and activate the MIDI Remote Script
|
|
24
24
|
in Ableton.js. To do that, copy the `midi-script` folder of this repo to
|
|
25
|
-
Ableton's Remote Scripts folder and rename it to `AbletonJS`. The MIDI Remote
|
|
26
|
-
usually located at:
|
|
25
|
+
Ableton's Remote Scripts folder and rename it to `AbletonJS`. The MIDI Remote
|
|
26
|
+
Scripts folder is usually located at:
|
|
27
27
|
|
|
28
28
|
- **Windows:** {path to Ableton}\Resources\MIDI\Remote Scripts
|
|
29
29
|
- **macOS:** /Applications/Ableton Live {version}/Contents/App-Resources/MIDI
|
package/midi-script/Clip.py
CHANGED
package/midi-script/Internal.py
CHANGED
package/ns/clip.d.ts
CHANGED
|
@@ -115,6 +115,7 @@ export interface ObservableProperties {
|
|
|
115
115
|
is_recording: boolean;
|
|
116
116
|
loop_end: number;
|
|
117
117
|
loop_start: number;
|
|
118
|
+
muted: boolean;
|
|
118
119
|
name: string;
|
|
119
120
|
pitch_coarse: number;
|
|
120
121
|
pitch_fine: number;
|
|
@@ -134,6 +135,7 @@ export interface RawClip {
|
|
|
134
135
|
is_midi_clip: boolean;
|
|
135
136
|
start_time: number;
|
|
136
137
|
end_time: number;
|
|
138
|
+
muted: boolean;
|
|
137
139
|
}
|
|
138
140
|
/**
|
|
139
141
|
* This class represents an entry in Live's Session view matrix.
|