Browse Source

Update meta-data

master
falkTX 10 years ago
parent
commit
71c56cb8d8
3 changed files with 14 additions and 3 deletions
  1. +1
    -1
      dpf
  2. +2
    -1
      plugins/ProM/DistrhoPluginInfo.h
  3. +11
    -1
      plugins/ProM/DistrhoPluginProM.hpp

+ 1
- 1
dpf

@@ -1 +1 @@
Subproject commit 287802cd27fc9aab84762db3398e52e87fbe5ffd
Subproject commit c8f0fdec1fcd139ba51732ef99a7b57b3fd2d1d4

+ 2
- 1
plugins/ProM/DistrhoPluginInfo.h View File

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

#define DISTRHO_PLUGIN_NAME "ProM"
#define DISTRHO_PLUGIN_BRAND "DISTRHO"
#define DISTRHO_PLUGIN_NAME "ProM"
#define DISTRHO_PLUGIN_URI "http://distrho.sf.net/plugins/ProM"

#define DISTRHO_PLUGIN_HAS_UI 1


+ 11
- 1
plugins/ProM/DistrhoPluginProM.hpp View File

@@ -43,11 +43,21 @@ protected:
return "ProM";
}
const char* getDescription() const override
{
return "ProjectM visualizer.";
}
const char* getMaker() const noexcept override
{
return "DISTRHO";
}
const char* getHomePage() const override
{
return "https://github.com/DISTRHO/ProM";
}
const char* getLicense() const noexcept override
{
return "LGPL";
@@ -55,7 +65,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