Skip to content

Commit

Permalink
Slug bug fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Tomasz Sosnowski authored and Tomasz Sosnowski committed Mar 20, 2018
1 parent fd991a4 commit 537f9a4
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 +=
Expand Down
3 changes: 2 additions & 1 deletion src/Koralfx.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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";
Expand Down

0 comments on commit 537f9a4

Please sign in to comment.