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" },