Skip to content

Commit

Permalink
Updated with faustwasm 0.7.0. Set version to 1.2.9.
Browse files Browse the repository at this point in the history
  • Loading branch information
sletz committed Oct 2, 2024
1 parent 8aa7b50 commit 8a54b23
Show file tree
Hide file tree
Showing 5 changed files with 88 additions and 88 deletions.
166 changes: 83 additions & 83 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "fausteditor",
"private": true,
"version": "1.2.8",
"version": "1.2.9",
"description": "A simple Faust editor for the web",
"scripts": {
"dev": "vite",
Expand All @@ -13,7 +13,7 @@
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.4.0",
"@grame/faustwasm": "^0.6.4",
"@grame/faustwasm": "^0.7.0",
"@shren/faust-ui": "^1.1.13",
"codemirror": "^5.58.2",
"qrcode": "^1.5.3",
Expand Down
2 changes: 1 addition & 1 deletion src/compilefaust.js
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ function activateDSP(dsp) {
faustUI = new FaustUI({ ui: DSP.getUI(), root: faustUIRoot });
faustUI.paramChangeByUI = (path, value) => DSP.setParamValue(path, value);
DSP.setOutputParamHandler(output_handler);
DSP.listenSensors();
DSP.startSensors();
DSP.connect(audio_context.destination);

console.log(DSP.getNumInputs());
Expand Down
2 changes: 1 addition & 1 deletion src/faustlive-wasm.js
Original file line number Diff line number Diff line change
Expand Up @@ -499,7 +499,7 @@ const activateMonoDSP = (dsp) => {
}

// Setup UI
DSP.listenSensors();
DSP.startSensors();
faustUI = new FaustUI({ ui: DSP.getUI(), root: faustUIRoot });
faustUI.paramChangeByUI = (path, value) => DSP.setParamValue(path, value);
DSP.setOutputParamHandler(output_handler);
Expand Down
2 changes: 1 addition & 1 deletion src/faustlive.js
Original file line number Diff line number Diff line change
Expand Up @@ -604,7 +604,7 @@ window.addEventListener('touchstart', function () {

// Main entry point, called when libfaust.js has finished to load
function init() {
console.log('FaustEditor: version 1.2.8');
console.log('FaustEditor: version 1.2.9');

// Try to load code from current URL
configureEditorFromUrlParams();
Expand Down

0 comments on commit 8a54b23

Please sign in to comment.