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 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
- [![AbleSet Header](https://public-files.gumroad.com/variants/oplxt68bsgq1hu61t8bydfkgppr5/baaca0eb0e33dc4f9d45910b8c86623f0144cea0fe0c2093c546d17d535752eb)](https://ableset.app)
19
+ [![AbleSet Header](https://public-files.gumroad.com/variants/oplxt68bsgq1hu61t8bydfkgppr5/baaca0eb0e33dc4f9d45910b8c86623f0144cea0fe0c2093c546d17d535752eb)](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 Scripts folder is
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
@@ -17,6 +17,7 @@ class Clip(Interface):
17
17
  "is_midi_clip": clip.is_midi_clip,
18
18
  "start_time": clip.start_time,
19
19
  "end_time": clip.end_time,
20
+ "muted": clip.muted
20
21
  }
21
22
 
22
23
  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.5.2"
13
+ return "2.5.3"
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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ableton-js",
3
- "version": "2.5.2",
3
+ "version": "2.5.3",
4
4
  "description": "Control Ableton Live from Node",
5
5
  "main": "index.js",
6
6
  "author": "Leo Bernard <admin@leolabs.org>",