Skip to content

Commit 7ed6b8f

Browse files
committed
Finalized
- Added all the last bits!
1 parent 6b31e2b commit 7ed6b8f

27 files changed

+1487
-818
lines changed
Binary file not shown.

Release/ms24_electron-1.0.0 Setup.exe

93.4 MB
Binary file not shown.

index.html

-42
Original file line numberDiff line numberDiff line change
@@ -196,48 +196,6 @@
196196
</div>
197197
</div>
198198
<div class="w-[250px] flex justify-end">
199-
<!--
200-
<div class="flex flex-col p-1 border border-gray-600 rounded-lg">
201-
<div class="border border-gray-600 border-b-0 rounded-lg rounded-br-none rounded-bl-none p-1 flex mr-1 h-min">
202-
<p id="master_gain_label_h" class="text-sm self-center w-[30px]">Vol</p>
203-
<webaudio-knob
204-
id="master_gain_h"
205-
class="control masterControl ml-1"
206-
colors="#FFFFFF;#2C292D;#D9D9D9"
207-
diameter="30"
208-
min="0"
209-
max="2"
210-
value="1"
211-
step=".01"
212-
></webaudio-knob>
213-
<webaudio-param
214-
id="master_gain_readout_h"
215-
link="master_gain_h"
216-
fontSize="10"
217-
class="border border-gray-600 self-center ml-2"
218-
></webaudio-param>
219-
</div>
220-
<div class="border border-gray-600 border-t-0 rounded-lg rounded-tr-none rounded-tl-none p-1 flex mr-1 h-min">
221-
<p id="master_bpm_label_h" class="text-sm self-center w-[30px]">BPM</p>
222-
<webaudio-knob
223-
id="master_bpm_h"
224-
class="control masterControl ml-1"
225-
colors="#FFFFFF;#2C292D;#D9D9D9"
226-
diameter="30"
227-
min="1"
228-
max="600"
229-
value="120"
230-
step="1"
231-
></webaudio-knob>
232-
<webaudio-param
233-
id="master_bpm_readout_h"
234-
link="master_bpm_h"
235-
fontSize="10"
236-
class="border border-gray-600 self-center ml-2"
237-
></webaudio-param>
238-
</div>
239-
</div>
240-
-->
241199
<div class="flex p-1 border border-gray-600 rounded-lg">
242200
<div class="border border-gray-600 rounded-lg p-1 flex flex-col mr-1 w-[50px]">
243201
<p id="master_bpm_label" class="text-center text-sm">BPM</p>

public/presets/Alien Drone.ms24preset

+102
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,102 @@
1+
{
2+
"METADATA": {
3+
"name": "Alien Drone",
4+
"type": "Lead",
5+
"author": "MangoSynth",
6+
"rating": "3"
7+
},
8+
"MASTER": {
9+
"gain": 1,
10+
"octaveOffset": 0,
11+
"bpm": 120
12+
},
13+
"OSC_A": {
14+
"enabled": 1,
15+
"octave": 0,
16+
"detune": 0,
17+
"volume": -5,
18+
"shape": 2,
19+
"attack": 0.005,
20+
"decay": 0.1,
21+
"sustain": 0.3,
22+
"release": 1,
23+
"count": 1,
24+
"spread": 0,
25+
"harmonicity": 10,
26+
"modulationIndex": 24,
27+
"modulationShape": 0
28+
},
29+
"OSC_B": {
30+
"enabled": 1,
31+
"octave": 1,
32+
"detune": 0,
33+
"volume": -5,
34+
"shape": 1,
35+
"attack": 0.005,
36+
"decay": 0.1,
37+
"sustain": 0.3,
38+
"release": 1,
39+
"count": 1,
40+
"spread": 0,
41+
"harmonicity": 0,
42+
"modulationIndex": 0,
43+
"modulationShape": 0
44+
},
45+
"OSC_C": {
46+
"enabled": 1,
47+
"octave": 0,
48+
"detune": 0,
49+
"volume": 0,
50+
"shape": 1,
51+
"attack": 0.005,
52+
"decay": 0.1,
53+
"sustain": 0.3,
54+
"release": 1,
55+
"count": 3,
56+
"spread": 10,
57+
"harmonicity": 15,
58+
"modulationShape": 0
59+
},
60+
"FILTER": {
61+
"enabled": 1,
62+
"frequency": 5000,
63+
"Q": 0,
64+
"gain": 0,
65+
"rolloff": 0,
66+
"type": 1,
67+
"osc_a": 1,
68+
"osc_b": 1,
69+
"osc_c": 0,
70+
"cutoff": 5000
71+
},
72+
"LFO": {
73+
"enabled": 0,
74+
"target": "FilterFrequency",
75+
"type": 0,
76+
"grid": 5,
77+
"min": 0,
78+
"max": 5000,
79+
"osc_a": 1,
80+
"osc_b": 1,
81+
"osc_c": 1
82+
},
83+
"FX": {
84+
"enabled": 1,
85+
"type": "Distortion",
86+
"param1": 0,
87+
"param2": 0,
88+
"param3": 0.5,
89+
"param4": 0,
90+
"mix": 0.5,
91+
"osc_a": 1,
92+
"osc_b": 1,
93+
"osc_c": 1
94+
},
95+
"ARP": {
96+
"A_enabled": 0,
97+
"B_enabled": 0,
98+
"C_enabled": 0,
99+
"pattern": "up",
100+
"playbackRate": 2
101+
}
102+
}

