Skip to content

Commit

Permalink
Fix #651, document hasGUI more.
Browse files Browse the repository at this point in the history
  • Loading branch information
Guillaume Piolat committed May 11, 2022
1 parent 315582f commit abe2f85
Show file tree
Hide file tree
Showing 3 changed files with 13 additions and 1 deletion.
6 changes: 6 additions & 0 deletions examples/clipit/plugin.json
Expand Up @@ -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"
}
6 changes: 6 additions & 0 deletions examples/distort/plugin.json
Expand Up @@ -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"
}
2 changes: 1 addition & 1 deletion plugin-schema.json
Expand Up @@ -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"
},
Expand Down

0 comments on commit abe2f85

Please sign in to comment.