Skip to content

Commit

Permalink
Update to Rack v0.5.0.
Browse files Browse the repository at this point in the history
  • Loading branch information
eres-j committed Nov 11, 2017
1 parent ab8343c commit 64daa49
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 27 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ SOURCES += $(wildcard components/*.cpp)
SOURCES += $(wildcard utils/*.cpp)
SOURCES += $(wildcard widgets/*.cpp)

FLAGS += -I. -DJE_VERSION=0.0.1 -DMANUFACTURE_SLUG="JulienEres" -DMANUFACTURE_NAME="Julien Eres"
FLAGS += -I. -DJE_VERSION=0.5.0 -DJE_MANUFACTURER="Julien Eres"

include ../../plugin.mk

Expand Down
23 changes: 2 additions & 21 deletions res/CleanRingModulator.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
13 changes: 8 additions & 5 deletions src/JE.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,13 @@ void init(rack::Plugin *p)
{
plugin = p;
plugin->slug = "JE";
plugin->name = TOSTRING(MANUFACTURE_NAME);
//plugin->version = TOSTRING(JE_VERSION);
plugin->version = TOSTRING(JE_VERSION);
plugin->website = "https://github.com/eres-j/VCVRack-plugin-JE";
plugin->manual = "https://github.com/eres-j/VCVRack-plugin-JE";

rack::createModel<RingModulatorWidget>(p,
/*TOSTRING(MANUFACTURE_SLUG), TOSTRING(MANUFACTURE_NAME),*/
"RingModulator", "Ring Modulator");
p->addModel(rack::createModel<RingModulatorWidget>(
TOSTRING(JE_MANUFACTURER),
"RingModulator", "Ring Modulator",
rack::EFFECT_TAG, rack::RING_MODULATOR_TAG
));
}

0 comments on commit 64daa49

Please sign in to comment.