ableton-js
Advanced tools
Comparing version 3.3.5 to 3.4.0
@@ -7,4 +7,11 @@ ### Changelog | ||
#### [v3.4.0](https://github.com/leolabs/ableton.js/compare/v3.3.5...v3.4.0) | ||
- :bug: Fix setting quantizations not working correctly [`cd7a6e5`](https://github.com/leolabs/ableton.js/commit/cd7a6e52e65ad8dea9082b8b24afed952f6b33ad) | ||
- :sparkles: Return mute and solo properties for each track [`5585533`](https://github.com/leolabs/ableton.js/commit/558553386dc7a0927541c2b246cc27fd86677641) | ||
#### [v3.3.5](https://github.com/leolabs/ableton.js/compare/v3.3.4...v3.3.5) | ||
> 6 November 2023 | ||
- :sparkles: Properly create and return scenes and tracks [`dc550f1`](https://github.com/leolabs/ableton.js/commit/dc550f15a79360caf3b247f5373a1d255b2b3476) | ||
@@ -11,0 +18,0 @@ - :bug: Fix `createScene` not working when no index is provided [`e6bf99b`](https://github.com/leolabs/ableton.js/commit/e6bf99b7bcbcc053a2cddd12b5a77d91f36b0430) |
@@ -159,16 +159,16 @@ import { Ableton } from ".."; | ||
export declare enum Quantization { | ||
q_8_bars = "q_8_bars", | ||
q_4_bars = "q_4_bars", | ||
q_2_bars = "q_2_bars", | ||
q_4_bars = "q_4_bars", | ||
q_8_bars = "q_8_bars", | ||
q_bar = "q_bar", | ||
q_eight = "q_eight", | ||
q_eight_triplet = "q_eight_triplet", | ||
q_half = "q_half", | ||
q_half_triplet = "q_half_triplet", | ||
q_no_q = "q_no_q", | ||
q_quarter = "q_quarter", | ||
q_quarter_triplet = "q_quarter_triplet", | ||
q_eight = "q_eight", | ||
q_eight_triplet = "q_eight_triplet", | ||
q_sixtenth = "q_sixtenth", | ||
q_sixtenth_triplet = "q_sixtenth_triplet", | ||
q_thirtytwoth = "q_thirtytwoth" | ||
q_thirtytwoth = "q_thirtytwoth", | ||
q_no_q = "q_no_q" | ||
} | ||
@@ -175,0 +175,0 @@ export declare enum RecordingQuantization { |
@@ -20,16 +20,16 @@ "use strict"; | ||
(function (Quantization) { | ||
Quantization["q_8_bars"] = "q_8_bars"; | ||
Quantization["q_4_bars"] = "q_4_bars"; | ||
Quantization["q_2_bars"] = "q_2_bars"; | ||
Quantization["q_4_bars"] = "q_4_bars"; | ||
Quantization["q_8_bars"] = "q_8_bars"; | ||
Quantization["q_bar"] = "q_bar"; | ||
Quantization["q_eight"] = "q_eight"; | ||
Quantization["q_eight_triplet"] = "q_eight_triplet"; | ||
Quantization["q_half"] = "q_half"; | ||
Quantization["q_half_triplet"] = "q_half_triplet"; | ||
Quantization["q_no_q"] = "q_no_q"; | ||
Quantization["q_quarter"] = "q_quarter"; | ||
Quantization["q_quarter_triplet"] = "q_quarter_triplet"; | ||
Quantization["q_eight"] = "q_eight"; | ||
Quantization["q_eight_triplet"] = "q_eight_triplet"; | ||
Quantization["q_sixtenth"] = "q_sixtenth"; | ||
Quantization["q_sixtenth_triplet"] = "q_sixtenth_triplet"; | ||
Quantization["q_thirtytwoth"] = "q_thirtytwoth"; | ||
Quantization["q_no_q"] = "q_no_q"; | ||
})(Quantization || (exports.Quantization = Quantization = {})); | ||
@@ -36,0 +36,0 @@ var RecordingQuantization; |
@@ -150,2 +150,4 @@ import { Ableton } from ".."; | ||
is_grouped: boolean; | ||
mute: boolean; | ||
solo: boolean; | ||
} | ||
@@ -152,0 +154,0 @@ export declare class Track extends Namespace<GettableProperties, TransformedProperties, SettableProperties, ObservableProperties> { |
{ | ||
"name": "ableton-js", | ||
"version": "3.3.5", | ||
"version": "3.4.0", | ||
"description": "Control Ableton Live from Node", | ||
@@ -5,0 +5,0 @@ "main": "index.js", |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
195974
3076