@open-audio-stack/core 0.0.3 → 0.0.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/build/types/Package.d.ts
CHANGED
|
@@ -11,10 +11,12 @@ export interface PackageVersions {
|
|
|
11
11
|
[version: string]: PackageVersionType;
|
|
12
12
|
}
|
|
13
13
|
export interface PackageVersion {
|
|
14
|
+
audio: string;
|
|
14
15
|
author: string;
|
|
15
16
|
changes: string;
|
|
16
17
|
date: string;
|
|
17
18
|
description: string;
|
|
19
|
+
image: string;
|
|
18
20
|
license: License;
|
|
19
21
|
name: string;
|
|
20
22
|
tags: string[];
|
package/build/types/Plugin.d.ts
CHANGED
|
@@ -3,6 +3,8 @@ export declare enum PluginFormat {
|
|
|
3
3
|
AvidAudioExtension = "aax",
|
|
4
4
|
CleverAudioPlugin = "clap",
|
|
5
5
|
LADSPAVersion2 = "lv2",
|
|
6
|
+
LinuxStandalone = "elf",
|
|
7
|
+
MacStandalone = "app",
|
|
6
8
|
RealTimeAudioSuite = "rta",
|
|
7
9
|
SoundFont2 = "sf2",
|
|
8
10
|
SFZ = "sfz",
|
|
@@ -10,7 +12,8 @@ export declare enum PluginFormat {
|
|
|
10
12
|
VSTLinux = "so",
|
|
11
13
|
VSTMac = "vst",
|
|
12
14
|
VSTWin = "dll",
|
|
13
|
-
VST3 = "vst3"
|
|
15
|
+
VST3 = "vst3",
|
|
16
|
+
WinStandalone = "exe"
|
|
14
17
|
}
|
|
15
18
|
export interface PluginFormatOption {
|
|
16
19
|
description: string;
|
|
@@ -4,6 +4,8 @@ export var PluginFormat;
|
|
|
4
4
|
PluginFormat["AvidAudioExtension"] = "aax";
|
|
5
5
|
PluginFormat["CleverAudioPlugin"] = "clap";
|
|
6
6
|
PluginFormat["LADSPAVersion2"] = "lv2";
|
|
7
|
+
PluginFormat["LinuxStandalone"] = "elf";
|
|
8
|
+
PluginFormat["MacStandalone"] = "app";
|
|
7
9
|
PluginFormat["RealTimeAudioSuite"] = "rta";
|
|
8
10
|
PluginFormat["SoundFont2"] = "sf2";
|
|
9
11
|
PluginFormat["SFZ"] = "sfz";
|
|
@@ -12,6 +14,7 @@ export var PluginFormat;
|
|
|
12
14
|
PluginFormat["VSTMac"] = "vst";
|
|
13
15
|
PluginFormat["VSTWin"] = "dll";
|
|
14
16
|
PluginFormat["VST3"] = "vst3";
|
|
17
|
+
PluginFormat["WinStandalone"] = "exe";
|
|
15
18
|
})(PluginFormat || (PluginFormat = {}));
|
|
16
19
|
export const pluginFormats = [
|
|
17
20
|
{
|
|
@@ -39,6 +42,16 @@ export const pluginFormats = [
|
|
|
39
42
|
value: PluginFormat.LADSPAVersion2,
|
|
40
43
|
name: 'LADSPA Version 2',
|
|
41
44
|
},
|
|
45
|
+
{
|
|
46
|
+
description: 'Linux standalone application.',
|
|
47
|
+
value: PluginFormat.LinuxStandalone,
|
|
48
|
+
name: 'Linux Standalone',
|
|
49
|
+
},
|
|
50
|
+
{
|
|
51
|
+
description: 'MacOS standalone application.',
|
|
52
|
+
value: PluginFormat.MacStandalone,
|
|
53
|
+
name: 'MacOS Standalone',
|
|
54
|
+
},
|
|
42
55
|
{
|
|
43
56
|
description: 'Widely used format for sound samples in musical instruments.',
|
|
44
57
|
value: PluginFormat.SoundFont2,
|
|
@@ -74,4 +87,9 @@ export const pluginFormats = [
|
|
|
74
87
|
value: PluginFormat.VST3,
|
|
75
88
|
name: 'Virtual Studio Technology 3',
|
|
76
89
|
},
|
|
90
|
+
{
|
|
91
|
+
description: 'Windows standalone application.',
|
|
92
|
+
value: PluginFormat.WinStandalone,
|
|
93
|
+
name: 'Windows Standalone',
|
|
94
|
+
},
|
|
77
95
|
];
|
package/build/types/Preset.d.ts
CHANGED
package/build/types/Project.d.ts
CHANGED
|
@@ -8,7 +8,7 @@ export interface ProjectInterface extends PackageVersion {
|
|
|
8
8
|
type: ProjectType;
|
|
9
9
|
}
|
|
10
10
|
export interface ProjectFile extends FileInterface {
|
|
11
|
-
|
|
11
|
+
contains: ProjectFormat[];
|
|
12
12
|
}
|
|
13
13
|
export interface ProjectPlugins {
|
|
14
14
|
[slug: string]: string;
|