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 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)
@@ -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
- from Live.Base import Timer
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()
@@ -10,4 +10,4 @@ class Internal(Interface):
10
10
  return self
11
11
 
12
12
  def get_version(self, ns):
13
- return "2.3.0"
13
+ return "2.3.1"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ableton-js",
3
- "version": "2.3.0",
3
+ "version": "2.3.1",
4
4
  "description": "Control Ableton Live from Node",
5
5
  "main": "index.js",
6
6
  "author": "Leo Bernard <admin@leolabs.org>",