Skip to content

Commit

Permalink
Add contest functions for Curves and Sounds (#387)
Browse files Browse the repository at this point in the history
* Add sound functions

* Add curves contest functions

* Bump version
  • Loading branch information
remo5000 authored and rrtheonlyone committed Oct 11, 2018
1 parent e359f3e commit a5d4e07
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"private": true,
"name": "cadet-frontend",
"version": "1.0.12",
"version": "1.0.13",
"scripts-info": {
"format": "Format source code",
"start": "Start the Webpack development server",
Expand Down
23 changes: 21 additions & 2 deletions src/reducers/externalLibraries.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,18 @@ const libEntries: Array<[ExternalLibraryName, string[]]> = [
'squeeze_full_view',
'squeeze_rectangular_portion',
'translate',
'scale'
'scale',
/** Contest functions */
'alternative_unit_circle',
'rotate_pi_over_2',
'scale_x_y',
'gosperize',
'gosper_curve',
'show_connected_gosper',
'repeated',
'param_gosper',
'param_gosperize',
'rotate_around_origin'
]
],
[
Expand Down Expand Up @@ -128,7 +139,15 @@ const libEntries: Array<[ExternalLibraryName, string[]]> = [
'triangle_sound',
'sawtooth_sourcesound',
'sawtooth_sound',
'play_concurrently'
'play_concurrently',
/** Contest functions */
'adsr',
'stacking_adsr',
'trombone',
'piano',
'bell',
'violin',
'cello'
]
]
]
Expand Down

0 comments on commit a5d4e07

Please sign in to comment.