Skip to content

Commit

Permalink
Upgrade to clap 1.1.8 (#34)
Browse files Browse the repository at this point in the history
1. Adjust factory file location
2. Detect all non-draft extensions
  • Loading branch information
baconpaul authored May 5, 2023
1 parent f8adfd0 commit 271a6f3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 3 deletions.
2 changes: 1 addition & 1 deletion libs/clap
Submodule clap updated 61 files
+3 −2 .github/workflows/cmake.yml
+94 −46 CMakeLists.txt
+4 −0 CMakePresets.json
+180 −0 ChangeLog.md
+20 −23 README.md
+8 −0 clap.pc.in
+1 −1 include/clap/audio-buffer.h
+28 −19 include/clap/clap.h
+19 −11 include/clap/entry.h
+39 −37 include/clap/events.h
+36 −8 include/clap/ext/audio-ports-config.h
+14 −12 include/clap/ext/audio-ports.h
+10 −7 include/clap/ext/draft/ambisonic.h
+55 −0 include/clap/ext/draft/audio-ports-activation.h
+4 −3 include/clap/ext/draft/check-for-update.h
+58 −0 include/clap/ext/draft/configurable-audio-ports.h
+158 −0 include/clap/ext/draft/context-menu.h
+6 −6 include/clap/ext/draft/cv.h
+33 −0 include/clap/ext/draft/extensible-audio-ports.h
+0 −85 include/clap/ext/draft/file-reference.h
+3 −3 include/clap/ext/draft/midi-mappings.h
+73 −0 include/clap/ext/draft/param-indication.h
+33 −3 include/clap/ext/draft/preset-load.h
+0 −45 include/clap/ext/draft/quick-controls.h
+78 −0 include/clap/ext/draft/remote-controls.h
+88 −0 include/clap/ext/draft/resource-directory.h
+64 −0 include/clap/ext/draft/state-context.h
+16 −20 include/clap/ext/draft/surround.h
+34 −10 include/clap/ext/draft/track-info.h
+17 −15 include/clap/ext/draft/transport-control.h
+145 −0 include/clap/ext/draft/triggers.h
+19 −14 include/clap/ext/draft/tuning.h
+1 −1 include/clap/ext/event-registry.h
+53 −30 include/clap/ext/gui.h
+2 −2 include/clap/ext/latency.h
+2 −2 include/clap/ext/log.h
+5 −5 include/clap/ext/note-name.h
+10 −8 include/clap/ext/note-ports.h
+159 −82 include/clap/ext/params.h
+5 −5 include/clap/ext/posix-fd-support.h
+3 −3 include/clap/ext/render.h
+11 −3 include/clap/ext/state.h
+2 −2 include/clap/ext/tail.h
+30 −3 include/clap/ext/thread-check.h
+6 −6 include/clap/ext/thread-pool.h
+3 −3 include/clap/ext/timer-support.h
+6 −6 include/clap/ext/voice-info.h
+10 −8 include/clap/factory/draft/plugin-invalidation.h
+326 −0 include/clap/factory/draft/preset-discovery.h
+11 −8 include/clap/factory/plugin-factory.h
+8 −5 include/clap/host.h
+7 −4 include/clap/plugin-features.h
+30 −16 include/clap/plugin.h
+8 −2 include/clap/private/macros.h
+8 −2 include/clap/private/std.h
+11 −10 include/clap/process.h
+14 −2 include/clap/stream.h
+13 −5 include/clap/version.h
+1 −1 src/main.c
+50 −2 src/main.cc
+48 −16 src/plugin-template.c
5 changes: 3 additions & 2 deletions src/clap-info/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

#include "clap-info-host.h"
#include "clap-scanner/scanner.h"
#include "clap/plugin-factory.h"
#include "clap/factory/plugin-factory.h"

#include "info.h"

Expand Down Expand Up @@ -390,7 +390,8 @@ int main(int argc, char **argv)

// Some 'is implemented' only ones
for (auto ext : {CLAP_EXT_TIMER_SUPPORT, CLAP_EXT_POSIX_FD_SUPPORT,
CLAP_EXT_THREAD_POOL, CLAP_EXT_RENDER})
CLAP_EXT_THREAD_POOL, CLAP_EXT_THREAD_CHECK, CLAP_EXT_RENDER,
CLAP_EXT_LOG, CLAP_EXT_RENDER, CLAP_EXT_VOICE_INFO})
{
auto exf = inst->get_extension(inst, ext);
Json::Value r;
Expand Down

0 comments on commit 271a6f3

Please sign in to comment.