Security News
cURL Project and Go Security Teams Reject CVSS as Broken
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
ableton-detect
Advanced tools
Get information from installed Ableton Live instances
ableton-detect
scans application folders and returns an array of all installed Ableton Live instances. For every detected instance, it attempts to read the versions, varients (eg. Suite), licences and serial numbers for Ableton and addons, architectures, and more, reporting any issues it encounters. The goal is to be able to determine if a given instance will function.
During scanning, a number of checks are performed to detect broken or damaged installations. Compatibility checks Any issues found are reported in the output object's .error
array.
By default, only /Applications
and ~/Applications
are searched, but additional search directories can be provided.
This package exports an ES module and requires Node 15+ and macOS.
Basic example:
import getAbletons from '@stonegray/ableton-detect'
console.log(await getAbletons());
Output:
[
{
relPath: 'Ableton Live 10 Suite.app',
absPath: '/Users/stonegray/Applications/Ableton Live 10 Lite.app',
variant: 'Suite',
version: {
raw: '10.1.25',
major: 10,
minor: 1,
patch: 25,
version: '10.1.25'
},
fullVersion: '10.1.25 (2020-10-01_995d768242)',
minSystemVersion: '10.11.6',
arch: [ 'x64' ]
icon: '/Users/stonegray/Applications/Ableton Live 10 Lite.app/Contents/Resources/app.icns', // Icons are different between versions and varients
licences: [
/* Licence support is experimental and output may change in future versions */
],
ok: true,
errors: [],
}
]
This library provides experimental support for reading licences. Currently, it provides the following:
0.0.8+
)Example uses of this information:
Licences are stored in the AB1E5678
(.cfg) files, which I don't have any documentation for. The current code to read the file format works, but needs to be rewriten once we know how to correctly decode the format using the information in the header.
Licences are stored on the system by version, so the licences array for an Ableton Intro instance will contain Ableton Suite licence identifiers if the version is identical.
0.0.4
:
0.0.5
:
0.0.8
:
FAQs
Get information from installed Ableton Live instances
We found that ableton-detect demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.
Security News
Biden's executive order pushes for AI-driven cybersecurity, software supply chain transparency, and stronger protections for federal and open source systems.