Skip to content

Commit

Permalink
Merge pull request #4 from CICM/dev/v0.1.0
Browse files Browse the repository at this point in the history
Dev/v0.1.0
  • Loading branch information
pierreguillot authored Aug 25, 2018
2 parents ea5f68f + c147f74 commit 13c4768
Show file tree
Hide file tree
Showing 22 changed files with 750 additions and 372 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ before_deploy:
- cp -r src/ external/sources
- cp README.md external/README.txt
- cp LICENSE external/LICENSE.txt
- chmod 0444 external/.default.dsp
- curl -o ./external/faust-quick-reference.pdf http://faust.grame.fr/images/faust-quick-reference.pdf
- mv external faustgen~
- zip -r "faustgen_tilde-$release_arch-sources.zip" faustgen~
Expand Down
10 changes: 9 additions & 1 deletion ChangeLog.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
### v0.1.0
- Add support to preserve parameters values during recompilation
- Fix autocompilation when DSP instance not initialized
- Fix support for the double-float-precision option
- Add support to look for the DSP file in all Pd's search paths
- Add support to open the FAUST file in the default text editor when object is clicked
- Add a default locked FAUST file used when no argument is provided

### v0.0.5
- Fix when no arguments
- Fix when no argument is provided
- Update deken script
- Fix sources distribution

Expand Down
5 changes: 0 additions & 5 deletions ToDoList.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,2 @@
- Mesure DSP time of the code
- Use automatic optimizations with compile options
- Check if FAUST supports in-place processing
- Check why FAUST double option crashes
- Add method to open the FAUST file in the default text editor
- Add a default temporary FAUST file when no argument
- Add support for saving parameters states
1 change: 1 addition & 0 deletions appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ after_build:
- copy LICENSE external\LICENSE.txt
- xcopy /S /E /Y /I .\faust\libraries .\external\libs
- xcopy /S /E /Y /I .\src .\external\sources
- attrib +R external\.default.dsp
- rename external faustgen~
- 7z a "faustgen_tilde-%release_arch%-sources.zip" faustgen~

Expand Down
3 changes: 3 additions & 0 deletions external/.default.dsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import("stdfaust.lib");

process = _;
13 changes: 13 additions & 0 deletions external/examples/parameters.dsp
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
declare name "Dummy";
declare version "1.0";
declare author "Heu... me...";


process = _ * param1 * param2 * (param3 / 3) * (param4 /4)
with
{
param1 = button("button");
param2 = checkbox("checkbox");
param3 = vslider("slider", 3, 0 , 3, 0.001);
param4 = nentry("number", 4, 0 , 4, 1);
};
Loading

0 comments on commit 13c4768

Please sign in to comment.