Browse Source

Set the example licenses as URI

pull/166/head
JP Cimalando 6 years ago
parent
commit
4cfa3d389a
9 changed files with 10 additions and 10 deletions
  1. +1
    -1
      examples/CairoUI/CairoExamplePlugin.cpp
  2. +2
    -2
      examples/CairoUI/DistrhoPluginInfo.h
  3. +1
    -1
      examples/ExternalUI/ExternalExamplePlugin.cpp
  4. +1
    -1
      examples/Info/InfoExamplePlugin.cpp
  5. +1
    -1
      examples/Latency/LatencyExamplePlugin.cpp
  6. +1
    -1
      examples/Meters/ExamplePluginMeters.cpp
  7. +1
    -1
      examples/MidiThrough/MidiThroughExamplePlugin.cpp
  8. +1
    -1
      examples/Parameters/ExamplePluginParameters.cpp
  9. +1
    -1
      examples/States/ExamplePluginStates.cpp

+ 1
- 1
examples/CairoUI/CairoExamplePlugin.cpp View File

@@ -40,7 +40,7 @@ public:

const char* getLicense() const
{
return "ISC";
return "http://opensource.org/licenses/isc";
}

uint32_t getVersion() const


+ 2
- 2
examples/CairoUI/DistrhoPluginInfo.h View File

@@ -19,7 +19,7 @@
This is used to identify your plugin before a Plugin instance can be created.
@note This macro is required.
*/
#define DISTRHO_PLUGIN_NAME "Cairo DPF example"
#define DISTRHO_PLUGIN_NAME "CairoUI"

/**
Number of audio inputs the plugin has.
@@ -37,7 +37,7 @@
The plugin URI when exporting in LV2 format.
@note This macro is required.
*/
#define DISTRHO_PLUGIN_URI "urn:jpcima:cairo-dpf-example"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/examples/CairoUI"

/**
Wherever the plugin has a custom %UI.


+ 1
- 1
examples/ExternalUI/ExternalExamplePlugin.cpp View File

@@ -75,7 +75,7 @@ protected:
*/
const char* getLicense() const override
{
return "ISC";
return "http://opensource.org/licenses/isc";
}
/**


+ 1
- 1
examples/Info/InfoExamplePlugin.cpp View File

@@ -79,7 +79,7 @@ protected:
*/
const char* getLicense() const override
{
return "ISC";
return "http://opensource.org/licenses/isc";
}
/**


+ 1
- 1
examples/Latency/LatencyExamplePlugin.cpp View File

@@ -85,7 +85,7 @@ protected:
*/
const char* getLicense() const override
{
return "ISC";
return "http://opensource.org/licenses/isc";
}
/**


+ 1
- 1
examples/Meters/ExamplePluginMeters.cpp View File

@@ -78,7 +78,7 @@ protected:
*/
const char* getLicense() const override
{
return "ISC";
return "http://opensource.org/licenses/isc";
}
/**


+ 1
- 1
examples/MidiThrough/MidiThroughExamplePlugin.cpp View File

@@ -72,7 +72,7 @@ protected:
*/
const char* getLicense() const override
{
return "ISC";
return "http://opensource.org/licenses/isc";
}
/**


+ 1
- 1
examples/Parameters/ExamplePluginParameters.cpp View File

@@ -81,7 +81,7 @@ The plugin will be treated as an effect, but it will not change the host audio."
*/
const char* getLicense() const override
{
return "ISC";
return "http://opensource.org/licenses/isc";
}
/**


+ 1
- 1
examples/States/ExamplePluginStates.cpp View File

@@ -81,7 +81,7 @@ The plugin will be treated as an effect, but it will not change the host audio."
*/
const char* getLicense() const override
{
return "ISC";
return "http://opensource.org/licenses/isc";
}
/**


Loading…
Cancel
Save