ableton-js 3.4.1 → 3.4.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 +7 -0
- package/midi-script/Socket.py +2 -2
- package/midi-script/version.py +1 -1
- package/ns/device.d.ts +0 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,8 +4,15 @@ 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.4.2](https://github.com/leolabs/ableton.js/compare/v3.4.1...v3.4.2)
|
|
8
|
+
|
|
9
|
+
- :bug: Fix buffer size limit being too high on Windows [`0c6bc7d`](https://github.com/leolabs/ableton.js/commit/0c6bc7d4dbb6ff1972f210d6d4bc6a168e8d2ce1)
|
|
10
|
+
- :bug: Mark `is_active` device property as read-only [`316f510`](https://github.com/leolabs/ableton.js/commit/316f51079e4fb7f407414485fd8b3cc47a0e9f1e)
|
|
11
|
+
|
|
7
12
|
#### [v3.4.1](https://github.com/leolabs/ableton.js/compare/v3.4.0...v3.4.1)
|
|
8
13
|
|
|
14
|
+
> 11 November 2023
|
|
15
|
+
|
|
9
16
|
- :sparkles: Add a `safeStartPlaying` method that only calls `start_playing` when Live is currently stopped [`46e1354`](https://github.com/leolabs/ableton.js/commit/46e13549f0c33ef6d82d20c42df30fb8c539af32)
|
|
10
17
|
- :bug: Fix master track erroring because it doesn't have solo/mute properties [`3b58e72`](https://github.com/leolabs/ableton.js/commit/3b58e7205a5e547b7e0f2e0784eb9be71548ce1c)
|
|
11
18
|
- :mute: Don't log results of getting track view properties [`3b4a5bd`](https://github.com/leolabs/ableton.js/commit/3b4a5bd07c3be7b7ec9f2cc21574b72d1fb375b4)
|
package/midi-script/Socket.py
CHANGED
|
@@ -113,9 +113,9 @@ class Socket(object):
|
|
|
113
113
|
self._socket.bind(self._server_addr)
|
|
114
114
|
port = self._socket.getsockname()[1]
|
|
115
115
|
|
|
116
|
-
# Get the chunk limit of the socket, minus
|
|
116
|
+
# Get the chunk limit of the socket, minus 100 for some headroom
|
|
117
117
|
self._chunk_limit = self._socket.getsockopt(
|
|
118
|
-
socket.SOL_SOCKET, socket.SO_SNDBUF) -
|
|
118
|
+
socket.SOL_SOCKET, socket.SO_SNDBUF) - 100
|
|
119
119
|
|
|
120
120
|
logger.info("Chunk limit: " + str(self._chunk_limit))
|
|
121
121
|
|
package/midi-script/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version = "3.4.
|
|
1
|
+
version = "3.4.2"
|
package/ns/device.d.ts
CHANGED