ableton-js 2.7.1 → 2.7.2
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 +6 -0
- package/index.js +1 -1
- package/midi-script/Internal.py +1 -1
- package/package.json +1 -1
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.7.2](https://github.com/leolabs/ableton.js/compare/v2.7.1...v2.7.2)
|
|
8
|
+
|
|
9
|
+
- :bug: Fix runtime error caused by accessing a missing variable [`83427ac`](https://github.com/leolabs/ableton.js/commit/83427acafffb276fda2573555332372be608c4bf)
|
|
10
|
+
|
|
7
11
|
#### [v2.7.1](https://github.com/leolabs/ableton.js/compare/v2.7.0...v2.7.1)
|
|
8
12
|
|
|
13
|
+
> 10 November 2022
|
|
14
|
+
|
|
9
15
|
- :sparkles: Add the ability to listen to changes in clip notes [`a1c5112`](https://github.com/leolabs/ableton.js/commit/a1c5112542261493b6c55289c203e7250c7b7d15)
|
|
10
16
|
|
|
11
17
|
#### [v2.7.0](https://github.com/leolabs/ableton.js/compare/v2.6.0...v2.7.0)
|
package/index.js
CHANGED
|
@@ -267,7 +267,7 @@ var Ableton = /** @class */ (function (_super) {
|
|
|
267
267
|
? command.ns + "(" + command.nsid + ")"
|
|
268
268
|
: command.ns;
|
|
269
269
|
rej(new TimeoutError([
|
|
270
|
-
"The command " + cls + "." + name + "(" + arg + ") timed out after " + timeout + " ms.",
|
|
270
|
+
"The command " + cls + "." + command.name + "(" + arg + ") timed out after " + timeout + " ms.",
|
|
271
271
|
"Please make sure that Ableton is running and that you have the latest",
|
|
272
272
|
"version of AbletonJS' midi script installed and renamed to \"AbletonJS\", listening on port",
|
|
273
273
|
_this.sendPort + " and sending on port " + _this.listenPort + ".",
|
package/midi-script/Internal.py
CHANGED