Skip to content

Commit

Permalink
Merge pull request #1 from Wasted-Audio/develop
Browse files Browse the repository at this point in the history
Develop
  • Loading branch information
dromer authored Apr 7, 2024
2 parents ff15ed9 + 78f97bc commit f7255dc
Show file tree
Hide file tree
Showing 5 changed files with 30 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
types: [nightly]

env:
HVCC_VERSION: 04515d7a6be0fa2a9f54207d4a2a209d121c4b3f
HVCC_VERSION: 89446f737e2b8bc7794fbdd4de2dcce2cb43c874


jobs:
Expand Down
4 changes: 3 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
@@ -1,6 +1,8 @@
SHELL:=/bin/bash

all: hvcc html

PLUGINS = chip krell
PLUGINS = chip krell synth_simple

html: hvcc
$(foreach var, $(PLUGINS), mkdir _site/$(var);)
Expand Down
5 changes: 3 additions & 2 deletions _site/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,9 @@
<div class="widget">
<div class="row title">
<h1>HVCC Javascript/WebAssembly examples</h1>
<div class="col"><h2><a href="chip">chip</a></h2></div>
<div class="col"><h2><a href="krell">krell</a></h2></div>
<div class="row"><h2><a href="chip">chip</a></h2></div>
<div class="row"><h2><a href="krell">krell</a></h2></div>
<div class="row"><h2><a href="synth_simple">simple synth</a></h2></div>
</div>

<div class="row">
Expand Down
2 changes: 1 addition & 1 deletion examples
22 changes: 22 additions & 0 deletions js_synth_simple.pd
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
#N canvas 502 156 769 574 12;
#X obj 229 96 notein;
#X obj 229 169 mtof;
#X obj 220 348 dac~;
#X obj 229 134 stripnote;
#X obj 373 133 sel 0;
#X obj 229 202 examples/synth_simple;
#X obj 259 236 r Volume @hv_param 0 1 0.75;
#X obj 230 301 *~;
#X obj 259 266 hsl 128 15 0 1 0 0 empty empty empty -2 -8 0 10 #fcfcfc #000000 #000000 0 1;
#X connect 0 0 3 0;
#X connect 0 1 4 0;
#X connect 0 1 3 1;
#X connect 1 0 5 0;
#X connect 3 0 1 0;
#X connect 3 1 5 1;
#X connect 4 0 5 2;
#X connect 5 0 7 0;
#X connect 6 0 8 0;
#X connect 7 0 2 0;
#X connect 7 0 2 1;
#X connect 8 0 7 1;

0 comments on commit f7255dc

Please sign in to comment.