public/presets/buddhabass.ms24preset renamed to public/presets/BuddyBass.ms24preset

+13-4
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
{
22
"METADATA":{
3-
"name":"BuddhaBass",
3+
"name":"BuddyBass",
44
"type":"Bass",
5-
"author":"Buddha",
6-
"rating":5
5+
"author":"MangoSynth",
6+
"rating":3
77
},
88
"MASTER":{
9-
"gain":1
9+
"gain": 1,
10+
"octaveOffset": 0,
11+
"bpm": 120
1012
},
1113
"OSC_A":{
1214
"enabled":1,
@@ -89,5 +91,12 @@
8991
"osc_a":1,
9092
"osc_b":1,
9193
"osc_c":1
94+
},
95+
"ARP":{
96+
"A_enabled": 0,
97+
"B_enabled": 0,
98+
"C_enabled": 0,
99+
"pattern": "up",
100+
"playbackRate": 2
92101
}
93102
}

public/presets/Cheery Arp.ms24preset

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
{
2+
"METADATA": {
3+
"name": "Cheery Arp",
4+
"type": "Arp",
5+
"author": "MangoSynth",
6+
"rating": "3"
7+
},
8+
"MASTER": {
9+
"gain": 2,
10+
"octaveOffset": 0,
11+
"bpm": 120
12+
},
13+
"OSC_A": {
14+
"enabled": 1,
15+
"octave": 0,
16+
"detune": 0,
17+
"volume": 0,
18+
"shape": 1,
19+
"attack": 0.005,
20+
"decay": 0.1,
21+
"sustain": 0.3,
22+
"release": 2.75,
23+
"count": 1,
24+
"spread": 0,
25+
"harmonicity": 0,
26+
"modulationIndex": 0,
27+
"modulationShape": 0
28+
},
29+
"OSC_B": {
30+
"enabled": 1,
31+
"octave": 1,
32+
"detune": 0,
33+
"volume": -9,
34+
"shape": 1,
35+
"attack": 0.005,
36+
"decay": 0.1,
37+
"sustain": 0.3,
38+
"release": 1,
39+
"count": 1,
40+
"spread": 0,
41+
"harmonicity": 0,
42+
"modulationIndex": 0,
43+
"modulationShape": 0
44+
},
45+
"OSC_C": {
46+
"enabled": 1,
47+
"octave": 0,
48+
"detune": 0,
49+
"volume": -7,
50+
"shape": 1,
51+
"attack": 0.005,
52+
"decay": 0.1,
53+
"sustain": 0.3,
54+
"release": 0.25,
55+
"count": 1,
56+
"spread": 0,
57+
"harmonicity": 0,
58+
"modulationShape": 0
59+
},
60+
"FILTER": {
61+
"enabled": 0,
62+
"frequency": 5000,
63+
"Q": 0,
64+
"gain": 0,
65+
"rolloff": 0,
66+
"type": 0,
67+
"osc_a": 1,
68+
"osc_b": 1,
69+
"osc_c": 1
70+
},
71+
"LFO": {
72+
"enabled": 0,
73+
"target": "FilterFrequency",
74+
"type": 0,
75+
"grid": 5,
76+
"min": 0,
77+
"max": 1000,
78+
"osc_a": 1,
79+
"osc_b": 1,
80+
"osc_c": 1
81+
},
82+
"FX": {
83+
"enabled": 1,
84+
"type": "FreqShift",
85+
"param1": 1,
86+
"param2": 0,
87+
"param3": 0.5,
88+
"param4": 0,
89+
"mix": 0.5,
90+
"osc_a": 1,
91+
"osc_b": 1,
92+
"osc_c": 1
93+
},
94+
"ARP": {
95+
"A_enabled": 1,
96+
"B_enabled": 0,
97+
"C_enabled": 1,
98+
"pattern": 2,
99+
"playbackRate": 3
100+
}
101+
}

