ableton-js 2.5.1 → 2.5.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 +3 -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.5.2](https://github.com/leolabs/ableton.js/compare/v2.5.1...v2.5.2)
|
|
8
|
+
|
|
9
|
+
- :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
|
+
|
|
7
11
|
#### [v2.5.1](https://github.com/leolabs/ableton.js/compare/v2.5.0...v2.5.1)
|
|
8
12
|
|
|
13
|
+
> 7 August 2022
|
|
14
|
+
|
|
9
15
|
- Remove unused devDependencies [`6491216`](https://github.com/leolabs/ableton.js/commit/6491216bff5f1fed8ca20ad00105022eeb44c656)
|
|
10
16
|
- :bug: Fix AutomationState and ParameterState being incorrect [`431d377`](https://github.com/leolabs/ableton.js/commit/431d377a1526ec02369df54e1826d19901950666)
|
|
11
17
|
|
package/index.js
CHANGED
|
@@ -217,7 +217,9 @@ var Ableton = /** @class */ (function (_super) {
|
|
|
217
217
|
if (eventCallback) {
|
|
218
218
|
return eventCallback.forEach(function (cb) { return cb(data.data); });
|
|
219
219
|
}
|
|
220
|
-
|
|
220
|
+
if (data.uuid) {
|
|
221
|
+
this.emit("error", "Message could not be assigned to any request: " + msg);
|
|
222
|
+
}
|
|
221
223
|
};
|
|
222
224
|
/**
|
|
223
225
|
* Sends a raw command to Ableton. Usually, you won't need this.
|
package/midi-script/Internal.py
CHANGED