ableton-js 3.4.3 → 3.4.4
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/version.py +1 -1
- package/ns/song.d.ts +3 -0
- 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
|
+
#### [v3.4.4](https://github.com/leolabs/ableton.js/compare/v3.4.3...v3.4.4)
|
|
8
|
+
|
|
9
|
+
- :sparkles: Add the `tempo_follower_enabled` property [`8cf68c8`](https://github.com/leolabs/ableton.js/commit/8cf68c8e2a261cea6f8ebab8ec9e5db8a8c39195)
|
|
10
|
+
|
|
7
11
|
#### [v3.4.3](https://github.com/leolabs/ableton.js/compare/v3.4.2...v3.4.3)
|
|
8
12
|
|
|
13
|
+
> 16 March 2024
|
|
14
|
+
|
|
9
15
|
- :loud_sound: Improve error logging [`5c35106`](https://github.com/leolabs/ableton.js/commit/5c35106a2702fab9bc97ba377478cbc884041c93)
|
|
10
16
|
- :bug: Fix issues with converting iterables to arrays in Live 10 [`2af2f25`](https://github.com/leolabs/ableton.js/commit/2af2f25453edabbc2a685f7358aa491eb1f79cfc)
|
|
11
17
|
|
package/midi-script/version.py
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
version = "3.4.
|
|
1
|
+
version = "3.4.4"
|
package/ns/song.d.ts
CHANGED
|
@@ -50,6 +50,7 @@ export interface GettableProperties {
|
|
|
50
50
|
song_length: number;
|
|
51
51
|
swing_amount: number;
|
|
52
52
|
tempo: number;
|
|
53
|
+
tempo_follower_enabled: boolean;
|
|
53
54
|
tracks: RawTrack[];
|
|
54
55
|
visible_tracks: RawTrack[];
|
|
55
56
|
}
|
|
@@ -99,6 +100,7 @@ export interface SettableProperties {
|
|
|
99
100
|
song_length: number;
|
|
100
101
|
swing_amount: number;
|
|
101
102
|
tempo: number;
|
|
103
|
+
tempo_follower_enabled: boolean;
|
|
102
104
|
visible_tracks: number;
|
|
103
105
|
}
|
|
104
106
|
export interface ObservableProperties {
|
|
@@ -139,6 +141,7 @@ export interface ObservableProperties {
|
|
|
139
141
|
song_length: number;
|
|
140
142
|
swing_amount: number;
|
|
141
143
|
tempo: number;
|
|
144
|
+
tempo_follower_enabled: boolean;
|
|
142
145
|
tracks: RawTrack[];
|
|
143
146
|
}
|
|
144
147
|
export interface SmpteTime {
|