ableton-js 2.3.0 → 2.3.1
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/midi-script/AbletonJS.py +2 -2
- 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.3.1](https://github.com/leolabs/ableton.js/compare/v2.3.0...v2.3.1)
|
|
8
|
+
|
|
9
|
+
- :bug: Fix invalid import of the Timer object in Live 10 [`e003530`](https://github.com/leolabs/ableton.js/commit/e003530857191a0dc9aaacef954f7929813797a6)
|
|
10
|
+
|
|
7
11
|
#### [v2.3.0](https://github.com/leolabs/ableton.js/compare/v2.2.1-0...v2.3.0)
|
|
8
12
|
|
|
13
|
+
> 27 March 2022
|
|
14
|
+
|
|
9
15
|
- :sparkles: Add the clip's name as an observable property [`78c9969`](https://github.com/leolabs/ableton.js/commit/78c99694e8e230ad4ecb022316ebed731994fc6f)
|
|
10
16
|
|
|
11
17
|
#### [v2.2.1-0](https://github.com/leolabs/ableton.js/compare/v2.2.0...v2.2.1-0)
|
package/midi-script/AbletonJS.py
CHANGED
|
@@ -15,7 +15,7 @@ from .Internal import Internal
|
|
|
15
15
|
from .ClipSlot import ClipSlot
|
|
16
16
|
from .Clip import Clip
|
|
17
17
|
from _Framework.ControlSurface import ControlSurface
|
|
18
|
-
|
|
18
|
+
import Live
|
|
19
19
|
|
|
20
20
|
|
|
21
21
|
class AbletonJS(ControlSurface):
|
|
@@ -40,7 +40,7 @@ class AbletonJS(ControlSurface):
|
|
|
40
40
|
"clip": Clip(c_instance, self.socket)
|
|
41
41
|
}
|
|
42
42
|
|
|
43
|
-
self.recv_loop = Timer(
|
|
43
|
+
self.recv_loop = Live.Base.Timer(
|
|
44
44
|
callback=self.socket.process, interval=10, repeat=True)
|
|
45
45
|
|
|
46
46
|
self.recv_loop.start()
|
package/midi-script/Internal.py
CHANGED