alphatheta-connect 0.19.2 → 0.21.0
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/README.md +6 -0
- package/lib/artwork/parsers/index.d.ts +2 -2
- package/lib/cli.js +679 -79
- package/lib/cli.js.map +1 -1
- package/lib/control/index.d.ts +33 -2
- package/lib/control/stagehand.d.ts +20 -0
- package/lib/entities.d.ts +2 -2
- package/lib/index.d.ts +4 -4
- package/lib/index.js +680 -88
- package/lib/index.js.map +1 -1
- package/lib/localdb/onelibrary/index.d.ts +1 -1
- package/lib/network.d.ts +19 -5
- package/lib/remotedb/fields.d.ts +6 -6
- package/lib/remotedb/message/index.d.ts +1 -1
- package/lib/status/index.d.ts +4 -0
- package/lib/status/position.d.ts +4 -0
- package/lib/status/types.d.ts +87 -0
- package/lib/status/utils.d.ts +9 -0
- package/lib/types.d.ts +4 -3
- package/lib/types.js +1 -3
- package/lib/types.js.map +1 -1
- package/lib/virtualcdj/index.d.ts +1 -0
- package/lib/virtualcdj/stagehand.d.ts +51 -0
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -32,6 +32,12 @@ Alternative implementations of the Prolink protocol: [Java](https://github.com/D
|
|
|
32
32
|
where traditional virtual CDJ connection isn't possible.
|
|
33
33
|
See [ALL_IN_ONE_UNITS.md](docs/ALL_IN_ONE_UNITS.md) for details.
|
|
34
34
|
|
|
35
|
+
- **Pioneer Stagehand Connection Mode** *(new)* - Actively join the Pro DJ Link
|
|
36
|
+
network as a virtual Stagehand iPad device. Access rich, high-frequency telemetry
|
|
37
|
+
events (mixer faders, EQ values, high-frequency VU level samples) and direct remote
|
|
38
|
+
control over CDJs (play, pause, seek, track skip, preference writes like On-Air).
|
|
39
|
+
See [STAGEHAND.md](docs/STAGEHAND.md) for details.
|
|
40
|
+
|
|
35
41
|
- **OneLibrary Support** *(new)* - Full support for rekordbox 7.x's new OneLibrary
|
|
36
42
|
format (exportLibrary.db) with SQLCipher encryption, including tracks, playlists,
|
|
37
43
|
cues, hot cue banks, myTags, and history.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
+
export { extractFromAiff } from './aiff';
|
|
2
|
+
export { extractFromFlac } from './flac';
|
|
1
3
|
export { extractFromMp3 } from './id3';
|
|
2
4
|
export { extractFromMp4 } from './mp4';
|
|
3
|
-
export { extractFromFlac } from './flac';
|
|
4
|
-
export { extractFromAiff } from './aiff';
|
|
5
5
|
export { detectImageType, normalizeMimeType } from './utils';
|