-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Plugin info in repository #4
Comments
Yes we should allow more attributes. Question: how to moderate if a plugin has mature content in its screenshots? |
The same way we make sure the plugin name/description isn't a list of racial slurs, I guess. 🤷♂️ Linking a repo from the official CLAP registry is a reputational risk, so it would only include developers we trust. Third-party registries can (and should!) proliferate, and the official registry might only exist as a convenience so people aren't faced with an empty list when first opening the official bridge plugin. However, we should make sure that any content is displayed alongside its source (registry/repo name and domain) so that it doesn't look like a CLAP endorsement. |
My original concern was that the repo only contained IDs, and I think they should be objects based on a JSON translation of the {
"name": "Official u-he repository",
"logoUrl": "https://u-he.com/wclap/logo.png",
"modules": [
{
"name": "u-he Zebra2",
"url": "https://u-he.com/wclap/Zebra2-X.Y.Z.wclap.tar.gz",
"plugins":[
{
"id": "com.u-he.Zebra2",
"name": "Zebra2",
"version": "X.Y.Z"
"vendor": ...,
}
]
}
]
} (Note the top-level list is named Any extra fields for screenshots could also go in that {
"id": "com.u-he.Zebra2",
... // and other clap_plugin_descriptor fields
"links": [
{
"rel": "icon",
"href": "https://u-he.com/wclap/Zebra2-X.Y.Z/icon.png",
"type": "image/png", // optional
"title": "TITLE" // optional
},
{"rel": "attachment", "href": "https://u-he.com/wclap/Zebra2-X.Y.Z/screenshot.png"},
...
]
} The We could recommend some |
The repository currently just lists plugin IDs (e.g.
com.u-he.Zebra2
). FlatHub has short descriptions and screenshots - ReaPack has something similar as well.Should there be some equivalent in the WCLAP repos? The helper tool can populate basic info from
clap_plugin_descriptor
(e.g.name
,description
).The text was updated successfully, but these errors were encountered: