-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
3 additions
and
3 deletions.
There are no files selected for viewing
Submodule clap
updated
12 files
+12 −1 | ChangeLog.md | |
+1 −1 | include/clap/clap.h | |
+5 −4 | include/clap/ext/ambisonic.h | |
+2 −2 | include/clap/ext/preset-load.h | |
+1 −5 | include/clap/ext/state-context.h | |
+1 −1 | include/clap/ext/state.h | |
+1 −1 | include/clap/ext/voice-info.h | |
+10 −9 | include/clap/factory/draft/plugin-state-converter.h | |
+13 −22 | include/clap/factory/preset-discovery.h | |
+0 −13 | include/clap/plugin-id.h | |
+11 −0 | include/clap/timestamp.h | |
+26 −0 | include/clap/universal-plugin-id.h |
Submodule clap-helpers
updated
15 files
+102 −0 | .github/workflows/pullreq.yml | |
+48 −0 | .gitignore | |
+63 −19 | CMakeLists.txt | |
+24 −0 | cmake/external/CPM.cmake | |
+1 −0 | include/clap/helpers/event-list.hh | |
+3 −1 | include/clap/helpers/host.hh | |
+2 −1 | include/clap/helpers/plugin.hh | |
+5 −1 | include/clap/helpers/plugin.hxx | |
+6 −6 | include/clap/helpers/preset-discovery-metadata-receiver.hh | |
+3 −3 | include/clap/helpers/preset-discovery-metadata-receiver.hxx | |
+21 −0 | include/clap/helpers/version-check.hh | |
+36 −0 | tests/create-an-actual-host.cc | |
+42 −0 | tests/create-an-actual-plugin.cc | |
+34 −0 | tests/host.cc | |
+2 −2 | tests/param-queue-tests.cc |