Skip to content

Commit ac83aca

Browse files
committed
Merge remote-tracking branch 'origin/clap-support' into devel
* Added experimental support of CLAP plugin format.
2 parents 9cafccb + 2aaa690 commit ac83aca

File tree

4 files changed

+17
-2
lines changed

4 files changed

+17
-2
lines changed

res/doc/img/controls/tab_control.png

9.34 KB
Loading

src/doc/inc/plugins.php

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,16 @@ function plugin_header()
2727
echo "<h1>" . htmlspecialchars($plugin['description']) . "</h1>\n";
2828

2929
$fmt = array();
30+
if (isset($plugin['clap']) && ($plugin['clap']))
31+
array_push($fmt, 'CLAP');
32+
if (isset($plugin['jack']) && ($plugin['jack']))
33+
array_push($fmt, 'JACK');
3034
if (isset($plugin['ladspa_label']) && (strlen($plugin['ladspa_label']) > 0))
3135
array_push($fmt, 'LADSPA');
3236
if ((isset($plugin['lv2_uri'])) && (strlen($plugin['lv2_uri']) > 0))
3337
array_push($fmt, 'LV2');
3438
if ((isset($plugin['vst2_uid'])) && (strlen($plugin['vst2_uid']) > 0))
3539
array_push($fmt, 'VST2');
36-
if (isset($plugin['jack']) && ($plugin['jack']))
37-
array_push($fmt, 'JACK');
3840

3941
$full_name = htmlspecialchars("{$PACKAGE['short']} {$plugin['description']} ({$plugin['acronym']})");
4042
$author = htmlspecialchars($plugin['author']);

src/doc/manuals/controls.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@
2929
<li><b>Parameter</b> &ndash; the value of controllable parameter.</li>
3030
<li><b>Progress Bar</b> &ndash; progress control.</li>
3131
<li><b>Sample Editor</b> &ndash; sample editor.</li>
32+
<li><b>Tab Control</b> &ndash; tab control.</li>
3233
</ul>
3334
</div>
3435
</div>
@@ -474,3 +475,14 @@
474475
<div class="images">
475476
<img class="border" src="<?= $CTL ?>sample_editor.png">
476477
</div>
478+
479+
<h2>Tab Control</h2>
480+
481+
<p>Tab control allows to group multiple elements into tabs. When a specific tab is active, the only set of
482+
controls that belong to the tab becomes visible.</p>
483+
484+
<p>Example of the tab control:</p>
485+
<div class="images">
486+
<img class="border" src="<?= $CTL ?>tab_control.png">
487+
</div>
488+

src/doc/manuals/overview.php

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
<p><img src="<?= $DOCROOT ?>img/box.png" class="bundle-box" ></p>
22
<p><b>LSP (Linux Studio Plugins)</b> is a collection of open-source plugins compatible with following formats:</p>
33
<ul>
4+
<li><b>CLAP</b> - set of plugins for <a href="https://github.com/free-audio/clap">Clever Audio Plugins API</a></li>
45
<li><b>LADSPA</b> - set of plugins for <a href="https://en.wikipedia.org/wiki/LADSPA">Linux Audio Developer's Simple Plugin API</a></li>
56
<li><b>LV2</b> - set of plugins and UIs for <a href="https://lv2plug.in/">Linux Audio Developer's Simple Plugin API (LADSPA) version 2</a></li>
67
<li><b>LinuxVST</b> - set of plugins and UIs for <a href="https://www.steinberg.net/">Steinberg's VST 2.4</a> format ported on GNU/Linux Platform</li>

0 commit comments

Comments
 (0)