Skip to content

Commit f67a992

Browse files
committed
Using new mechanism for registering plugin metadata
1 parent babfb90 commit f67a992

1 file changed

Lines changed: 7 additions & 2 deletions

File tree

src/main/meta/trigger.cpp

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
2-
* Copyright (C) 2025 Linux Studio Plugins Project <https://lsp-plug.in/>
3-
* (C) 2025 Vladimir Sadovnikov <sadko4u@gmail.com>
2+
* Copyright (C) 2026 Linux Studio Plugins Project <https://lsp-plug.in/>
3+
* (C) 2026 Vladimir Sadovnikov <sadko4u@gmail.com>
44
*
55
* This file is part of lsp-plugins-trigger
66
* Created on: 31 июл. 2021 г.
@@ -20,6 +20,7 @@
2020
*/
2121

2222
#include <lsp-plug.in/plug-fw/meta/ports.h>
23+
#include <lsp-plug.in/plug-fw/meta/registry.h>
2324
#include <lsp-plug.in/shared/meta/developers.h>
2425
#include <lsp-plug.in/common/status.h>
2526
#include <private/meta/trigger.h>
@@ -265,6 +266,7 @@ namespace lsp
265266
mono_plugin_port_groups,
266267
&trigger_bundle
267268
};
269+
LSP_REGISTER_METADATA(trigger_mono);
268270

269271
const plugin_t trigger_stereo =
270272
{
@@ -295,6 +297,7 @@ namespace lsp
295297
stereo_plugin_port_groups,
296298
&trigger_bundle
297299
};
300+
LSP_REGISTER_METADATA(trigger_stereo);
298301

299302
const plugin_t trigger_midi_mono =
300303
{
@@ -325,6 +328,7 @@ namespace lsp
325328
mono_plugin_port_groups,
326329
&trigger_bundle
327330
};
331+
LSP_REGISTER_METADATA(trigger_midi_mono);
328332

329333
const plugin_t trigger_midi_stereo =
330334
{
@@ -355,6 +359,7 @@ namespace lsp
355359
stereo_plugin_port_groups,
356360
&trigger_bundle
357361
};
362+
LSP_REGISTER_METADATA(trigger_midi_stereo);
358363

359364
} /* namespace meta */
360365
} /* namespace lsp */

0 commit comments

Comments
 (0)