Skip to content

Commit

Permalink
Finalize the clap version (#139)
Browse files Browse the repository at this point in the history
as pmaj.pmin.prel.hash
  • Loading branch information
baconpaul authored Jan 17, 2025
1 parent 1ba638b commit c8237be
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 11 deletions.
2 changes: 1 addition & 1 deletion libs/sst/sst-plugininfra
24 changes: 14 additions & 10 deletions src/clap/six-sines-clap-entry-impl.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -39,16 +39,20 @@ const clap_plugin_descriptor *getDescriptor()
static const char *features[] = {CLAP_PLUGIN_FEATURE_INSTRUMENT,
CLAP_PLUGIN_FEATURE_SYNTHESIZER, "Free and Open Source",
"Audio Rate Modulation", nullptr};
static clap_plugin_descriptor desc = {CLAP_VERSION,
"org.baconpaul.six-sines",
PRODUCT_NAME,
"BaconPaul",
"https://baconpaul.org",
"",
"",
sst::plugininfra::VersionInformation::project_version,
"Synth with Audio Rate Modulation or something",
&features[0]};

static char versionNum[1024];

static clap_plugin_descriptor desc = {
CLAP_VERSION,
"org.baconpaul.six-sines",
PRODUCT_NAME,
"BaconPaul",
"https://baconpaul.org",
"",
"",
sst::plugininfra::VersionInformation::project_version_and_hash,
"Synth with Audio Rate Modulation or something",
&features[0]};
return &desc;
}

Expand Down

0 comments on commit c8237be

Please sign in to comment.