Browse Source

Update meta-data; Fix AmplitudeImposer param symbols

master
falkTX 10 years ago
parent
commit
12e67b9ca6
8 changed files with 53 additions and 12 deletions
  1. +1
    -1
      dpf
  2. +2
    -2
      plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.cpp
  3. +17
    -1
      plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.hpp
  4. +3
    -2
      plugins/AmplitudeImposer/DistrhoPluginInfo.h
  5. +12
    -1
      plugins/CycleShifter/DistrhoPluginCycleShifter.hpp
  6. +3
    -2
      plugins/CycleShifter/DistrhoPluginInfo.h
  7. +3
    -2
      plugins/SoulForce/DistrhoPluginInfo.h
  8. +12
    -1
      plugins/SoulForce/DistrhoPluginSoulForce.hpp

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit 3f242dad0027fe532524615352b4368d138dd091
Subproject commit c8f0fdec1fcd139ba51732ef99a7b57b3fd2d1d4

+ 2
- 2
plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.cpp View File

@@ -62,7 +62,7 @@ void DistrhoPluginAmplitudeImposer::initAudioPort(bool input, uint32_t index, Au
break;
case 1:
port.name = "Input Right (Amp Env)";
port.symbol = "in_left_amp";
port.symbol = "in_right_amp";
break;
case 2:
port.name = "Input Left (Audio)";
@@ -84,7 +84,7 @@ void DistrhoPluginAmplitudeImposer::initAudioPort(bool input, uint32_t index, Au
break;
case 1:
port.name = "Output Right";
port.symbol = "out_left";
port.symbol = "out_right";
break;
}
}


+ 17
- 1
plugins/AmplitudeImposer/DistrhoPluginAmplitudeImposer.hpp View File

@@ -46,16 +46,32 @@ protected:
// -------------------------------------------------------------------
// Information
const char* getName() const noexcept override
{
return "Amplitude Imposer";
}
const char* getLabel() const noexcept override
{
return "AmplitudeImposer";
}
const char* getDescription() const override
{
return "Takes 2 stereo inputs and imposes the amplitude envelope of the first one on the second one.\n\
Also has a threshold level for the second input, so that when the signal falls below it, it is amplified up to the threshold, to give a greater signal to be amplitude modulated.";
}
const char* getMaker() const noexcept override
{
return "ndc Plugs";
}
const char* getHomePage() const override
{
return "https://github.com/DISTRHO/ndc-Plugs";
}
const char* getLicense() const noexcept override
{
return "MIT";
@@ -63,7 +79,7 @@ protected:
uint32_t getVersion() const noexcept override
{
return 0x1000;
return d_version(0, 1, 0);
}
int64_t getUniqueId() const noexcept override


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

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

#define DISTRHO_PLUGIN_NAME "Amplitude Imposer"
#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/ampimposer.htm"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Amplitude Imposr"
#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/ampimposer.htm"

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1


+ 12
- 1
plugins/CycleShifter/DistrhoPluginCycleShifter.hpp View File

@@ -53,11 +53,22 @@ protected:
return "CycleShifter";
}
const char* getDescription() const override
{
return "Reads in a cycle's-worth of the input signal, then (once the whole cycle's been read in) outputs it again, on top of the current output.\n\
Works best with long/sustained sounds (e.g. strings, pads etc.), sounds like a weird kind of gentle distortion.";
}
const char* getMaker() const noexcept override
{
return "ndc Plugs";
}
const char* getHomePage() const override
{
return "https://github.com/DISTRHO/ndc-Plugs";
}
const char* getLicense() const noexcept override
{
return "MIT";
@@ -65,7 +76,7 @@ protected:
uint32_t getVersion() const noexcept override
{
return 0x1000;
return d_version(0, 1, 0);
}
int64_t getUniqueId() const noexcept override


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

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

#define DISTRHO_PLUGIN_NAME "Cycle Shifter"
#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/cycleshifter.htm"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Cycle Shifter"
#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/cycleshifter.htm"

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1


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

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

#define DISTRHO_PLUGIN_NAME "Soul Force"
#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/soulforce.htm"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "Soul Force"
#define DISTRHO_PLUGIN_URI "http://www.niallmoody.com/ndcplugs/soulforce.htm"

#define DISTRHO_PLUGIN_HAS_UI 1
#define DISTRHO_PLUGIN_IS_RT_SAFE 1


+ 12
- 1
plugins/SoulForce/DistrhoPluginSoulForce.hpp View File

@@ -66,11 +66,22 @@ protected:
return "SoulForce";
}
const char* getDescription() const override
{
return "A fairly standard waveshaping distortion plugin, made more interesting through the use of feedback to control the shaping.\n\
Can get pretty loud and obnoxious.";
}
const char* getMaker() const noexcept override
{
return "ndc Plugs";
}
const char* getHomePage() const override
{
return "https://github.com/DISTRHO/ndc-Plugs";
}
const char* getLicense() const noexcept override
{
return "MIT";
@@ -78,7 +89,7 @@ protected:
uint32_t getVersion() const noexcept override
{
return 0x1000;
return d_version(0, 1, 0);
}
int64_t getUniqueId() const noexcept override


Loading…
Cancel
Save