Skip to content

Commit

Permalink
v1.0.0: renamed module to "ProtoFaust"
Browse files Browse the repository at this point in the history
  • Loading branch information
mzuther committed Aug 18, 2019
1 parent da4ae65 commit 0c6c67f
Show file tree
Hide file tree
Showing 10 changed files with 139 additions and 137 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ src/faust/main-svg/process.svg:

src/faust_generated.cpp: $(wildcard src/faust/*.dsp) src/faust/architecture_rack.cpp
@echo "Compiling Faust files..."
faust -a src/faust/architecture_rack.cpp -o src/faust_generated.cpp -os -cn PrototypeDSP src/faust/main.dsp
faust -a src/faust/architecture_rack.cpp -o src/faust_generated.cpp -os -cn FaustDSP src/faust/main.dsp
@echo


Expand Down
6 changes: 3 additions & 3 deletions autogen.py
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
#!/usr/bin/python3

"""Prototype
=========
Faust prototyping for VCV Rack
"""ProtoFaust
==========
DSP prototyping in Faust for VCV Rack
Copyright (c) 2019 Martin Zuther (http://www.mzuther.de/)
Expand Down
24 changes: 13 additions & 11 deletions plugin.json
Original file line number Diff line number Diff line change
@@ -1,22 +1,24 @@
{
"slug": "Prototype",
"slug": "MartinZuther-Prototype",
"name": "Prototype",
"version": "1.0.0",
"license": "proprietary",
"license": "GPL-3.0-or-later",
"brand": "",
"author": "Prototype",
"author": "Martin Zuther",
"authorEmail": "",
"authorUrl": "",
"pluginUrl": "",
"manualUrl": "",
"sourceUrl": "",
"authorUrl": "http://code.mzuther.de/",
"pluginUrl": "https://github.com/mzuther/ProtoFaust",
"manualUrl": "https://github.com/mzuther/ProtoFaust",
"sourceUrl": "https://github.com/mzuther/ProtoFaust",
"donateUrl": "",
"modules": [
{
"slug": "Prototype",
"name": "Prototype",
"description": "Simple sine oscillator",
"tags": []
"slug": "ProtoFaust",
"name": "ProtoFaust",
"description": "DSP prototyping in Faust for VCV Rack",
"tags": [
"Prototype",
"Utility"]
}
]
}
6 changes: 3 additions & 3 deletions res/Prototype.svg → res/ProtoFaust.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
200 changes: 100 additions & 100 deletions src/Prototype.cpp → src/ProtoFaust.cpp

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions src/faust/prototype_gui.dsp → src/faust/gui.dsp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* ----------------------------------------------------------------------------
Prototype
=========
Faust prototyping for VCV Rack
ProtoFaust
==========
DSP prototyping in Faust for VCV Rack
Copyright (c) 2019 Martin Zuther (http://www.mzuther.de/)
Expand All @@ -26,7 +26,7 @@
import("stdfaust.lib");


main_group(x) = vgroup("Prototype", x);
main_group(x) = vgroup("ProtoFaust", x);

button_group(x) = main_group(hgroup("[2] Buttons", x));

Expand Down
8 changes: 4 additions & 4 deletions src/faust/main.dsp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* ----------------------------------------------------------------------------
Prototype
=========
Faust prototyping for VCV Rack
ProtoFaust
==========
DSP prototyping in Faust for VCV Rack
Copyright (c) 2019 Martin Zuther (http://www.mzuther.de/)
Expand All @@ -25,7 +25,7 @@


import("stdfaust.lib");
import("prototype_gui.dsp");
import("gui.dsp");

rack = component("rack.dsp");

Expand Down
6 changes: 3 additions & 3 deletions src/faust/rack.dsp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* ----------------------------------------------------------------------------
Prototype
=========
Faust prototyping for VCV Rack
ProtoFaust
==========
DSP prototyping in Faust for VCV Rack
Copyright (c) 2019 Martin Zuther (http://www.mzuther.de/)
Expand Down
8 changes: 4 additions & 4 deletions src/plugin.cpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* ----------------------------------------------------------------------------
Prototype
=========
Faust prototyping for VCV Rack
ProtoFaust
==========
DSP prototyping in Faust for VCV Rack
Copyright (c) 2019 Martin Zuther (http://www.mzuther.de/)
Expand Down Expand Up @@ -34,7 +34,7 @@ void init(Plugin *p) {
pluginInstance = p;

// Add modules here
p->addModel(modelPrototype);
p->addModel(modelProtoFaust);

// Any other plugin initialization may go here.
// As an alternative, consider lazy-loading assets and lookup tables when your module is created to reduce startup times of Rack.
Expand Down
8 changes: 4 additions & 4 deletions src/plugin.hpp
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
/* ----------------------------------------------------------------------------
Prototype
=========
Faust prototyping for VCV Rack
ProtoFaust
==========
DSP prototyping in Faust for VCV Rack
Copyright (c) 2019 Martin Zuther (http://www.mzuther.de/)
Expand Down Expand Up @@ -33,4 +33,4 @@ using namespace rack;
extern Plugin *pluginInstance;

// Declare each Model, defined in each module source file
extern Model *modelPrototype;
extern Model *modelProtoFaust;

0 comments on commit 0c6c67f

Please sign in to comment.