diff --git a/Makefile b/Makefile index ded72c1..e2f7523 100644 --- a/Makefile +++ b/Makefile @@ -2,7 +2,7 @@ SLUG = KoralfxVCV # Must follow the format in the Versioning section of https://vcvrack.com/manual/PluginDevelopmentTutorial.html -VERSION = 0.5.1 +VERSION = 0.5.2 # FLAGS will be passed to both the C and C++ compiler FLAGS += diff --git a/src/Koralfx.cpp b/src/Koralfx.cpp index 493abbb..5250cf5 100644 --- a/src/Koralfx.cpp +++ b/src/Koralfx.cpp @@ -10,7 +10,8 @@ void init(rack::Plugin *p) { // It must only contain letters, numbers, and characters "-" and "_". No spaces. // To guarantee uniqueness, it is a good idea to prefix the slug by your name, alias, or company name if available, e.g. "MyCompany-MyPlugin". // The ZIP package must only contain one folder, with the name equal to the plugin's slug. - p->slug = TOSTRING(SLUG); + //p->slug = TOSTRING(SLUG); + p->slug = "KoralfxVCV"; p->version = TOSTRING(VERSION); p->website = "https://github.com/koralfx/KoralfxVCV"; p->manual = "https://github.com/koralfx/KoralfxVCV/blob/master/README.md";