From 92c0a2d34259e185b461c2dde289680d0d1773d0 Mon Sep 17 00:00:00 2001 From: falkTX Date: Mon, 30 Nov 2015 00:09:08 +0100 Subject: [PATCH] Update meta-data --- dpf | 2 +- plugins/Nekobi/DistrhoPluginInfo.h | 5 +++-- plugins/Nekobi/DistrhoPluginNekobi.hpp | 12 +++++++++++- 3 files changed, 15 insertions(+), 4 deletions(-) diff --git a/dpf b/dpf index 10bd3b2..c8f0fde 160000 --- a/dpf +++ b/dpf @@ -1 +1 @@ -Subproject commit 10bd3b2c8cb46ef9d740980323e69ad83a63fa7d +Subproject commit c8f0fdec1fcd139ba51732ef99a7b57b3fd2d1d4 diff --git a/plugins/Nekobi/DistrhoPluginInfo.h b/plugins/Nekobi/DistrhoPluginInfo.h index 22948c4..20ffdbf 100644 --- a/plugins/Nekobi/DistrhoPluginInfo.h +++ b/plugins/Nekobi/DistrhoPluginInfo.h @@ -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 diff --git a/plugins/Nekobi/DistrhoPluginNekobi.hpp b/plugins/Nekobi/DistrhoPluginNekobi.hpp index aaca98e..d8c534c 100644 --- a/plugins/Nekobi/DistrhoPluginNekobi.hpp +++ b/plugins/Nekobi/DistrhoPluginNekobi.hpp @@ -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