From 0ba4319c9f8e55289deca75072cb3d286f14f246 Mon Sep 17 00:00:00 2001 From: Alexandre Prokoudine Date: Fri, 17 Jun 2022 01:02:18 +0300 Subject: [PATCH] First shot at the documentation, more to follow --- include/plugin-manager.html | 125 +++++++++++++++++++++++++++++++++--- 1 file changed, 117 insertions(+), 8 deletions(-) diff --git a/include/plugin-manager.html b/include/plugin-manager.html index 03e478c..2b489c6 100644 --- a/include/plugin-manager.html +++ b/include/plugin-manager.html @@ -1,21 +1,130 @@

- The Plugin Manager ... FIXME -

- -

- FIXME + The Plugin Manager provides a convenient interface to various + operations on plugins and is the primary troubleshooting tools when something + goes wrong with plugins. It works on both physical plugin files and + the plugins index.

-The Plugin Manager window +The Plugin Manager window
The Plugin Manager window
+

What is a plugins index?

+ +

+ For each type of a plugin (e.g. VST3 or LV2) there are pre-configured paths + where these plugins are located. Every time Ardour runs, it re-scans plugins + in these paths and recreates an index — a kind of inventory of available + plugins. Whenever you open the Plugin Selector + dialog, Ardour reads the list of available plugins from that index and + displays them for you to pick. +

+ +

+ Re-scanning paths is important because it's common for plugins to change on + the disk (e.g. when you installed a newer version) or get removed (when you + don't need a plugin anymore). Sometimes plugins get corrupted due to + a hardware failure. Indexing them often helps identifying issues early on, + and the Plugin Manager helps reviewing the general state of affairs with + plugins. +

+

Plugins info

+The main part of the Plugin Manager window is the table where all plugins known +to Ardour are listed. You can use it to both view information about a plugin and +control some of its aspects: + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
StatusArdour will displays the status of every plug-in file. See below + for more information
IgnDo not load this plugin file at all
FavSet or unset the Favorite status for a plugin
HideLoad this plugin file, but do not show it in the Plugin Selector
TypeThe name of the API this plugin has been built with: + VST2, VST3, AU, LADSPA, LV2
File/IDDisplays the file name for LADSPA, VST2, and VST3, as well as + the ID for LV2 and AU
NameUser-visible name of the plugin
CreatorDeveloper of team of developers who created the plugin
TagsMetadata that classifies the plugin by type, + e.g. 'instrument|synth' or 'analyser'
+ +

+ The Status field specifically has the following options: +

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
OKThe plugin file has loaded without any issues and the information + in the cache about it is up to date
NewThe plugin file has just been discovered and successfully loaded + for the first time
UpdatedThe plugin file changed on the disk, the plugin cache has been updated + accordingly, the plugin file loaded successfully
ConcealedVST2 if corresponding VST3 exists. same for LV1 when LV2 exists
ErrorThere was a problem loading the plugin file
StaleA VSTx/AU plugin changed on the disk but hasn't been re-scanned + by Ardour yet
IncompatibleScan the plugin failed. Typical reasons are 32/64-bit mismatch, + attempt to load a .dll on Linux or a .dylib on Windows
+

- FIXME TABLE CULUMNS: Status, Ign, Fav, Hide, Type, File/ID, Name, Creator, Tags + The Plugin Count section in the sidebar provides + basic information on available plugins: how many plugins of every supported + type are available through Ardour in total, how many failed to load, and + how many are missing.

Searching

@@ -24,7 +133,7 @@ FIXME

-

Scan Actions

+

Scan actions

FIXME -- 2.37.2