Skip to content

Commit 13c4768

Browse files
Merge pull request #4 from CICM/dev/v0.1.0
Dev/v0.1.0
2 parents ea5f68f + c147f74 commit 13c4768

22 files changed

+750
-372
lines changed

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -38,6 +38,7 @@ before_deploy:
3838
- cp -r src/ external/sources
3939
- cp README.md external/README.txt
4040
- cp LICENSE external/LICENSE.txt
41+
- chmod 0444 external/.default.dsp
4142
- curl -o ./external/faust-quick-reference.pdf http://faust.grame.fr/images/faust-quick-reference.pdf
4243
- mv external faustgen~
4344
- zip -r "faustgen_tilde-$release_arch-sources.zip" faustgen~

ChangeLog.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,13 @@
1+
### v0.1.0
2+
- Add support to preserve parameters values during recompilation
3+
- Fix autocompilation when DSP instance not initialized
4+
- Fix support for the double-float-precision option
5+
- Add support to look for the DSP file in all Pd's search paths
6+
- Add support to open the FAUST file in the default text editor when object is clicked
7+
- Add a default locked FAUST file used when no argument is provided
8+
19
### v0.0.5
2-
- Fix when no arguments
10+
- Fix when no argument is provided
311
- Update deken script
412
- Fix sources distribution
513

ToDoList.md

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,2 @@
11
- Mesure DSP time of the code
22
- Use automatic optimizations with compile options
3-
- Check if FAUST supports in-place processing
4-
- Check why FAUST double option crashes
5-
- Add method to open the FAUST file in the default text editor
6-
- Add a default temporary FAUST file when no argument
7-
- Add support for saving parameters states

appveyor.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@ after_build:
3131
- copy LICENSE external\LICENSE.txt
3232
- xcopy /S /E /Y /I .\faust\libraries .\external\libs
3333
- xcopy /S /E /Y /I .\src .\external\sources
34+
- attrib +R external\.default.dsp
3435
- rename external faustgen~
3536
- 7z a "faustgen_tilde-%release_arch%-sources.zip" faustgen~
3637

external/.default.dsp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
import("stdfaust.lib");
2+
3+
process = _;

external/examples/parameters.dsp

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
declare name "Dummy";
2+
declare version "1.0";
3+
declare author "Heu... me...";
4+
5+
6+
process = _ * param1 * param2 * (param3 / 3) * (param4 /4)
7+
with
8+
{
9+
param1 = button("button");
10+
param2 = checkbox("checkbox");
11+
param3 = vslider("slider", 3, 0 , 3, 0.001);
12+
param4 = nentry("number", 4, 0 , 4, 1);
13+
};

0 commit comments

Comments
 (0)