├── .dir-locals.el ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── .gitignore ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── LICENSE ├── Makefile ├── README.md ├── autogen.py ├── helper.py ├── images └── screenshot_1.png ├── plugin.json ├── res └── ProtoFaust.svg └── src ├── .astylerc ├── Amalgamated.hpp ├── ProtoFaust.cpp ├── ProtoFaust.hpp ├── ProtoFaustWidget.cpp ├── ProtoFaustWidget.hpp ├── WidgetAccess.hpp ├── faust ├── architecture_rack.cpp ├── gui.dsp ├── main.dsp └── rack.dsp ├── format_code.sh ├── lint.sh ├── plugin.cpp └── plugin.hpp /.dir-locals.el: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/.dir-locals.el -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/README.md -------------------------------------------------------------------------------- /autogen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/autogen.py -------------------------------------------------------------------------------- /helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/helper.py -------------------------------------------------------------------------------- /images/screenshot_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/images/screenshot_1.png -------------------------------------------------------------------------------- /plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/plugin.json -------------------------------------------------------------------------------- /res/ProtoFaust.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/res/ProtoFaust.svg -------------------------------------------------------------------------------- /src/.astylerc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/.astylerc -------------------------------------------------------------------------------- /src/Amalgamated.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/Amalgamated.hpp -------------------------------------------------------------------------------- /src/ProtoFaust.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/ProtoFaust.cpp -------------------------------------------------------------------------------- /src/ProtoFaust.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/ProtoFaust.hpp -------------------------------------------------------------------------------- /src/ProtoFaustWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/ProtoFaustWidget.cpp -------------------------------------------------------------------------------- /src/ProtoFaustWidget.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/ProtoFaustWidget.hpp -------------------------------------------------------------------------------- /src/WidgetAccess.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/WidgetAccess.hpp -------------------------------------------------------------------------------- /src/faust/architecture_rack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/faust/architecture_rack.cpp -------------------------------------------------------------------------------- /src/faust/gui.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/faust/gui.dsp -------------------------------------------------------------------------------- /src/faust/main.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/faust/main.dsp -------------------------------------------------------------------------------- /src/faust/rack.dsp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/faust/rack.dsp -------------------------------------------------------------------------------- /src/format_code.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/format_code.sh -------------------------------------------------------------------------------- /src/lint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/lint.sh -------------------------------------------------------------------------------- /src/plugin.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/plugin.cpp -------------------------------------------------------------------------------- /src/plugin.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mzuther/ProtoFaust/HEAD/src/plugin.hpp --------------------------------------------------------------------------------