ableton-js 3.2.1 → 3.2.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 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
+ #### [v3.2.2](https://github.com/leolabs/ableton.js/compare/v3.2.1...v3.2.2)
8
+
9
+ - :sparkles: Add a fallback `schedule_message` in case the Timer doesn't work as expected [`b5fdbe1`](https://github.com/leolabs/ableton.js/commit/b5fdbe12726d3c76a2fe74ec0fe0a731367fcb4f)
10
+
7
11
  #### [v3.2.1](https://github.com/leolabs/ableton.js/compare/v3.2.0...v3.2.1)
8
12
 
13
+ > 12 June 2023
14
+
9
15
  - :sparkles: Add the ability to warn when a command takes longer than expected [`24b046a`](https://github.com/leolabs/ableton.js/commit/24b046a6047945d1e5b4011d5b6912cbf2093158)
10
16
 
11
17
  #### [v3.2.0](https://github.com/leolabs/ableton.js/compare/v3.1.9...v3.2.0)
@@ -55,6 +55,11 @@ class AbletonJS(ControlSurface):
55
55
  callback=self.socket.process, interval=10, repeat=True)
56
56
 
57
57
  self.recv_loop.start()
58
+ self.tick()
59
+
60
+ def tick(self):
61
+ self.socket.process()
62
+ self.schedule_message(1, self.tick)
58
63
 
59
64
  def build_midi_map(self, midi_map_handle):
60
65
  script_handle = self._c_instance.handle()
@@ -1 +1 @@
1
- version = "3.2.1"
1
+ version = "3.2.2"
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "ableton-js",
3
- "version": "3.2.1",
3
+ "version": "3.2.2",
4
4
  "description": "Control Ableton Live from Node",
5
5
  "main": "index.js",
6
6
  "author": "Leo Bernard <admin@leolabs.org>",