Update meta-data
This commit is contained in:
parent
abd89dd74b
commit
92c0a2d342
2
dpf
2
dpf
|
@ -1 +1 @@
|
||||||
Subproject commit 10bd3b2c8cb46ef9d740980323e69ad83a63fa7d
|
Subproject commit c8f0fdec1fcd139ba51732ef99a7b57b3fd2d1d4
|
|
@ -18,6 +18,7 @@
|
||||||
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
|
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
|
||||||
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
|
#define DISTRHO_PLUGIN_INFO_H_INCLUDED
|
||||||
|
|
||||||
|
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
|
||||||
#define DISTRHO_PLUGIN_NAME "Nekobi"
|
#define DISTRHO_PLUGIN_NAME "Nekobi"
|
||||||
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Nekobi"
|
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Nekobi"
|
||||||
|
|
||||||
|
|
|
@ -57,11 +57,21 @@ protected:
|
||||||
return "Nekobi";
|
return "Nekobi";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char* getDescription() const override
|
||||||
|
{
|
||||||
|
return "Simple single-oscillator synth based on the Roland TB-303.";
|
||||||
|
}
|
||||||
|
|
||||||
const char* getMaker() const noexcept override
|
const char* getMaker() const noexcept override
|
||||||
{
|
{
|
||||||
return "Sean Bolton, falkTX";
|
return "Sean Bolton, falkTX";
|
||||||
}
|
}
|
||||||
|
|
||||||
|
const char* getHomePage() const override
|
||||||
|
{
|
||||||
|
return "https://github.com/DISTRHO/Nekobi";
|
||||||
|
}
|
||||||
|
|
||||||
const char* getLicense() const noexcept override
|
const char* getLicense() const noexcept override
|
||||||
{
|
{
|
||||||
return "GPL v2+";
|
return "GPL v2+";
|
||||||
|
@ -69,7 +79,7 @@ protected:
|
||||||
|
|
||||||
uint32_t getVersion() const noexcept override
|
uint32_t getVersion() const noexcept override
|
||||||
{
|
{
|
||||||
return 0x1000;
|
return d_version(1, 0, 0);
|
||||||
}
|
}
|
||||||
|
|
||||||
int64_t getUniqueId() const noexcept override
|
int64_t getUniqueId() const noexcept override
|
||||||
|
|
Loading…
Reference in New Issue