Browse Source

Update meta-data

pull/5/head
falkTX 9 years ago
parent
commit
92c0a2d342
3 changed files with 15 additions and 4 deletions
  1. +1
    -1
      dpf
  2. +3
    -2
      plugins/Nekobi/DistrhoPluginInfo.h
  3. +11
    -1
      plugins/Nekobi/DistrhoPluginNekobi.hpp

+ 1
- 1
dpf

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

+ 3
- 2
plugins/Nekobi/DistrhoPluginInfo.h View File

@@ -18,8 +18,9 @@
#ifndef DISTRHO_PLUGIN_INFO_H_INCLUDED
#define DISTRHO_PLUGIN_INFO_H_INCLUDED

#define DISTRHO_PLUGIN_NAME "Nekobi"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Nekobi"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Nekobi"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/Nekobi"

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1


+ 11
- 1
plugins/Nekobi/DistrhoPluginNekobi.hpp 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


Loading…
Cancel
Save