From abe2f85a05a8a2fb533ca0610d4eac45295b8dc8 Mon Sep 17 00:00:00 2001 From: Guillaume Piolat Date: Wed, 11 May 2022 23:08:22 +0200 Subject: [PATCH] Fix #651, document hasGUI more. --- examples/clipit/plugin.json | 6 ++++++ examples/distort/plugin.json | 6 ++++++ plugin-schema.json | 2 +- 3 files changed, 13 insertions(+), 1 deletion(-) diff --git a/examples/clipit/plugin.json b/examples/clipit/plugin.json index 84a64187..7644f9df 100644 --- a/examples/clipit/plugin.json +++ b/examples/clipit/plugin.json @@ -8,6 +8,12 @@ "pluginUniqueID": "ClPi", "publicVersion": "1.0.0", "CFBundleIdentifierPrefix": "com.wittyaudio", + + "comment-READ-THIS": [ + "When creating a plug-in, the hasGUI key can be set to false in order to have", + "an UI-less plugin" + ], "hasGUI": true, + "category": "effectDistortion" } \ No newline at end of file diff --git a/examples/distort/plugin.json b/examples/distort/plugin.json index 5ec1287f..6d27c3d4 100644 --- a/examples/distort/plugin.json +++ b/examples/distort/plugin.json @@ -10,6 +10,12 @@ "pluginUniqueID": "WiDi", "publicVersion": "1.0.0", "CFBundleIdentifierPrefix": "com.wittyaudio", + + "comment-READ-THIS": [ + "When creating a plug-in, the hasGUI key can be set to false in order to have", + "an UI-less plugin" + ], "hasGUI": true, + "category": "effectDistortion" } \ No newline at end of file diff --git a/plugin-schema.json b/plugin-schema.json index 699a14b2..06ccd4e2 100644 --- a/plugin-schema.json +++ b/plugin-schema.json @@ -34,7 +34,7 @@ "type": "string" }, "hasGUI": { - "description": "true if the plug-in has a GUI. Can be used to disabled the UI of a plug-in.", + "description": "true if the plug-in has a GUI. Can be used to disabled the UI of a plug-in. This is especially practical when creating a new plug-in.", "id": "/properties/hasGUI", "type": "boolean" },