Browse Source

Update meta-data

pull/1/head
falkTX 10 years ago
parent
commit
7796f2ff64
7 changed files with 43 additions and 10 deletions
  1. +1
    -1
      dpf
  2. +11
    -1
      plugins/3BandEQ/DistrhoPlugin3BandEQ.hpp
  3. +3
    -2
      plugins/3BandEQ/DistrhoPluginInfo.h
  4. +11
    -1
      plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp
  5. +3
    -2
      plugins/3BandSplitter/DistrhoPluginInfo.h
  6. +3
    -2
      plugins/PingPongPan/DistrhoPluginInfo.h
  7. +11
    -1
      plugins/PingPongPan/DistrhoPluginPingPongPan.hpp

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit 2ed2eab14b11cdc20c5b83b526e347e96ab4e138
Subproject commit c8f0fdec1fcd139ba51732ef99a7b57b3fd2d1d4

+ 11
- 1
plugins/3BandEQ/DistrhoPlugin3BandEQ.hpp View File

@@ -49,11 +49,21 @@ protected:
return "3BandEQ";
}
const char* getDescription() const override
{
return "3 Band Equalizer, stereo version.";
}
const char* getMaker() const noexcept override
{
return "DISTRHO";
}
const char* getHomePage() const override
{
return "https://github.com/DISTRHO/Mini-Series";
}
const char* getLicense() const noexcept override
{
return "LGPL";
@@ -61,7 +71,7 @@ protected:
uint32_t getVersion() const noexcept override
{
return 0x1000;
return d_version(1, 0, 0);
}
int64_t getUniqueId() const noexcept override


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

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

#define DISTRHO_PLUGIN_NAME "3 Band EQ"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandEQ"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "3 Band EQ"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandEQ"

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1


+ 11
- 1
plugins/3BandSplitter/DistrhoPlugin3BandSplitter.hpp View File

@@ -49,11 +49,21 @@ protected:
return "3BandSplitter";
}
const char* getDescription() const override
{
return "3 Band Equalizer, splitted output version.";
}
const char* getMaker() const noexcept override
{
return "DISTRHO";
}
const char* getHomePage() const override
{
return "https://github.com/DISTRHO/Mini-Series";
}
const char* getLicense() const noexcept override
{
return "LGPL";
@@ -61,7 +71,7 @@ protected:
uint32_t getVersion() const noexcept override
{
return 0x1000;
return d_version(1, 0, 0);
}
int64_t getUniqueId() const noexcept override


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

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

#define DISTRHO_PLUGIN_NAME "3 Band Splitter"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandSplitter"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "3 Band Splitter"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/3BandSplitter"

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1


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

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

#define DISTRHO_PLUGIN_NAME "Ping Pong Pan"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/PingPongPan"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Ping Pong Pan"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/PingPongPan"

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1


+ 11
- 1
plugins/PingPongPan/DistrhoPluginPingPongPan.hpp View File

@@ -45,11 +45,21 @@ protected:
return "PingPongPan";
}
const char* getDescription() const override
{
return "Ping Pong Panning.";
}
const char* getMaker() const noexcept override
{
return "DISTRHO";
}
const char* getHomePage() const override
{
return "https://github.com/DISTRHO/Mini-Series";
}
const char* getLicense() const noexcept override
{
return "LGPL";
@@ -57,7 +67,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