Skip to content

Commit a5d4e07

Browse files
remo5000rrtheonlyone
authored andcommitted
Add contest functions for Curves and Sounds (#387)
* Add sound functions * Add curves contest functions * Bump version
1 parent e359f3e commit a5d4e07

File tree

2 files changed

+22
-3
lines changed

2 files changed

+22
-3
lines changed

package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"private": true,
33
"name": "cadet-frontend",
4-
"version": "1.0.12",
4+
"version": "1.0.13",
55
"scripts-info": {
66
"format": "Format source code",
77
"start": "Start the Webpack development server",

src/reducers/externalLibraries.ts

+21-2
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,18 @@ const libEntries: Array<[ExternalLibraryName, string[]]> = [
8787
'squeeze_full_view',
8888
'squeeze_rectangular_portion',
8989
'translate',
90-
'scale'
90+
'scale',
91+
/** Contest functions */
92+
'alternative_unit_circle',
93+
'rotate_pi_over_2',
94+
'scale_x_y',
95+
'gosperize',
96+
'gosper_curve',
97+
'show_connected_gosper',
98+
'repeated',
99+
'param_gosper',
100+
'param_gosperize',
101+
'rotate_around_origin'
91102
]
92103
],
93104
[
@@ -128,7 +139,15 @@ const libEntries: Array<[ExternalLibraryName, string[]]> = [
128139
'triangle_sound',
129140
'sawtooth_sourcesound',
130141
'sawtooth_sound',
131-
'play_concurrently'
142+
'play_concurrently',
143+
/** Contest functions */
144+
'adsr',
145+
'stacking_adsr',
146+
'trombone',
147+
'piano',
148+
'bell',
149+
'violin',
150+
'cello'
132151
]
133152
]
134153
]

0 commit comments

Comments
 (0)