diff --git a/README.md b/README.md index dabd45f..1d1057f 100644 --- a/README.md +++ b/README.md @@ -64,9 +64,9 @@ The _Diagram_ tab allows displaying the circuit SVG diagram. You can navigate in The [soundfile](https://faustdoc.grame.fr/manual/syntax/#soundfile-primitive) primitive can be used in the IDE. The audio files have to be accessed: -- simply dropping all needed soundfiles in the *Project Files* section on the left, then directly accessing them in the DSP code +- by dropping all needed soundfiles in the *Project Files* section on the left, then directly accessing them in the DSP code -- using a full URL like https://raw.githubusercontent.com/grame-cncm/GameLAN/master/baliphone/Gamelan_1_1_C_gauche.flac +- by using a full URL like https://raw.githubusercontent.com/grame-cncm/GameLAN/master/baliphone/Gamelan_1_1_C_gauche.flac - by defining the soundfile base URL folder with the `declare soundfiles "https://raw.githubusercontent.com/grame-cncm/GameLAN/master/baliphone";` metadata, then the actual audio file name in the code. See this [example](https://github.com/grame-cncm/GameLAN/blob/master/baliphone/Baliphone.dsp). Several base URL can be listed with the `declare soundfiles "https://url1;https://url2;https://url3";` kind of syntax diff --git a/package-lock.json b/package-lock.json index d2d9906..d8565fa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "fausteditorweb", - "version": "1.3.0", + "version": "1.3.1", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "fausteditorweb", - "version": "1.3.0", + "version": "1.3.1", "license": "GPL-3.0-or-later", "devDependencies": { "@babel/core": "^7.18.9", @@ -9025,9 +9025,9 @@ } }, "node_modules/terser": { - "version": "5.30.4", - "resolved": "https://registry.npmjs.org/terser/-/terser-5.30.4.tgz", - "integrity": "sha512-xRdd0v64a8mFK9bnsKVdoNP9GQIKUAaJPTaqEQDL4w/J8WaW4sWXXoMZ+6SimPkfT5bElreXf8m9HnmPc3E1BQ==", + "version": "5.31.0", + "resolved": "https://registry.npmjs.org/terser/-/terser-5.31.0.tgz", + "integrity": "sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==", "dev": true, "dependencies": { "@jridgewell/source-map": "^0.3.3", diff --git a/package.json b/package.json index 4c1ab6f..e71c406 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "fausteditorweb", - "version": "1.3.0", + "version": "1.3.1", "description": "Faust Editor", "main": "src/index.ts", "private": true, diff --git a/webpack.config.js b/webpack.config.js index 537e9bf..9b79c63 100644 --- a/webpack.config.js +++ b/webpack.config.js @@ -56,11 +56,14 @@ const config = { ] }, optimization: { + minimize: false + /* minimizer: [ new TerserPlugin({ exclude: /libfaust-wasm\.js/ }) ], + */ }, plugins: [ new CleanWebpackPlugin(),