public/presets/Dark FM.ms24preset

+101
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,101 @@
1+
{
2+
"METADATA": {
3+
"name": "Dark FM",
4+
"type": "Bass",
5+
"author": "MangoSynth",
6+
"rating": 5
7+
},
8+
"MASTER": {
9+
"gain": 1,
10+
"octaveOffset": 0,
11+
"bpm": 120
12+
},
13+
"OSC_A": {
14+
"enabled": 1,
15+
"octave": -2,
16+
"detune": 0,
17+
"volume": 0,
18+
"shape": 1,
19+
"attack": 0.005,
20+
"decay": 0.1,
21+
"sustain": 0.3,
22+
"release": 1,
23+
"count": 4,
24+
"spread": 26,
25+
"harmonicity": 0.5,
26+
"modulationIndex": 40,
27+
"modulationShape": 0
28+
},
29+
"OSC_B": {
30+
"enabled": 0,
31+
"octave": 1,
32+
"detune": 0,
33+
"volume": 0,
34+
"shape": 2,
35+
"attack": 0.005,
36+
"decay": 0.1,
37+
"sustain": 0.3,
38+
"release": 1,
39+
"count": 1,
40+
"spread": 0,
41+
"harmonicity": 0,
42+
"modulationIndex": 0,
43+
"modulationShape": 0
44+
},
45+
"OSC_C": {
46+
"enabled": 1,
47+
"octave": 0,
48+
"detune": 7,
49+
"volume": -7,
50+
"shape": 2,
51+
"attack": 0.005,
52+
"decay": 0.1,
53+
"sustain": 0.3,
54+
"release": 1,
55+
"count": 4,
56+
"spread": 6,
57+
"harmonicity": 0,
58+
"modulationShape": 0
59+
},
60+
"FILTER": {
61+
"enabled": 1,
62+
"frequency": 1000,
63+
"Q": 1,
64+
"gain": 0,
65+
"rolloff": 0,
66+
"type": 0,
67+
"osc_a": 1,
68+
"osc_b": 1,
69+
"osc_c": 0
70+
},
71+
"LFO": {
72+
"enabled": 0,
73+
"target": "FilterFrequency",
74+
"type": 0,
75+
"grid": 5,
76+
"min": 0,
77+
"max": 1000,
78+
"osc_a": 1,
79+
"osc_b": 1,
80+
"osc_c": 1
81+
},
82+
"FX": {
83+
"enabled": 1,
84+
"type": "Distortion",
85+
"param1": 0.2,
86+
"param2": 0,
87+
"param3": 0.5,
88+
"param4": 0,
89+
"mix": 0.5,
90+
"osc_a": 1,
91+
"osc_b": 1,
92+
"osc_c": 1
93+
},
94+
"ARP": {
95+
"A_enabled": 0,
96+
"B_enabled": 0,
97+
"C_enabled": 0,
98+
"pattern": "up",
99+
"playbackRate": 2
100+
}
101+
}

0 commit comments

Comments
 (0)