Update meta-data

This commit is contained in:
falkTX 2015-11-30 00:09:08 +01:00
parent abd89dd74b
commit 92c0a2d342
3 changed files with 15 additions and 4 deletions

2
dpf

@ -1 +1 @@
Subproject commit 10bd3b2c8cb46ef9d740980323e69ad83a63fa7d
Subproject commit c8f0fdec1fcd139ba51732ef99a7b57b3fd2d1d4

View File

@ -18,6 +18,7 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Nekobi"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Nekobi"

View File

@ -57,11 +57,21 @@ protected:
return "Nekobi";
}
const char* getDescription() const override
{
return "Simple single-oscillator synth based on the Roland TB-303.";
}
const char* getMaker() const noexcept override
{
return "Sean Bolton, falkTX";
}
const char* getHomePage() const override
{
return "https://github.com/DISTRHO/Nekobi";
}
const char* getLicense() const noexcept override
{
return "GPL v2+";
@ -69,7 +79,7 @@ protected:
uint32_t getVersion() const noexcept override
{
return 0x1000;
return d_version(1, 0, 0);
}
int64_t getUniqueId() const noexcept override