DPF

DISTRHO Plugin Framework
Log | Files | Refs | Submodules | README | LICENSE

commit a7f781a4c5ae6585a89982eea7bc2f5e30298ef3
parent 72279b8e7c8d1a80132e42bcbc9761c3c8911190
Author: falkTX <falktx@gmail.com>
Date:   Sun, 30 Sep 2018 01:24:23 +0200

Merge branch 'master' into pugl-update

Diffstat:
Mexamples/Info/InfoExamplePlugin.cpp | 4++--
Mexamples/Latency/LatencyExamplePlugin.cpp | 2+-
Mexamples/Meters/ExamplePluginMeters.cpp | 2+-
Mexamples/MidiThrough/MidiThroughExamplePlugin.cpp | 6+++---
Mexamples/Parameters/ExamplePluginParameters.cpp | 2+-
Mexamples/States/ExamplePluginStates.cpp | 4++--
Mexamples/States/ExampleUIStates.cpp | 2+-
7 files changed, 11 insertions(+), 11 deletions(-)

diff --git a/examples/Info/InfoExamplePlugin.cpp b/examples/Info/InfoExamplePlugin.cpp @@ -70,7 +70,7 @@ protected: */ const char* getHomePage() const override { - return "https://github.com/DISTRHO/plugin-examples"; + return "https://github.com/DISTRHO/DPF"; } /** @@ -193,7 +193,7 @@ protected: */ void setParameterValue(uint32_t, float) override { - // this is only called for input paramters, which we have none of. + // this is only called for input parameters, which we have none of. } /* -------------------------------------------------------------------------------------------------------- diff --git a/examples/Latency/LatencyExamplePlugin.cpp b/examples/Latency/LatencyExamplePlugin.cpp @@ -76,7 +76,7 @@ protected: */ const char* getHomePage() const override { - return "https://github.com/DISTRHO/plugin-examples"; + return "https://github.com/DISTRHO/DPF"; } /** diff --git a/examples/Meters/ExamplePluginMeters.cpp b/examples/Meters/ExamplePluginMeters.cpp @@ -69,7 +69,7 @@ protected: */ const char* getHomePage() const override { - return "https://github.com/DISTRHO/plugin-examples"; + return "https://github.com/DISTRHO/DPF"; } /** diff --git a/examples/MidiThrough/MidiThroughExamplePlugin.cpp b/examples/MidiThrough/MidiThroughExamplePlugin.cpp @@ -21,7 +21,7 @@ START_NAMESPACE_DISTRHO // ----------------------------------------------------------------------------------------------------------- /** - Plugin that demonstrates the latency API in DPF. + Plugin that demonstrates MIDI output in DPF. */ class MidiThroughExamplePlugin : public Plugin { @@ -47,7 +47,7 @@ protected: */ const char* getDescription() const override { - return "Plugin that demonstrates the latency API in DPF."; + return "Plugin that demonstrates MIDI output in DPF."; } /** @@ -63,7 +63,7 @@ protected: */ const char* getHomePage() const override { - return "https://github.com/DISTRHO/plugin-examples"; + return "https://github.com/DISTRHO/DPF"; } /** diff --git a/examples/Parameters/ExamplePluginParameters.cpp b/examples/Parameters/ExamplePluginParameters.cpp @@ -72,7 +72,7 @@ The plugin will be treated as an effect, but it will not change the host audio." */ const char* getHomePage() const override { - return "https://github.com/DISTRHO/plugin-examples"; + return "https://github.com/DISTRHO/DPF"; } /** diff --git a/examples/States/ExamplePluginStates.cpp b/examples/States/ExamplePluginStates.cpp @@ -72,7 +72,7 @@ The plugin will be treated as an effect, but it will not change the host audio." */ const char* getHomePage() const override { - return "https://github.com/DISTRHO/plugin-examples"; + return "https://github.com/DISTRHO/DPF"; } /** @@ -277,7 +277,7 @@ The plugin will be treated as an effect, but it will not change the host audio." void run(const float** inputs, float** outputs, uint32_t frames) override { /** - This plugin does nothing, it just demonstrates parameter usage. + This plugin does nothing, it just demonstrates state usage. So here we directly copy inputs over outputs, leaving the audio untouched. We need to be careful in case the host re-uses the same buffer for both ins and outs. */ diff --git a/examples/States/ExampleUIStates.cpp b/examples/States/ExampleUIStates.cpp @@ -192,7 +192,7 @@ protected: /** Mouse press event. - This UI will de/activate blocks when you click them and reports it as a state change to the plugin. + This UI will de/activate blocks when you click them and report it as a state change to the plugin. */ bool onMouse(const MouseEvent& ev) override {