ableton-js
Advanced tools
Comparing version 3.1.8 to 3.1.9
@@ -7,4 +7,12 @@ ### Changelog | ||
#### [v3.1.9](https://github.com/leolabs/ableton.js/compare/v3.1.8...v3.1.9) | ||
- :bug: Fix issue that could block the main thread in Live sometimes when no client port file exists [`8990a5d`](https://github.com/leolabs/ableton.js/commit/8990a5d00e0ae3a314a385f6748be39dd87cde90) | ||
- :memo: Update the link to unofficial API docs [`7a32f90`](https://github.com/leolabs/ableton.js/commit/7a32f90d273a3ef05aac22105e253235b66a6c97) | ||
- :bug: Fix copying the scripts not working if the Remote Scripts folder doesn't exist yet [`71ecf44`](https://github.com/leolabs/ableton.js/commit/71ecf44aadb843509c4ad92b27ddd0b27badfda1) | ||
#### [v3.1.8](https://github.com/leolabs/ableton.js/compare/v3.1.7...v3.1.8) | ||
> 10 May 2023 | ||
- :fire: Remove the postinstall hook [`d55efec`](https://github.com/leolabs/ableton.js/commit/d55efec00110398610d9f62457f5daa86293d985) | ||
@@ -11,0 +19,0 @@ - :bug: Fix type annotations which are unsupported in Live 10 [`b396684`](https://github.com/leolabs/ableton.js/commit/b3966844d1bf5f4d0f4c0d3b789b9386f82d7e72) |
{ | ||
"name": "ableton-js", | ||
"version": "3.1.8", | ||
"version": "3.1.9", | ||
"description": "Control Ableton Live from Node", | ||
@@ -19,3 +19,3 @@ "main": "index.js", | ||
"ableton:clean": "rm -f midi-script/AbletonJS/*.pyc", | ||
"ableton:copy-script": "set -- ~/Music/Ableton/User\\ Library/Remote\\ Scripts && rm -rf \"$1/AbletonJS\" && cp -r \"$(pwd)/midi-script\" \"$1/AbletonJS\" && rm -rf \"$1/AbletonJS/_Framework\"", | ||
"ableton:copy-script": "set -- ~/Music/Ableton/User\\ Library/Remote\\ Scripts && mkdir -p \"$1\" && rm -rf \"$1/AbletonJS\" && cp -r \"$(pwd)/midi-script\" \"$1/AbletonJS\" && rm -rf \"$1/AbletonJS/_Framework\"", | ||
"ableton10:launch": "set -- /Applications/Ableton*10* && open \"$1\"", | ||
@@ -22,0 +22,0 @@ "ableton11:launch": "set -- /Applications/Ableton*11* && open \"$1\"", |
@@ -9,3 +9,3 @@ # Ableton.js | ||
This package is still a work-in-progress. My goal is to expose all of | ||
[Ableton's MIDI Remote Script](https://julienbayle.studio/PythonLiveAPI_documentation/Live10.0.2.xml) | ||
[Ableton's MIDI Remote Script](https://nsuspray.github.io/Live_API_Doc/11.0.0.xml) | ||
functions to TypeScript. If you'd like to contribute, please feel free to do so. | ||
@@ -12,0 +12,0 @@ |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is not supported yet
260856
4964